ETH Price: $3,175.63 (+1.31%)
Gas: 9 Gwei

Token

Dolphin Adam Bombs (Unofficial) (DABU)
 

Overview

Max Total Supply

187 DABU

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DABU
0xb0022d1def3de08cce27e6c43993a617baf2e636
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DolphinAdamBombsUnofficial

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Dependency file: @openzeppelin/contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

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


// Dependency file: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// pragma solidity ^0.8.0;

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

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


// Dependency file: @openzeppelin/contracts/utils/Address.sol


// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/utils/Strings.sol


// pragma solidity ^0.8.0;

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/introspection/ERC165.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

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


// Dependency file: @openzeppelin/contracts/token/ERC721/ERC721.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// Dependency file: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

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


// Dependency file: contracts/imports/ERC721A.sol

// Creator: Chiru Labs

// pragma solidity ^0.8.4;

// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/utils/Address.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/utils/Context.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/utils/Strings.sol';
// import '/Users/mcasanova/Projects/CasanovaDevStudio/Dev/hashku-api/smartcontracts/dabu/node_modules/@openzeppelin/contracts/utils/introspection/ERC165.sol';

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 ind) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


// Dependency file: contracts/imports/Hashku.sol


/*
*
* Hashku Contract
* 
* Contract by Matt Casanova [Twitter: @DevGuyThings]
* 
* To be used as base contract for ERC721 when minting on Hashku
*
*/

// pragma solidity 0.8.11;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
// import "contracts/imports/ERC721A.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract Hashku is Context, Ownable, ERC721A {
    using Address for address;
    using Strings for uint256;
    using ECDSA for bytes32;

    string public baseTokenURI;
    string public key = "SHOP";
    string public group = "init";
    uint256 public maxMintPerAddress;
    uint256 public maxTokens;
    uint256 public price;
    bool public isPublic;
    bool public isClosed;
    mapping(address => uint256) public tokensMinted;
    address public withdrawalAddress;
    address public verifySigner;

    event ContractUpdated(string _type);

    modifier onlyWithdrawer() {
        require(withdrawalAddress != address(0), "no_withdrawals");
        require(withdrawalAddress == _msgSender(), "not_allowed");
        _;
    }

    constructor(
        string memory _name, 
        string memory _symbol, 
        string memory _baseTokenURI,
        string memory _key,
        uint256 _maxTokens, 
        uint256 _maxMintPerAddress,
        uint256 _price,
        address _withdrawalAddress
    ) ERC721A (_name, _symbol) {
        baseTokenURI = _baseTokenURI;
        key = _key;
        maxTokens = _maxTokens;
        maxMintPerAddress = _maxMintPerAddress;
        price = _price;
        withdrawalAddress = _withdrawalAddress;
        verifySigner = _msgSender();
    }

    // return the token URI for a specific token
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "no_token");

        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, _tokenId.toString())) : "";
    }

    // internal mint function 
    function mint(address _to, uint256 _amount) internal {
        _safeMint(_to, _amount);
    }

    // owner sends NFTs to addresses
    function send(address[] calldata _addresses, uint256[] calldata _amounts) external onlyOwner {
        require(_addresses.length == _amounts.length, "amount_mismatch");

        uint256 total;
        for (uint256 t = 0; t < _amounts.length; t++) {
            total += _amounts[t];
        }

        require(nextToken() + total <= maxTokens, "not_enough_tokens");
        
        for (uint256 i = 0; i < _addresses.length; i++) {
            mint(_addresses[i], _amounts[i]);
        }
    }

    // buy NFTs - version without signature required for public mint
    function shop(uint256 _amount) external virtual payable {
        require(canMint(_amount), "not_enough_tokens");
        require(eligible(), "ineligible");
        require(price * _amount == msg.value, "incorrect_funds");

        tokensMinted[_msgSender()]  = tokensMinted[_msgSender()] + _amount;

        mint(_msgSender(), _amount);
    }

    // buy NFTs
    function shop(uint256 _amount, bytes memory _signature) external virtual payable {
        require(verifySignature(_signature), "invalid_signature");
        require(canMint(_amount), "not_enough_tokens");
        require(eligible(), "ineligible");
        require(price * _amount == msg.value, "incorrect_funds");
        
        tokensMinted[_msgSender()]  = tokensMinted[_msgSender()] + _amount;

        mint(_msgSender(), _amount);
    }

    // return the id for the next token that will be minted
    function nextToken() public view returns (uint256) {
        return _currentIndex;
    }

    function canMint(uint256 _amount) public view virtual returns (bool) {
        if (maxTokens > 0) {
            if (nextToken() + _amount > maxTokens) {
                return false;
            }
        }

        if (maxMintPerAddress > 0) {
            if (tokensMinted[_msgSender()] + _amount > maxMintPerAddress) {
                return false;
            }
        }

        return true;
    }

    // check if a msg sender is eligible to shop - public version without signature required
    function eligible() public view virtual returns (bool) {
        if (isClosed) {
            return false;
        }

        return isPublic;
    }

    // owner set the contract key for signature verification
    function setKey(string calldata _key) external virtual onlyOwner {
        key = _key;
        emit ContractUpdated("key");
    }

    // owner set the contract to public mode
    function setIsPublic(bool _public) external virtual onlyOwner {
        isPublic = _public;
        emit ContractUpdated("isPublic");
    }

    // owner set the contract to closed
    function setIsClosed(bool _closed) external virtual onlyOwner {
        isClosed = _closed;
        emit ContractUpdated("isClosed");
    }

    // owner set the price of minting
    function setPrice(uint256 _price) external virtual onlyOwner {
        price = _price;
        emit ContractUpdated("price");
    }

    // owner set the price of minting
    function setMaxTokens(uint256 _tokens) external virtual onlyOwner {
        maxTokens = _tokens;
        emit ContractUpdated("tokens");
    }

    // set the maximum amount an address may mint
    function setMaxMintPerAddress(uint256 _amount) external virtual onlyOwner {
        maxMintPerAddress = _amount;
        emit ContractUpdated("maxMintPerAddress");
    }

    // set the current contract group for signature verification
    function setGroup(string memory _group) external virtual onlyOwner {
        group = _group;
        emit ContractUpdated("group");
    }

    // owner set a new base token URI
    function setBaseUri(string calldata _baseTokenURI) external virtual onlyOwner {
        baseTokenURI = _baseTokenURI;
        emit ContractUpdated("baseURI");
    }

    // owner set a new address for signature verification
    function setVerifySigner(address _verifySigner) external virtual onlyOwner {
        verifySigner = _verifySigner;
        emit ContractUpdated("verifySigner");
    }

    // verify signature based on contract key, contract group, token amount, and the msg sender
    function verifySignature(
        bytes memory _signature
    ) internal view virtual returns (bool) {
        bytes32 _messageHash = keccak256(abi.encodePacked(key, group, _msgSender()));

        return _messageHash.toEthSignedMessageHash().recover(_signature) == verifySigner;
    }

    // withdrawal address convenience method for pulling balance of contract
    function seeBalance() external view virtual returns (uint256) {
        return address(this).balance;
    }

    // withdrawal address send an amount to an address
    function withdraw(address payable _to, uint256 _amount) external virtual onlyWithdrawer returns (bool) {
        require(_amount <= address(this).balance, "insufficient_funds");
        _to.transfer(_amount);
        return true;
    }

    // withdrawal address set a new withdrawal address
    function setWithdrawalAddress(address _address) external virtual onlyWithdrawer {
        withdrawalAddress = _address;
        emit ContractUpdated("withdrawalAddress");
    }
}

// Root file: contracts/DolphinAdamBombsUnofficial.sol


/*
*
* Dolphin Adam Bombs Contract
* 
* Contract by Matt Casanova [Twitter: @DevGuyThings]
* 
* Project launched on Hashku for special holders of Adam Bomb Squad tokens
*
*/

pragma solidity 0.8.11;

// import "contracts/imports/Hashku.sol";
// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

contract DolphinAdamBombsUnofficial is Hashku {
    mapping(address => bool) private clearedList;

    // Adam Bomb Squad contract is 0x7AB2352b1D2e185560494D5e577F9D3c238b78C5
    address public externalAccount = 0x7AB2352b1D2e185560494D5e577F9D3c238b78C5;

    constructor() Hashku(
        "Dolphin Adam Bombs (Unofficial)", 
        "DABU", 
        "https://storage.hashku.com/api/dolphin-adam-bombs-unofficial/main/", 
        "DABU", 
        303, 
        1, 
        50000000000000000, 
        0x93CFAaC663175ab8fC044ABe786cDBa026903076
    )  {
        isPublic = true;
    }

    // external contract used for checking balance of Adam Bomb Squad tokens for a msg sender
    function setExternalAccount(address _address) external onlyOwner {
        externalAccount = _address;
    }

    // add addresses to the cleared list - for users validated off-chain to have 30 or more Adam Bomb Squad tokens
    function addToClearedList(address[] calldata _addresses) public onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            clearedList[_addresses[i]] = true;
        }
    }
 
    // remove addresses from the cleared list
    function removeFromClearedList(address[] calldata _addresses) public onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            clearedList[_addresses[i]] = false;
        }
    }
 
    function getExternalAccountBalance() public view returns (uint256) {
        IERC721 token = IERC721(externalAccount);
        return token.balanceOf(_msgSender());
    }

    function eligible() public view override returns (bool) {
        if (isClosed) {
            return false;
        }

        if (!isPublic) {
            return false;
        }

        if (clearedList[_msgSender()]) {
            return true;
        }

        if (externalAccount != address(0)) {
            // must have ten of external account
            return getExternalAccountBalance() > 9;
        }

        return false;
    }

    function setWithdrawalAddress(address _address) external override {
        if (_msgSender() != withdrawalAddress) {
            require(_msgSender() == owner(), "not_allowed");
        }
        
        withdrawalAddress = _address;
        emit ContractUpdated("withdrawalAddress");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_type","type":"string"}],"name":"ContractUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToClearedList","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getExternalAccountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"group","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":"isClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"key","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromClearedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"send","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":"_baseTokenURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setExternalAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_group","type":"string"}],"name":"setGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_closed","type":"bool"}],"name":"setIsClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_public","type":"bool"}],"name":"setIsPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_key","type":"string"}],"name":"setKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_verifySigner","type":"address"}],"name":"setVerifySigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"shop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"shop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"ind","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifySigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c06040526004608081905263053484f560e41b60a090815262000027916009919062000259565b50604080518082019091526004808252631a5b9a5d60e21b60209092019182526200005591600a9162000259565b50601380546001600160a01b031916737ab2352b1d2e185560494d5e577f9d3c238b78c51790553480156200008957600080fd5b506040518060400160405280601f81526020017f446f6c7068696e204164616d20426f6d62732028556e6f6666696369616c2900815250604051806040016040528060048152602001634441425560e01b81525060405180608001604052806042815260200162004790604291396040805180820190915260048152634441425560e01b602082015261012f600166b1a2bc2ec500007393cfaac663175ab8fc044abe786cdba0269030768787620001413362000209565b81516200015690600290602085019062000259565b5080516200016c90600390602084019062000259565b50508651620001849150600890602089019062000259565b5084516200019a90600990602088019062000259565b50600c849055600b839055600d829055601080546001600160a01b0319166001600160a01b038316179055620001cd3390565b601180546001600160a01b0319166001600160a01b03929092169190911790555050600e805460ff19166001179055506200033c945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200026790620002ff565b90600052602060002090601f0160209004810192826200028b5760008555620002d6565b82601f10620002a657805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d6578251825591602001919060010190620002b9565b50620002e4929150620002e8565b5090565b5b80821115620002e45760008155600101620002e9565b600181811c908216806200031457607f821691505b602082108114156200033657634e487b7160e01b600052602260045260246000fd5b50919050565b614444806200034c6000396000f3fe60806040526004361061034a5760003560e01c80639499ac54116101bb578063d832d92f116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610968578063f3fef3a314610988578063f75451f8146109a8578063fdab3b3f146109c857600080fd5b8063e985e9c5146108d0578063f0a42def14610926578063f2bcd0221461093b57600080fd5b8063dc9a1535116100d1578063dc9a153514610853578063e0d11a471461086d578063e83157421461088d578063e8c61831146108a357600080fd5b8063d832d92f14610818578063d87015541461082d578063da69c0831461084057600080fd5b8063a645ff5f11610164578063c2b6b58c1161013e578063c2b6b58c146107a4578063c87b56dd146107c3578063c97b9730146107e3578063d547cfb71461080357600080fd5b8063a645ff5f14610744578063af42d10614610764578063b88d4fde1461078457600080fd5b8063a035b1fe11610195578063a035b1fe146106ee578063a0bcfc7f14610704578063a22cb4651461072457600080fd5b80639499ac541461042d57806395d89b41146106b95780639aea8752146106ce57600080fd5b806342842e0e1161028a5780635dd871a31161023357806370a082311161020d57806370a0823114610639578063715018a6146106595780638da5cb5b1461066e57806391b7f5ed1461069957600080fd5b80635dd871a3146105cc5780636352211e146105ec5780636d08557a1461060c57600080fd5b80634f6ccce7116102645780634f6ccce7146105695780635461048114610589578063572849c4146105b657600080fd5b806342842e0e14610516578063429a1bb01461053657806349668b4a1461054957600080fd5b80631e14d44b116102f757806329e7ef2d116102d157806329e7ef2d146104ac5780632f745c59146104c1578063301ace03146104e15780633943380c1461050157600080fd5b80631e14d44b1461044c57806321b8092e1461046c57806323b872dd1461048c57600080fd5b8063095ea7b311610328578063095ea7b3146103eb57806311e776fe1461040d57806318160ddd1461042d57600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004613aef565b6109e8565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610b19565b60405161037b9190613b89565b3480156103b257600080fd5b506103c66103c1366004613b9c565b610bab565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161037b565b3480156103f757600080fd5b5061040b610406366004613bd7565b610c17565b005b34801561041957600080fd5b5061040b610428366004613b9c565b610cfe565b34801561043957600080fd5b506001545b60405190815260200161037b565b34801561045857600080fd5b5061040b610467366004613b9c565b610df4565b34801561047857600080fd5b5061040b610487366004613c03565b610eda565b34801561049857600080fd5b5061040b6104a7366004613c20565b611032565b3480156104b857600080fd5b5061039961103d565b3480156104cd57600080fd5b5061043e6104dc366004613bd7565b6110cb565b3480156104ed57600080fd5b5061040b6104fc366004613ca6565b6111fc565b34801561050d57600080fd5b5061039961131a565b34801561052257600080fd5b5061040b610531366004613c20565b611327565b34801561054257600080fd5b504761043e565b34801561055557600080fd5b5061040b610564366004613cfd565b611342565b34801561057557600080fd5b5061043e610584366004613b9c565b611455565b34801561059557600080fd5b5061043e6105a4366004613c03565b600f6020526000908152604090205481565b3480156105c257600080fd5b5061043e600b5481565b3480156105d857600080fd5b5061036f6105e7366004613b9c565b61149c565b3480156105f857600080fd5b506103c6610607366004613b9c565b611508565b34801561061857600080fd5b506013546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561064557600080fd5b5061043e610654366004613c03565b61151a565b34801561066557600080fd5b5061040b6115a4565b34801561067a57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103c6565b3480156106a557600080fd5b5061040b6106b4366004613b9c565b611631565b3480156106c557600080fd5b50610399611717565b3480156106da57600080fd5b5061040b6106e9366004613ca6565b611726565b3480156106fa57600080fd5b5061043e600d5481565b34801561071057600080fd5b5061040b61071f366004613d18565b611844565b34801561073057600080fd5b5061040b61073f366004613d8a565b61193d565b34801561075057600080fd5b5061040b61075f366004613dbf565b611a24565b34801561077057600080fd5b5061040b61077f366004613d18565b611c3f565b34801561079057600080fd5b5061040b61079f366004613f0e565b611d2c565b3480156107b057600080fd5b50600e5461036f90610100900460ff1681565b3480156107cf57600080fd5b506103996107de366004613b9c565b611d7f565b3480156107ef57600080fd5b5061040b6107fe366004613f7a565b611e4e565b34801561080f57600080fd5b50610399611f42565b34801561082457600080fd5b5061036f611f4f565b61040b61083b366004613fc3565b611fca565b61040b61084e366004613b9c565b6121c8565b34801561085f57600080fd5b50600e5461036f9060ff1681565b34801561087957600080fd5b5061040b610888366004613c03565b612356565b34801561089957600080fd5b5061043e600c5481565b3480156108af57600080fd5b506011546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108dc57600080fd5b5061036f6108eb36600461400a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093257600080fd5b5061043e612479565b34801561094757600080fd5b506010546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097457600080fd5b5061040b610983366004613c03565b61252f565b34801561099457600080fd5b5061036f6109a3366004613bd7565b61265c565b3480156109b457600080fd5b5061040b6109c3366004613c03565b612816565b3480156109d457600080fd5b5061040b6109e3366004613cfd565b6128de565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a7b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ac757507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b1357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610b2890614043565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490614043565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b6000610bb8826001541190565b610bee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c2282611508565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610cb75750610cb581336108eb565b155b15610cee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cf98383836129ed565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526006908201527f746f6b656e730000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600b8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526011908201527f6d61784d696e7450657241646472657373000000000000000000000000000000604082015260600190565b60105473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f905760005473ffffffffffffffffffffffffffffffffffffffff163314610f90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f745f616c6c6f7765640000000000000000000000000000000000000000006044820152606401610d7b565b6010805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526011908201527f7769746864726177616c41646472657373000000000000000000000000000000604082015260600190565b610cf9838383612a6e565b600a805461104a90614043565b80601f016020809104026020016040519081016040528092919081815260200182805461107690614043565b80156110c35780601f10611098576101008083540402835291602001916110c3565b820191906000526020600020905b8154815290600101906020018083116110a657829003601f168201915b505050505081565b60006110d68361151a565b821061110e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061111960015490565b905060008060005b838110156111ea5760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561119257805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e157868414156111da57509350610b1392505050565b6001909301925b50600101611121565b506111f3614097565b50505092915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b60005b81811015610cf9576001601260008585858181106112a0576112a06140c6565b90506020020160208101906112b59190613c03565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061131281614124565b915050611280565b6009805461104a90614043565b610cf983838360405180602001604052806000815250611d2c565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600e8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526008908201527f6973436c6f736564000000000000000000000000000000000000000000000000604082015260600190565b600061146060015490565b8210611498576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5090565b600c54600090156114cc57600c54826114b460015490565b6114be919061415d565b11156114cc57506000919050565b600b541561150057600b54336000908152600f60205260409020546114f290849061415d565b111561150057506000919050565b506001919050565b600061151382612dec565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611569576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b61162f6000612ed6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600d8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526005908201527f7072696365000000000000000000000000000000000000000000000000000000604082015260600190565b606060038054610b2890614043565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b60005b81811015610cf9576000601260008585858181106117ca576117ca6140c6565b90506020020160208101906117df9190613c03565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061183c81614124565b9150506117aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b6118d16008838361399a565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b4426040516119319060208082526007908201527f6261736555524900000000000000000000000000000000000000000000000000604082015260600190565b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff821633141561198d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b828114611b0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f616d6f756e745f6d69736d6174636800000000000000000000000000000000006044820152606401610d7b565b6000805b82811015611b5257838382818110611b2c57611b2c6140c6565b9050602002013582611b3e919061415d565b915080611b4a81614124565b915050611b12565b50600c5481611b6060015490565b611b6a919061415d565b1115611bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b60005b84811015611c3757611c25868683818110611bf257611bf26140c6565b9050602002016020810190611c079190613c03565b858584818110611c1957611c196140c6565b90506020020135612f4b565b80611c2f81614124565b915050611bd5565b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b611ccc6009838361399a565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b4426040516119319060208082526003908201527f6b65790000000000000000000000000000000000000000000000000000000000604082015260600190565b611d37848484612a6e565b611d4384848484612f55565b611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d8c826001541190565b611df2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6e6f5f746f6b656e0000000000000000000000000000000000000000000000006044820152606401610d7b565b600060088054611e0190614043565b905011611e1d5760405180602001604052806000815250610b13565b6008611e28836130f0565b604051602001611e39929190614246565b60405160208183030381529060405292915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b8051611ee290600a906020840190613a38565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b442604051610de99060208082526005908201527f67726f7570000000000000000000000000000000000000000000000000000000604082015260600190565b6008805461104a90614043565b600e54600090610100900460ff1615611f685750600090565b600e5460ff16611f785750600090565b3360009081526012602052604090205460ff1615611f965750600190565b60135473ffffffffffffffffffffffffffffffffffffffff1615611fc4576009611fbe612479565b11905090565b50600090565b611fd381613222565b612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c69645f7369676e61747572650000000000000000000000000000006044820152606401610d7b565b6120428261149c565b6120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b6120b0611f4f565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f696e656c696769626c65000000000000000000000000000000000000000000006044820152606401610d7b565b3482600d54612125919061426b565b1461218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e636f72726563745f66756e647300000000000000000000000000000000006044820152606401610d7b565b336000908152600f60205260409020546121a790839061415d565b336000818152600f60205260409020919091556121c49083612f4b565b5050565b6121d18161149c565b612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b61223f611f4f565b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f696e656c696769626c65000000000000000000000000000000000000000000006044820152606401610d7b565b3481600d546122b4919061426b565b1461231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e636f72726563745f66756e647300000000000000000000000000000000006044820152606401610d7b565b336000908152600f602052604090205461233690829061415d565b336000818152600f60205260409020919091556123539082612f4b565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b6011805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de9906020808252600c908201527f7665726966795369676e65720000000000000000000000000000000000000000604082015260600190565b60135460009073ffffffffffffffffffffffffffffffffffffffff16806370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381865afa158015612505573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252991906142a8565b91505090565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b73ffffffffffffffffffffffffffffffffffffffff8116612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d7b565b61235381612ed6565b60105460009073ffffffffffffffffffffffffffffffffffffffff166126de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6e6f5f7769746864726177616c730000000000000000000000000000000000006044820152606401610d7b565b60105473ffffffffffffffffffffffffffffffffffffffff16331461275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f745f616c6c6f7765640000000000000000000000000000000000000000006044820152606401610d7b565b478211156127c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e73756666696369656e745f66756e647300000000000000000000000000006044820152606401610d7b565b60405173ffffffffffffffffffffffffffffffffffffffff84169083156108fc029084906000818181858888f1935050505015801561280c573d6000803e3d6000fd5b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461295f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600e80548215157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526008908201527f69735075626c6963000000000000000000000000000000000000000000000000604082015260600190565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a7982612dec565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612ad7575033612abf84610bab565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ae957508151612ae990336108eb565b905080612b22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612bd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612be860008484600001516129ed565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612d8857612d05816001541190565b15612d88578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152612e0b826001541190565b612e41576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b815b60008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612eae579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612e43565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6121c4828261330d565b600073ffffffffffffffffffffffffffffffffffffffff84163b156130e4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612fcc9033908990889088906004016142c1565b6020604051808303816000875af1925050508015613025575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526130229181019061430a565b60015b613099573d808015613053576040519150601f19603f3d011682016040523d82523d6000602084013e613058565b606091505b508051613091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506130e8565b5060015b949350505050565b60608161313057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561315a578061314481614124565b91506131539050600a83614356565b9150613134565b60008167ffffffffffffffff81111561317557613175613e2b565b6040519080825280601f01601f19166020018201604052801561319f576020820181803683370190505b5090505b84156130e8576131b460018361436a565b91506131c1600a86614381565b6131cc90603061415d565b60f81b8183815181106131e1576131e16140c6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061321b600a86614356565b94506131a3565b6000806009600a3360405160200161323c93929190614395565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012060115490915073ffffffffffffffffffffffffffffffffffffffff166132ef846132e9846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90613327565b73ffffffffffffffffffffffffffffffffffffffff16149392505050565b6121c482826040518060200160405280600081525061334b565b60008060006133368585613358565b91509150613343816133c8565b509392505050565b610cf98383836001613621565b60008082516041141561338f5760208301516040840151606085015160001a6133838782858561383a565b945094505050506133c1565b8251604014156133b957602083015160408401516133ae868383613952565b9350935050506133c1565b506000905060025b9250929050565b60008160048111156133dc576133dc6143df565b14156133e55750565b60018160048111156133f9576133f96143df565b1415613461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d7b565b6002816004811115613475576134756143df565b14156134dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d7b565b60038160048111156134f1576134f16143df565b141561357f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d7b565b6004816004811115613593576135936143df565b1415612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d7b565b60015473ffffffffffffffffffffffffffffffffffffffff8516613671576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836136a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526004909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561383157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156137ee57506137ec6000888488612f55565b155b15613825576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001918201910161378a565b50600155612de5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138715750600090506003613949565b8460ff16601b1415801561388957508460ff16601c14155b1561389a5750600090506004613949565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156138ee573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661394257600060019250925050613949565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161398c8782888561383a565b935093505050935093915050565b8280546139a690614043565b90600052602060002090601f0160209004810192826139c85760008555613a2c565b82601f106139ff578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613a2c565b82800160010185558215613a2c579182015b82811115613a2c578235825591602001919060010190613a11565b50611498929150613aac565b828054613a4490614043565b90600052602060002090601f016020900481019282613a665760008555613a2c565b82601f10613a7f57805160ff1916838001178555613a2c565b82800160010185558215613a2c579182015b82811115613a2c578251825591602001919060010190613a91565b5b808211156114985760008155600101613aad565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461235357600080fd5b600060208284031215613b0157600080fd5b8135613b0c81613ac1565b9392505050565b60005b83811015613b2e578181015183820152602001613b16565b83811115611d795750506000910152565b60008151808452613b57816020860160208601613b13565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613b0c6020830184613b3f565b600060208284031215613bae57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461235357600080fd5b60008060408385031215613bea57600080fd5b8235613bf581613bb5565b946020939093013593505050565b600060208284031215613c1557600080fd5b8135613b0c81613bb5565b600080600060608486031215613c3557600080fd5b8335613c4081613bb5565b92506020840135613c5081613bb5565b929592945050506040919091013590565b60008083601f840112613c7357600080fd5b50813567ffffffffffffffff811115613c8b57600080fd5b6020830191508360208260051b85010111156133c157600080fd5b60008060208385031215613cb957600080fd5b823567ffffffffffffffff811115613cd057600080fd5b613cdc85828601613c61565b90969095509350505050565b80358015158114613cf857600080fd5b919050565b600060208284031215613d0f57600080fd5b613b0c82613ce8565b60008060208385031215613d2b57600080fd5b823567ffffffffffffffff80821115613d4357600080fd5b818501915085601f830112613d5757600080fd5b813581811115613d6657600080fd5b866020828501011115613d7857600080fd5b60209290920196919550909350505050565b60008060408385031215613d9d57600080fd5b8235613da881613bb5565b9150613db660208401613ce8565b90509250929050565b60008060008060408587031215613dd557600080fd5b843567ffffffffffffffff80821115613ded57600080fd5b613df988838901613c61565b90965094506020870135915080821115613e1257600080fd5b50613e1f87828801613c61565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613e7557613e75613e2b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613ebb57613ebb613e2b565b81604052809350858152868686011115613ed457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613eff57600080fd5b613b0c83833560208501613e5a565b60008060008060808587031215613f2457600080fd5b8435613f2f81613bb5565b93506020850135613f3f81613bb5565b925060408501359150606085013567ffffffffffffffff811115613f6257600080fd5b613f6e87828801613eee565b91505092959194509250565b600060208284031215613f8c57600080fd5b813567ffffffffffffffff811115613fa357600080fd5b8201601f81018413613fb457600080fd5b6130e884823560208401613e5a565b60008060408385031215613fd657600080fd5b82359150602083013567ffffffffffffffff811115613ff457600080fd5b61400085828601613eee565b9150509250929050565b6000806040838503121561401d57600080fd5b823561402881613bb5565b9150602083013561403881613bb5565b809150509250929050565b600181811c9082168061405757607f821691505b60208210811415614091577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614156576141566140f5565b5060010190565b60008219821115614170576141706140f5565b500190565b8054600090600181811c908083168061418f57607f831692505b60208084108214156141ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156141de576001811461420d5761423a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061423a565b60008881526020902060005b868110156142325781548b820152908501908301614219565b505084890196505b50505050505092915050565b60006142528285614175565b8351614262818360208801613b13565b01949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a3576142a36140f5565b500290565b6000602082840312156142ba57600080fd5b5051919050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526143006080830184613b3f565b9695505050505050565b60006020828403121561431c57600080fd5b8151613b0c81613ac1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261436557614365614327565b500490565b60008282101561437c5761437c6140f5565b500390565b60008261439057614390614327565b500690565b60006143aa6143a48387614175565b85614175565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000168352505060140192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220ff651d92e1db6c6f25a263e851b71d151433845cdb9e826b9c56341844ea822864736f6c634300080b003368747470733a2f2f73746f726167652e686173686b752e636f6d2f6170692f646f6c7068696e2d6164616d2d626f6d62732d756e6f6666696369616c2f6d61696e2f

Deployed Bytecode

0x60806040526004361061034a5760003560e01c80639499ac54116101bb578063d832d92f116100f7578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610968578063f3fef3a314610988578063f75451f8146109a8578063fdab3b3f146109c857600080fd5b8063e985e9c5146108d0578063f0a42def14610926578063f2bcd0221461093b57600080fd5b8063dc9a1535116100d1578063dc9a153514610853578063e0d11a471461086d578063e83157421461088d578063e8c61831146108a357600080fd5b8063d832d92f14610818578063d87015541461082d578063da69c0831461084057600080fd5b8063a645ff5f11610164578063c2b6b58c1161013e578063c2b6b58c146107a4578063c87b56dd146107c3578063c97b9730146107e3578063d547cfb71461080357600080fd5b8063a645ff5f14610744578063af42d10614610764578063b88d4fde1461078457600080fd5b8063a035b1fe11610195578063a035b1fe146106ee578063a0bcfc7f14610704578063a22cb4651461072457600080fd5b80639499ac541461042d57806395d89b41146106b95780639aea8752146106ce57600080fd5b806342842e0e1161028a5780635dd871a31161023357806370a082311161020d57806370a0823114610639578063715018a6146106595780638da5cb5b1461066e57806391b7f5ed1461069957600080fd5b80635dd871a3146105cc5780636352211e146105ec5780636d08557a1461060c57600080fd5b80634f6ccce7116102645780634f6ccce7146105695780635461048114610589578063572849c4146105b657600080fd5b806342842e0e14610516578063429a1bb01461053657806349668b4a1461054957600080fd5b80631e14d44b116102f757806329e7ef2d116102d157806329e7ef2d146104ac5780632f745c59146104c1578063301ace03146104e15780633943380c1461050157600080fd5b80631e14d44b1461044c57806321b8092e1461046c57806323b872dd1461048c57600080fd5b8063095ea7b311610328578063095ea7b3146103eb57806311e776fe1461040d57806318160ddd1461042d57600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004613aef565b6109e8565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610b19565b60405161037b9190613b89565b3480156103b257600080fd5b506103c66103c1366004613b9c565b610bab565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161037b565b3480156103f757600080fd5b5061040b610406366004613bd7565b610c17565b005b34801561041957600080fd5b5061040b610428366004613b9c565b610cfe565b34801561043957600080fd5b506001545b60405190815260200161037b565b34801561045857600080fd5b5061040b610467366004613b9c565b610df4565b34801561047857600080fd5b5061040b610487366004613c03565b610eda565b34801561049857600080fd5b5061040b6104a7366004613c20565b611032565b3480156104b857600080fd5b5061039961103d565b3480156104cd57600080fd5b5061043e6104dc366004613bd7565b6110cb565b3480156104ed57600080fd5b5061040b6104fc366004613ca6565b6111fc565b34801561050d57600080fd5b5061039961131a565b34801561052257600080fd5b5061040b610531366004613c20565b611327565b34801561054257600080fd5b504761043e565b34801561055557600080fd5b5061040b610564366004613cfd565b611342565b34801561057557600080fd5b5061043e610584366004613b9c565b611455565b34801561059557600080fd5b5061043e6105a4366004613c03565b600f6020526000908152604090205481565b3480156105c257600080fd5b5061043e600b5481565b3480156105d857600080fd5b5061036f6105e7366004613b9c565b61149c565b3480156105f857600080fd5b506103c6610607366004613b9c565b611508565b34801561061857600080fd5b506013546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561064557600080fd5b5061043e610654366004613c03565b61151a565b34801561066557600080fd5b5061040b6115a4565b34801561067a57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103c6565b3480156106a557600080fd5b5061040b6106b4366004613b9c565b611631565b3480156106c557600080fd5b50610399611717565b3480156106da57600080fd5b5061040b6106e9366004613ca6565b611726565b3480156106fa57600080fd5b5061043e600d5481565b34801561071057600080fd5b5061040b61071f366004613d18565b611844565b34801561073057600080fd5b5061040b61073f366004613d8a565b61193d565b34801561075057600080fd5b5061040b61075f366004613dbf565b611a24565b34801561077057600080fd5b5061040b61077f366004613d18565b611c3f565b34801561079057600080fd5b5061040b61079f366004613f0e565b611d2c565b3480156107b057600080fd5b50600e5461036f90610100900460ff1681565b3480156107cf57600080fd5b506103996107de366004613b9c565b611d7f565b3480156107ef57600080fd5b5061040b6107fe366004613f7a565b611e4e565b34801561080f57600080fd5b50610399611f42565b34801561082457600080fd5b5061036f611f4f565b61040b61083b366004613fc3565b611fca565b61040b61084e366004613b9c565b6121c8565b34801561085f57600080fd5b50600e5461036f9060ff1681565b34801561087957600080fd5b5061040b610888366004613c03565b612356565b34801561089957600080fd5b5061043e600c5481565b3480156108af57600080fd5b506011546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108dc57600080fd5b5061036f6108eb36600461400a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093257600080fd5b5061043e612479565b34801561094757600080fd5b506010546103c69073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097457600080fd5b5061040b610983366004613c03565b61252f565b34801561099457600080fd5b5061036f6109a3366004613bd7565b61265c565b3480156109b457600080fd5b5061040b6109c3366004613c03565b612816565b3480156109d457600080fd5b5061040b6109e3366004613cfd565b6128de565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610a7b57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ac757507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610b1357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060028054610b2890614043565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490614043565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b6000610bb8826001541190565b610bee576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c2282611508565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff821614801590610cb75750610cb581336108eb565b155b15610cee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cf98383836129ed565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526006908201527f746f6b656e730000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600b8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526011908201527f6d61784d696e7450657241646472657373000000000000000000000000000000604082015260600190565b60105473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f905760005473ffffffffffffffffffffffffffffffffffffffff163314610f90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f745f616c6c6f7765640000000000000000000000000000000000000000006044820152606401610d7b565b6010805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526011908201527f7769746864726177616c41646472657373000000000000000000000000000000604082015260600190565b610cf9838383612a6e565b600a805461104a90614043565b80601f016020809104026020016040519081016040528092919081815260200182805461107690614043565b80156110c35780601f10611098576101008083540402835291602001916110c3565b820191906000526020600020905b8154815290600101906020018083116110a657829003601f168201915b505050505081565b60006110d68361151a565b821061110e576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061111960015490565b905060008060005b838110156111ea5760008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561119257805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e157868414156111da57509350610b1392505050565b6001909301925b50600101611121565b506111f3614097565b50505092915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b60005b81811015610cf9576001601260008585858181106112a0576112a06140c6565b90506020020160208101906112b59190613c03565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061131281614124565b915050611280565b6009805461104a90614043565b610cf983838360405180602001604052806000815250611d2c565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600e8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526008908201527f6973436c6f736564000000000000000000000000000000000000000000000000604082015260600190565b600061146060015490565b8210611498576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5090565b600c54600090156114cc57600c54826114b460015490565b6114be919061415d565b11156114cc57506000919050565b600b541561150057600b54336000908152600f60205260409020546114f290849061415d565b111561150057506000919050565b506001919050565b600061151382612dec565b5192915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611569576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff163314611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b61162f6000612ed6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600d8190556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526005908201527f7072696365000000000000000000000000000000000000000000000000000000604082015260600190565b606060038054610b2890614043565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b60005b81811015610cf9576000601260008585858181106117ca576117ca6140c6565b90506020020160208101906117df9190613c03565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061183c81614124565b9150506117aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b6118d16008838361399a565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b4426040516119319060208082526007908201527f6261736555524900000000000000000000000000000000000000000000000000604082015260600190565b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff821633141561198d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b828114611b0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f616d6f756e745f6d69736d6174636800000000000000000000000000000000006044820152606401610d7b565b6000805b82811015611b5257838382818110611b2c57611b2c6140c6565b9050602002013582611b3e919061415d565b915080611b4a81614124565b915050611b12565b50600c5481611b6060015490565b611b6a919061415d565b1115611bd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b60005b84811015611c3757611c25868683818110611bf257611bf26140c6565b9050602002016020810190611c079190613c03565b858584818110611c1957611c196140c6565b90506020020135612f4b565b80611c2f81614124565b915050611bd5565b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b611ccc6009838361399a565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b4426040516119319060208082526003908201527f6b65790000000000000000000000000000000000000000000000000000000000604082015260600190565b611d37848484612a6e565b611d4384848484612f55565b611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d8c826001541190565b611df2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f6e6f5f746f6b656e0000000000000000000000000000000000000000000000006044820152606401610d7b565b600060088054611e0190614043565b905011611e1d5760405180602001604052806000815250610b13565b6008611e28836130f0565b604051602001611e39929190614246565b60405160208183030381529060405292915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b8051611ee290600a906020840190613a38565b507f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b442604051610de99060208082526005908201527f67726f7570000000000000000000000000000000000000000000000000000000604082015260600190565b6008805461104a90614043565b600e54600090610100900460ff1615611f685750600090565b600e5460ff16611f785750600090565b3360009081526012602052604090205460ff1615611f965750600190565b60135473ffffffffffffffffffffffffffffffffffffffff1615611fc4576009611fbe612479565b11905090565b50600090565b611fd381613222565b612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f696e76616c69645f7369676e61747572650000000000000000000000000000006044820152606401610d7b565b6120428261149c565b6120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b6120b0611f4f565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f696e656c696769626c65000000000000000000000000000000000000000000006044820152606401610d7b565b3482600d54612125919061426b565b1461218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e636f72726563745f66756e647300000000000000000000000000000000006044820152606401610d7b565b336000908152600f60205260409020546121a790839061415d565b336000818152600f60205260409020919091556121c49083612f4b565b5050565b6121d18161149c565b612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f6e6f745f656e6f7567685f746f6b656e730000000000000000000000000000006044820152606401610d7b565b61223f611f4f565b6122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f696e656c696769626c65000000000000000000000000000000000000000000006044820152606401610d7b565b3481600d546122b4919061426b565b1461231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f696e636f72726563745f66756e647300000000000000000000000000000000006044820152606401610d7b565b336000908152600f602052604090205461233690829061415d565b336000818152600f60205260409020919091556123539082612f4b565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b6011805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de9906020808252600c908201527f7665726966795369676e65720000000000000000000000000000000000000000604082015260600190565b60135460009073ffffffffffffffffffffffffffffffffffffffff16806370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602401602060405180830381865afa158015612505573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252991906142a8565b91505090565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b73ffffffffffffffffffffffffffffffffffffffff8116612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d7b565b61235381612ed6565b60105460009073ffffffffffffffffffffffffffffffffffffffff166126de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6e6f5f7769746864726177616c730000000000000000000000000000000000006044820152606401610d7b565b60105473ffffffffffffffffffffffffffffffffffffffff16331461275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f745f616c6c6f7765640000000000000000000000000000000000000000006044820152606401610d7b565b478211156127c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f696e73756666696369656e745f66756e647300000000000000000000000000006044820152606401610d7b565b60405173ffffffffffffffffffffffffffffffffffffffff84169083156108fc029084906000818181858888f1935050505015801561280c573d6000803e3d6000fd5b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461295f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d7b565b600e80548215157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091161790556040517f38b9241ba197630c4329259c93d6a140b00cbe738808b738f460c5571d02b44290610de99060208082526008908201527f69735075626c6963000000000000000000000000000000000000000000000000604082015260600190565b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612a7982612dec565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612ad7575033612abf84610bab565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ae957508151612ae990336108eb565b905080612b22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612bd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612be860008484600001516129ed565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffff000000000000000000000000000000008082166fffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080547fffffffff0000000000000000000000000000000000000000000000000000000016909117740100000000000000000000000000000000000000004267ffffffffffffffff1602179055908601808352912054909116612d8857612d05816001541190565b15612d88578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921673ffffffffffffffffffffffffffffffffffffffff909316929092171790555b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152612e0b826001541190565b612e41576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b815b60008181526004602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215612eae579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01612e43565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6121c4828261330d565b600073ffffffffffffffffffffffffffffffffffffffff84163b156130e4576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612fcc9033908990889088906004016142c1565b6020604051808303816000875af1925050508015613025575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526130229181019061430a565b60015b613099573d808015613053576040519150601f19603f3d011682016040523d82523d6000602084013e613058565b606091505b508051613091576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506130e8565b5060015b949350505050565b60608161313057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561315a578061314481614124565b91506131539050600a83614356565b9150613134565b60008167ffffffffffffffff81111561317557613175613e2b565b6040519080825280601f01601f19166020018201604052801561319f576020820181803683370190505b5090505b84156130e8576131b460018361436a565b91506131c1600a86614381565b6131cc90603061415d565b60f81b8183815181106131e1576131e16140c6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061321b600a86614356565b94506131a3565b6000806009600a3360405160200161323c93929190614395565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012060115490915073ffffffffffffffffffffffffffffffffffffffff166132ef846132e9846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90613327565b73ffffffffffffffffffffffffffffffffffffffff16149392505050565b6121c482826040518060200160405280600081525061334b565b60008060006133368585613358565b91509150613343816133c8565b509392505050565b610cf98383836001613621565b60008082516041141561338f5760208301516040840151606085015160001a6133838782858561383a565b945094505050506133c1565b8251604014156133b957602083015160408401516133ae868383613952565b9350935050506133c1565b506000905060025b9250929050565b60008160048111156133dc576133dc6143df565b14156133e55750565b60018160048111156133f9576133f96143df565b1415613461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d7b565b6002816004811115613475576134756143df565b14156134dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d7b565b60038160048111156134f1576134f16143df565b141561357f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d7b565b6004816004811115613593576135936143df565b1415612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d7b565b60015473ffffffffffffffffffffffffffffffffffffffff8516613671576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836136a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260056020908152604080832080547001000000000000000000000000000000007fffffffffffffffffffffffffffffffff0000000000000000000000000000000082166fffffffffffffffffffffffffffffffff9283168c01831690811782900483168c01909216021790558483526004909152812080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004267ffffffffffffffff16021790915581905b8581101561383157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156137ee57506137ec6000888488612f55565b155b15613825576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001918201910161378a565b50600155612de5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156138715750600090506003613949565b8460ff16601b1415801561388957508460ff16601c14155b1561389a5750600090506004613949565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156138ee573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661394257600060019250925050613949565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161398c8782888561383a565b935093505050935093915050565b8280546139a690614043565b90600052602060002090601f0160209004810192826139c85760008555613a2c565b82601f106139ff578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555613a2c565b82800160010185558215613a2c579182015b82811115613a2c578235825591602001919060010190613a11565b50611498929150613aac565b828054613a4490614043565b90600052602060002090601f016020900481019282613a665760008555613a2c565b82601f10613a7f57805160ff1916838001178555613a2c565b82800160010185558215613a2c579182015b82811115613a2c578251825591602001919060010190613a91565b5b808211156114985760008155600101613aad565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461235357600080fd5b600060208284031215613b0157600080fd5b8135613b0c81613ac1565b9392505050565b60005b83811015613b2e578181015183820152602001613b16565b83811115611d795750506000910152565b60008151808452613b57816020860160208601613b13565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613b0c6020830184613b3f565b600060208284031215613bae57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461235357600080fd5b60008060408385031215613bea57600080fd5b8235613bf581613bb5565b946020939093013593505050565b600060208284031215613c1557600080fd5b8135613b0c81613bb5565b600080600060608486031215613c3557600080fd5b8335613c4081613bb5565b92506020840135613c5081613bb5565b929592945050506040919091013590565b60008083601f840112613c7357600080fd5b50813567ffffffffffffffff811115613c8b57600080fd5b6020830191508360208260051b85010111156133c157600080fd5b60008060208385031215613cb957600080fd5b823567ffffffffffffffff811115613cd057600080fd5b613cdc85828601613c61565b90969095509350505050565b80358015158114613cf857600080fd5b919050565b600060208284031215613d0f57600080fd5b613b0c82613ce8565b60008060208385031215613d2b57600080fd5b823567ffffffffffffffff80821115613d4357600080fd5b818501915085601f830112613d5757600080fd5b813581811115613d6657600080fd5b866020828501011115613d7857600080fd5b60209290920196919550909350505050565b60008060408385031215613d9d57600080fd5b8235613da881613bb5565b9150613db660208401613ce8565b90509250929050565b60008060008060408587031215613dd557600080fd5b843567ffffffffffffffff80821115613ded57600080fd5b613df988838901613c61565b90965094506020870135915080821115613e1257600080fd5b50613e1f87828801613c61565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613e7557613e75613e2b565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613ebb57613ebb613e2b565b81604052809350858152868686011115613ed457600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613eff57600080fd5b613b0c83833560208501613e5a565b60008060008060808587031215613f2457600080fd5b8435613f2f81613bb5565b93506020850135613f3f81613bb5565b925060408501359150606085013567ffffffffffffffff811115613f6257600080fd5b613f6e87828801613eee565b91505092959194509250565b600060208284031215613f8c57600080fd5b813567ffffffffffffffff811115613fa357600080fd5b8201601f81018413613fb457600080fd5b6130e884823560208401613e5a565b60008060408385031215613fd657600080fd5b82359150602083013567ffffffffffffffff811115613ff457600080fd5b61400085828601613eee565b9150509250929050565b6000806040838503121561401d57600080fd5b823561402881613bb5565b9150602083013561403881613bb5565b809150509250929050565b600181811c9082168061405757607f821691505b60208210811415614091577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614156576141566140f5565b5060010190565b60008219821115614170576141706140f5565b500190565b8054600090600181811c908083168061418f57607f831692505b60208084108214156141ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b8180156141de576001811461420d5761423a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061423a565b60008881526020902060005b868110156142325781548b820152908501908301614219565b505084890196505b50505050505092915050565b60006142528285614175565b8351614262818360208801613b13565b01949350505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142a3576142a36140f5565b500290565b6000602082840312156142ba57600080fd5b5051919050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526143006080830184613b3f565b9695505050505050565b60006020828403121561431c57600080fd5b8151613b0c81613ac1565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261436557614365614327565b500490565b60008282101561437c5761437c6140f5565b500390565b60008261439057614390614327565b500690565b60006143aa6143a48387614175565b85614175565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000168352505060140192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea2646970667358221220ff651d92e1db6c6f25a263e851b71d151433845cdb9e826b9c56341844ea822864736f6c634300080b0033

Deployed Bytecode Sourcemap

72234:2362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40085:372;;;;;;;;;;-1:-1:-1;40085:372:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;40085:372:0;;;;;;;;41848:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43325:204::-;;;;;;;;;;-1:-1:-1;43325:204:0;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;43325:204:0;1633:226:1;42914:345:0;;;;;;;;;;-1:-1:-1;42914:345:0;;;;;:::i;:::-;;:::i;:::-;;69670:145;;;;;;;;;;-1:-1:-1;69670:145:0;;;;;:::i;:::-;;:::i;38348:101::-;;;;;;;;;;-1:-1:-1;38428:13:0;;38348:101;;;2489:25:1;;;2477:2;2462:18;38348:101:0;2343:177:1;69874:172:0;;;;;;;;;;-1:-1:-1;69874:172:0;;;;;:::i;:::-;;:::i;74295:298::-;;;;;;;;;;-1:-1:-1;74295:298:0;;;;;:::i;:::-;;:::i;44182:170::-;;;;;;;;;;-1:-1:-1;44182:170:0;;;;;:::i;:::-;;:::i;64983:28::-;;;;;;;;;;;;;:::i;39002:1011::-;;;;;;;;;;-1:-1:-1;39002:1011:0;;;;;:::i;:::-;;:::i;73174:200::-;;;;;;;;;;-1:-1:-1;73174:200:0;;;;;:::i;:::-;;:::i;64950:26::-;;;;;;;;;;;;;:::i;44423:185::-;;;;;;;;;;-1:-1:-1;44423:185:0;;;;;:::i;:::-;;:::i;71192:109::-;;;;;;;;;;-1:-1:-1;71272:21:0;71192:109;;69300:142;;;;;;;;;;-1:-1:-1;69300:142:0;;;;;:::i;:::-;;:::i;38526:176::-;;;;;;;;;;-1:-1:-1;38526:176:0;;;;;:::i;:::-;;:::i;65169:47::-;;;;;;;;;;-1:-1:-1;65169:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;65018:32;;;;;;;;;;;;;;;;68181:416;;;;;;;;;;-1:-1:-1;68181:416:0;;;;;:::i;:::-;;:::i;41657:124::-;;;;;;;;;;-1:-1:-1;41657:124:0;;;;;:::i;:::-;;:::i;72419:75::-;;;;;;;;;;-1:-1:-1;72419:75:0;;;;;;;;40521:206;;;;;;;;;;-1:-1:-1;40521:206:0;;;;;:::i;:::-;;:::i;54472:94::-;;;;;;;;;;;;;:::i;53821:87::-;;;;;;;;;;-1:-1:-1;53867:7:0;53894:6;;;53821:87;;69489:134;;;;;;;;;;-1:-1:-1;69489:134:0;;;;;:::i;:::-;;:::i;42017:104::-;;;;;;;;;;;;;:::i;73430:206::-;;;;;;;;;;-1:-1:-1;73430:206:0;;;;;:::i;:::-;;:::i;65088:20::-;;;;;;;;;;;;;;;;70307:167;;;;;;;;;;-1:-1:-1;70307:167:0;;;;;:::i;:::-;;:::i;43601:279::-;;;;;;;;;;-1:-1:-1;43601:279:0;;;;;:::i;:::-;;:::i;66601:507::-;;;;;;;;;;-1:-1:-1;66601:507:0;;;;;:::i;:::-;;:::i;68923:132::-;;;;;;;;;;-1:-1:-1;68923:132:0;;;;;:::i;:::-;;:::i;44679:308::-;;;;;;;;;;-1:-1:-1;44679:308:0;;;;;:::i;:::-;;:::i;65142:20::-;;;;;;;;;;-1:-1:-1;65142:20:0;;;;;;;;;;;66157:263;;;;;;;;;;-1:-1:-1;66157:263:0;;;;;:::i;:::-;;:::i;70120:140::-;;;;;;;;;;-1:-1:-1;70120:140:0;;;;;:::i;:::-;;:::i;64917:26::-;;;;;;;;;;;;;:::i;73826:461::-;;;;;;;;;;;;;:::i;67562:452::-;;;;;;:::i;:::-;;:::i;67186:351::-;;;;;;:::i;:::-;;:::i;65115:20::-;;;;;;;;;;-1:-1:-1;65115:20:0;;;;;;;;70541:169;;;;;;;;;;-1:-1:-1;70541:169:0;;;;;:::i;:::-;;:::i;65057:24::-;;;;;;;;;;;;;;;;65262:27;;;;;;;;;;-1:-1:-1;65262:27:0;;;;;;;;43951:164;;;;;;;;;;-1:-1:-1;43951:164:0;;;;;:::i;:::-;44072:25;;;;44048:4;44072:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43951:164;73645:173;;;;;;;;;;;;;:::i;65223:32::-;;;;;;;;;;-1:-1:-1;65223:32:0;;;;;;;;54721:192;;;;;;;;;;-1:-1:-1;54721:192:0;;;;;:::i;:::-;;:::i;71365:239::-;;;;;;;;;;-1:-1:-1;71365:239:0;;;;;:::i;:::-;;:::i;72940:110::-;;;;;;;;;;-1:-1:-1;72940:110:0;;;;;:::i;:::-;;:::i;69109:142::-;;;;;;;;;;-1:-1:-1;69109:142:0;;;;;:::i;:::-;;:::i;40085:372::-;40187:4;40224:40;;;40239:25;40224:40;;:105;;-1:-1:-1;40281:48:0;;;40296:33;40281:48;40224:105;:172;;;-1:-1:-1;40346:50:0;;;40361:35;40346:50;40224:172;:225;;;-1:-1:-1;19619:25:0;19604:40;;;;40413:36;40204:245;40085:372;-1:-1:-1;;40085:372:0:o;41848:100::-;41902:13;41935:5;41928:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41848:100;:::o;43325:204::-;43393:7;43418:16;43426:7;45333:13;;-1:-1:-1;45323:23:0;45242:112;43418:16;43413:64;;43443:34;;;;;;;;;;;;;;43413:64;-1:-1:-1;43497:24:0;;;;:15;:24;;;;;;;;;43325:204::o;42914:345::-;42987:13;43003:24;43019:7;43003:15;:24::i;:::-;42987:40;;43048:5;43042:11;;:2;:11;;;43038:48;;;43062:24;;;;;;;;;;;;;;43038:48;16395:10;43103:21;;;;;;;:63;;-1:-1:-1;43129:37:0;43146:5;16395:10;43951:164;:::i;43129:37::-;43128:38;43103:63;43099:111;;;43175:35;;;;;;;;;;;;;;43099:111;43223:28;43232:2;43236:7;43245:5;43223:8;:28::i;:::-;42976:283;42914:345;;:::o;69670:145::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;;;;;;;;;69747:9:::1;:19:::0;;;69782:25:::1;::::0;::::1;::::0;::::1;::::0;10450:2:1;10432:21;;;10489:1;10469:18;;;10462:29;10527:8;10522:2;10507:18;;10500:36;10568:2;10553:18;;10248:329;69782:25:0::1;;;;;;;;69670:145:::0;:::o;69874:172::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;69959:17:::1;:27:::0;;;70002:36:::1;::::0;::::1;::::0;::::1;::::0;10784:2:1;10766:21;;;10823:2;10803:18;;;10796:30;10862:19;10857:2;10842:18;;10835:47;10914:2;10899:18;;10582:341;74295:298:0;74392:17;;;;16395:10;74376:33;;;74372:113;;53867:7;53894:6;;;16395:10;74434:23;74426:47;;;;;;;11130:2:1;74426:47:0;;;11112:21:1;11169:2;11149:18;;;11142:30;11208:13;11188:18;;;11181:41;11239:18;;74426:47:0;10928:335:1;74426:47:0;74505:17;:28;;;;;;;;;;;;74549:36;;;;;;11470:2:1;11452:21;;;11509:2;11489:18;;;11482:30;11548:19;11543:2;11528:18;;11521:47;11600:2;11585:18;;11268:341;44182:170:0;44316:28;44326:4;44332:2;44336:7;44316:9;:28::i;64983:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39002:1011::-;39091:11;39128:16;39138:5;39128:9;:16::i;:::-;39119:5;:25;39115:61;;39153:23;;;;;;;;;;;;;;39115:61;39187:22;39212:13;38428;;;38348:101;39212:13;39187:38;;39236:19;39266:25;39455:9;39450:466;39470:14;39466:1;:18;39450:466;;;39510:31;39544:14;;;:11;:14;;;;;;;;;39510:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;39581:28;39577:111;;39654:14;;;-1:-1:-1;39577:111:0;39731:5;39710:26;;:17;:26;;;39706:195;;;39780:5;39765:11;:20;39761:85;;;-1:-1:-1;39821:1:0;-1:-1:-1;39814:8:0;;-1:-1:-1;;;39814:8:0;39761:85;39868:13;;;;;39706:195;-1:-1:-1;39486:3:0;;39450:466;;;-1:-1:-1;39992:13:0;;:::i;:::-;39104:909;;;39002:1011;;;;:::o;73174:200::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;73264:9:::1;73259:108;73279:21:::0;;::::1;73259:108;;;73351:4;73322:11;:26;73334:10;;73345:1;73334:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;73322:26;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;73322:26:0;:33;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;73302:3;::::1;::::0;::::1;:::i;:::-;;;;73259:108;;64950:26:::0;;;;;;;:::i;44423:185::-;44561:39;44578:4;44584:2;44588:7;44561:39;;;;;;;;;;;;:16;:39::i;69300:142::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;69373:8:::1;:18:::0;;;::::1;;;;::::0;;;::::1;;::::0;;69407:27:::1;::::0;::::1;::::0;::::1;::::0;12583:2:1;12565:21;;;12622:1;12602:18;;;12595:29;12660:10;12655:2;12640:18;;12633:38;12703:2;12688:18;;12381:331;38526:176:0;38593:7;38626:13;38428;;;38348:101;38626:13;38617:5;:22;38613:58;;38648:23;;;;;;;;;;;;;;38613:58;-1:-1:-1;38689:5:0;38526:176::o;68181:416::-;68265:9;;68244:4;;68265:13;68261:131;;68323:9;;68313:7;68299:11;38428:13;;;38348:101;68299:11;:21;;;;:::i;:::-;:33;68295:86;;;-1:-1:-1;68360:5:0;;68181:416;-1:-1:-1;68181:416:0:o;68295:86::-;68408:17;;:21;68404:162;;68489:17;;16395:10;68450:26;;;;:12;:26;;;;;;:36;;68479:7;;68450:36;:::i;:::-;:56;68446:109;;;-1:-1:-1;68534:5:0;;68181:416;-1:-1:-1;68181:416:0:o;68446:109::-;-1:-1:-1;68585:4:0;;68181:416;-1:-1:-1;68181:416:0:o;41657:124::-;41721:7;41748:20;41760:7;41748:11;:20::i;:::-;:25;;41657:124;-1:-1:-1;;41657:124:0:o;40521:206::-;40585:7;40609:19;;;40605:60;;40637:28;;;;;;;;;;;;;;40605:60;-1:-1:-1;40691:19:0;;;;;;:12;:19;;;;;:27;;;;40521:206::o;54472:94::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;54537:21:::1;54555:1;54537:9;:21::i;:::-;54472:94::o:0;69489:134::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;69561:5:::1;:14:::0;;;69591:24:::1;::::0;::::1;::::0;::::1;::::0;13052:2:1;13034:21;;;13091:1;13071:18;;;13064:29;13129:7;13124:2;13109:18;;13102:35;13169:2;13154:18;;12850:328;42017:104:0;42073:13;42106:7;42099:14;;;;;:::i;73430:206::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;73525:9:::1;73520:109;73540:21:::0;;::::1;73520:109;;;73612:5;73583:11;:26;73595:10;;73606:1;73595:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;73583:26;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;73583:26:0;:34;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;73563:3;::::1;::::0;::::1;:::i;:::-;;;;73520:109;;70307:167:::0;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;70396:28:::1;:12;70411:13:::0;;70396:28:::1;:::i;:::-;;70440:26;;;;;13385:2:1::0;13367:21;;;13424:1;13404:18;;;13397:29;13462:9;13457:2;13442:18;;13435:37;13504:2;13489:18;;13183:330;70440:26:0::1;;;;;;;;70307:167:::0;;:::o;43601:279::-;43692:24;;;16395:10;43692:24;43688:54;;;43725:17;;;;;;;;;;;;;;43688:54;16395:10;43755:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;43824:48;;586:41:1;;;43755:42:0;;16395:10;43824:48;;559:18:1;43824:48:0;;;;;;;43601:279;;:::o;66601:507::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;66713:36;;::::1;66705:64;;;::::0;::::1;::::0;;13720:2:1;66705:64:0::1;::::0;::::1;13702:21:1::0;13759:2;13739:18;;;13732:30;13798:17;13778:18;;;13771:45;13833:18;;66705:64:0::1;13518:339:1::0;66705:64:0::1;66782:13;::::0;66806:93:::1;66826:19:::0;;::::1;66806:93;;;66876:8;;66885:1;66876:11;;;;;;;:::i;:::-;;;;;;;66867:20;;;;;:::i;:::-;::::0;-1:-1:-1;66847:3:0;::::1;::::0;::::1;:::i;:::-;;;;66806:93;;;;66942:9;;66933:5;66919:11;38428:13:::0;;;38348:101;66919:11:::1;:19;;;;:::i;:::-;:32;;66911:62;;;::::0;::::1;::::0;;14064:2:1;66911:62:0::1;::::0;::::1;14046:21:1::0;14103:2;14083:18;;;14076:30;14142:19;14122:18;;;14115:47;14179:18;;66911:62:0::1;13862:341:1::0;66911:62:0::1;66999:9;66994:107;67014:21:::0;;::::1;66994:107;;;67057:32;67062:10;;67073:1;67062:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;67077:8;;67086:1;67077:11;;;;;;;:::i;:::-;;;;;;;67057:4;:32::i;:::-;67037:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66994:107;;;;66694:414;66601:507:::0;;;;:::o;68923:132::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;68999:10:::1;:3;69005:4:::0;;68999:10:::1;:::i;:::-;;69025:22;;;;;14410:2:1::0;14392:21;;;14449:1;14429:18;;;14422:29;14487:5;14482:2;14467:18;;14460:33;14525:2;14510:18;;14208:326;44679:308:0;44838:28;44848:4;44854:2;44858:7;44838:9;:28::i;:::-;44882:48;44905:4;44911:2;44915:7;44924:5;44882:22;:48::i;:::-;44877:102;;44939:40;;;;;;;;;;;;;;44877:102;44679:308;;;;:::o;66157:263::-;66231:13;66265:17;66273:8;45333:13;;-1:-1:-1;45323:23:0;45242:112;66265:17;66257:38;;;;;;;14741:2:1;66257:38:0;;;14723:21:1;14780:1;14760:18;;;14753:29;14818:10;14798:18;;;14791:38;14846:18;;66257:38:0;14539:331:1;66257:38:0;66344:1;66321:12;66315:26;;;;;:::i;:::-;;;:30;:97;;;;;;;;;;;;;;;;;66372:12;66386:19;:8;:17;:19::i;:::-;66355:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66308:104;66157:263;-1:-1:-1;;66157:263:0:o;70120:140::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;70198:14;;::::1;::::0;:5:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70228:24;;;;;16677:2:1::0;16659:21;;;16716:1;16696:18;;;16689:29;16754:7;16749:2;16734:18;;16727:35;16794:2;16779:18;;16475:328;64917:26:0;;;;;;;:::i;73826:461::-;73897:8;;73876:4;;73897:8;;;;;73893:53;;;-1:-1:-1;73929:5:0;;73826:461::o;73893:53::-;73963:8;;;;73958:54;;-1:-1:-1;73995:5:0;;73826:461::o;73958:54::-;16395:10;74028:25;;;;:11;:25;;;;;;;;74024:69;;;-1:-1:-1;74077:4:0;;73826:461::o;74024:69::-;74109:15;;:29;:15;:29;74105:150;;74242:1;74212:27;:25;:27::i;:::-;:31;74205:38;;73826:461;:::o;74105:150::-;-1:-1:-1;74274:5:0;;73826:461::o;67562:452::-;67662:27;67678:10;67662:15;:27::i;:::-;67654:57;;;;;;;17010:2:1;67654:57:0;;;16992:21:1;17049:2;17029:18;;;17022:30;17088:19;17068:18;;;17061:47;17125:18;;67654:57:0;16808:341:1;67654:57:0;67730:16;67738:7;67730;:16::i;:::-;67722:46;;;;;;;14064:2:1;67722:46:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:19;14122:18;;;14115:47;14179:18;;67722:46:0;13862:341:1;67722:46:0;67787:10;:8;:10::i;:::-;67779:33;;;;;;;17356:2:1;67779:33:0;;;17338:21:1;17395:2;17375:18;;;17368:30;17434:12;17414:18;;;17407:40;17464:18;;67779:33:0;17154:334:1;67779:33:0;67850:9;67839:7;67831:5;;:15;;;;:::i;:::-;:28;67823:56;;;;;;;17928:2:1;67823:56:0;;;17910:21:1;17967:2;17947:18;;;17940:30;18006:17;17986:18;;;17979:45;18041:18;;67823:56:0;17726:339:1;67823:56:0;16395:10;67930:26;;;;:12;:26;;;;;;:36;;67959:7;;67930:36;:::i;:::-;16395:10;67900:26;;;;:12;:26;;;;;:66;;;;67979:27;;67998:7;67979:4;:27::i;:::-;67562:452;;:::o;67186:351::-;67261:16;67269:7;67261;:16::i;:::-;67253:46;;;;;;;14064:2:1;67253:46:0;;;14046:21:1;14103:2;14083:18;;;14076:30;14142:19;14122:18;;;14115:47;14179:18;;67253:46:0;13862:341:1;67253:46:0;67318:10;:8;:10::i;:::-;67310:33;;;;;;;17356:2:1;67310:33:0;;;17338:21:1;17395:2;17375:18;;;17368:30;17434:12;17414:18;;;17407:40;17464:18;;67310:33:0;17154:334:1;67310:33:0;67381:9;67370:7;67362:5;;:15;;;;:::i;:::-;:28;67354:56;;;;;;;17928:2:1;67354:56:0;;;17910:21:1;17967:2;17947:18;;;17940:30;18006:17;17986:18;;;17979:45;18041:18;;67354:56:0;17726:339:1;67354:56:0;16395:10;67453:26;;;;:12;:26;;;;;;:36;;67482:7;;67453:36;:::i;:::-;16395:10;67423:26;;;;:12;:26;;;;;:66;;;;67502:27;;67521:7;67502:4;:27::i;:::-;67186:351;:::o;70541:169::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;70627:12:::1;:28:::0;;::::1;::::0;::::1;::::0;;;::::1;;::::0;;70671:31:::1;::::0;::::1;::::0;::::1;::::0;18272:2:1;18254:21;;;18311:2;18291:18;;;18284:30;18350:14;18345:2;18330:18;;18323:42;18397:2;18382:18;;18070:336;73645:173:0;73747:15;;73703:7;;73747:15;;;73781;16395:10;73781:29;;;;;;;;;;1809:42:1;1797:55;;;73781:29:0;;;1779:74:1;1752:18;;73781:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73774:36;;;73645:173;:::o;54721:192::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;54810:22:::1;::::0;::::1;54802:73;;;::::0;::::1;::::0;;18802:2:1;54802:73:0::1;::::0;::::1;18784:21:1::0;18841:2;18821:18;;;18814:30;18880:34;18860:18;;;18853:62;18951:8;18931:18;;;18924:36;18977:19;;54802:73:0::1;18600:402:1::0;54802:73:0::1;54886:19;54896:8;54886:9;:19::i;71365:239::-:0;65387:17;;71462:4;;65387:31;:17;65379:58;;;;;;;19209:2:1;65379:58:0;;;19191:21:1;19248:2;19228:18;;;19221:30;19287:16;19267:18;;;19260:44;19321:18;;65379:58:0;19007:338:1;65379:58:0;65456:17;;:33;:17;16395:10;65456:33;65448:57;;;;;;;11130:2:1;65448:57:0;;;11112:21:1;11169:2;11149:18;;;11142:30;11208:13;11188:18;;;11181:41;11239:18;;65448:57:0;10928:335:1;65448:57:0;71498:21:::1;71487:7;:32;;71479:63;;;::::0;::::1;::::0;;19552:2:1;71479:63:0::1;::::0;::::1;19534:21:1::0;19591:2;19571:18;;;19564:30;19630:20;19610:18;;;19603:48;19668:18;;71479:63:0::1;19350:342:1::0;71479:63:0::1;71553:21;::::0;:12:::1;::::0;::::1;::::0;:21;::::1;;;::::0;71566:7;;71553:21:::1;::::0;;;71566:7;71553:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;71592:4:0::1;::::0;71365:239;-1:-1:-1;;;71365:239:0:o;72940:110::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;73016:15:::1;:26:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;72940:110::o;69109:142::-;53867:7;53894:6;54041:23;53894:6;16395:10;54041:23;54033:68;;;;;;;10089:2:1;54033:68:0;;;10071:21:1;;;10108:18;;;10101:30;10167:34;10147:18;;;10140:62;10219:18;;54033:68:0;9887:356:1;54033:68:0;69182:8:::1;:18:::0;;;::::1;;::::0;;;::::1;;::::0;;69216:27:::1;::::0;::::1;::::0;::::1;::::0;19899:2:1;19881:21;;;19938:1;19918:18;;;19911:29;19976:10;19971:2;19956:18;;19949:38;20019:2;20004:18;;19697:331;50005:196:0;50120:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;50165:28;;50120:24;;50165:28;;;;;;;50005:196;;;:::o;47925:1962::-;48040:35;48078:20;48090:7;48078:11;:20::i;:::-;48153:18;;48040:58;;-1:-1:-1;48111:22:0;;48137:34;;16395:10;48137:34;;;:87;;;-1:-1:-1;16395:10:0;48188:20;48200:7;48188:11;:20::i;:::-;:36;;;48137:87;:154;;;-1:-1:-1;48258:18:0;;48241:50;;16395:10;43951:164;:::i;48241:50::-;48111:181;;48310:17;48305:66;;48336:35;;;;;;;;;;;;;;48305:66;48408:4;48386:26;;:13;:18;;;:26;;;48382:67;;48421:28;;;;;;;;;;;;;;48382:67;48464:16;;;48460:52;;48489:23;;;;;;;;;;;;;;48460:52;48633:49;48650:1;48654:7;48663:13;:18;;;48633:8;:49::i;:::-;48978:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;49024:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49024:29:0;;;;;;;;;;;;;49070:20;;;:11;:20;;;;;;:30;;49115:61;;;;;;49160:15;49115:61;;;;;;49450:11;;;49480:24;;;;;:29;49450:11;;49480:29;49476:295;;49548:20;49556:11;45333:13;;-1:-1:-1;45323:23:0;45242:112;49548:20;49544:212;;;49625:18;;;49593:24;;;:11;:24;;;;;;;;:50;;49708:28;;;;49666:70;;;;;;;;49593:50;;;;49666:70;;;;;;;49544:212;48953:829;49818:7;49814:2;49799:27;;49808:4;49799:27;;;;;;;;;;;;49837:42;48029:1858;;47925:1962;;;:::o;41144:451::-;-1:-1:-1;;;;;;;;;;;;;;;;;41248:16:0;41256:7;45333:13;;-1:-1:-1;45323:23:0;45242:112;41248:16;41243:61;;41273:31;;;;;;;;;;;;;;41243:61;41362:7;41342:235;41399:31;41433:17;;;:11;:17;;;;;;;;;41399:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;41473:28;41469:93;;41533:9;41144:451;-1:-1:-1;;;41144:451:0:o;41469:93::-;-1:-1:-1;41372:6:0;;41342:235;;54921:173;54977:16;54996:6;;;55013:17;;;;;;;;;;55046:40;;54996:6;;;;;;;55046:40;;54977:16;55046:40;54966:128;54921:173;:::o;66460:95::-;66524:23;66534:3;66539:7;66524:9;:23::i;50766:765::-;50921:4;50942:13;;;8668:20;8716:8;50938:586;;50978:72;;;;;:36;;;;;;:72;;16395:10;;51029:4;;51035:7;;51044:5;;50978:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50978:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50974:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51224:13:0;;51220:234;;51251:40;;;;;;;;;;;;;;51220:234;51404:6;51398:13;51389:6;51385:2;51381:15;51374:38;50974:495;51101:55;;51111:45;51101:55;;-1:-1:-1;51094:62:0;;50938:586;-1:-1:-1;51508:4:0;50938:586;50766:765;;;;;;:::o;16854:723::-;16910:13;17131:10;17127:53;;-1:-1:-1;;17158:10:0;;;;;;;;;;;;;;;;;;16854:723::o;17127:53::-;17205:5;17190:12;17246:78;17253:9;;17246:78;;17279:8;;;;:::i;:::-;;-1:-1:-1;17302:10:0;;-1:-1:-1;17310:2:0;17302:10;;:::i;:::-;;;17246:78;;;17334:19;17366:6;17356:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17356:17:0;;17334:39;;17384:154;17391:10;;17384:154;;17418:11;17428:1;17418:11;;:::i;:::-;;-1:-1:-1;17487:10:0;17495:2;17487:5;:10;:::i;:::-;17474:24;;:2;:24;:::i;:::-;17461:39;;17444:6;17451;17444:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17515:11:0;17524:2;17515:11;;:::i;:::-;;;17384:154;;70815:291;70912:4;;70979:3;70984:5;16395:10;70962:42;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;70952:53;;70962:42;70952:53;;;;71086:12;;70952:53;;-1:-1:-1;71086:12:0;;71025:57;71071:10;71025:37;70952:53;63501:58;;22065:66:1;63501:58:0;;;22053:79:1;22148:12;;;22141:28;;;63368:7:0;;22185:12:1;;63501:58:0;;;;;;;;;;;;63491:69;;;;;;63484:76;;63299:269;;;;71025:37;:45;;:57::i;:::-;:73;;;;70815:291;-1:-1:-1;;;70815:291:0:o;45362:104::-;45431:27;45441:2;45445:8;45431:27;;;;;;;;;;;;:9;:27::i;59450:231::-;59528:7;59549:17;59568:18;59590:27;59601:4;59607:9;59590:10;:27::i;:::-;59548:69;;;;59628:18;59640:5;59628:11;:18::i;:::-;-1:-1:-1;59664:9:0;59450:231;-1:-1:-1;;;59450:231:0:o;45829:163::-;45952:32;45958:2;45962:8;45972:5;45979:4;45952:5;:32::i;57340:1308::-;57421:7;57430:12;57655:9;:16;57675:2;57655:22;57651:990;;;57951:4;57936:20;;57930:27;58001:4;57986:20;;57980:27;58059:4;58044:20;;58038:27;57694:9;58030:36;58102:25;58113:4;58030:36;57930:27;57980;58102:10;:25::i;:::-;58095:32;;;;;;;;;57651:990;58149:9;:16;58169:2;58149:22;58145:496;;;58424:4;58409:20;;58403:27;58475:4;58460:20;;58454:27;58517:23;58528:4;58403:27;58454;58517:10;:23::i;:::-;58510:30;;;;;;;;58145:496;-1:-1:-1;58589:1:0;;-1:-1:-1;58593:35:0;58145:496;57340:1308;;;;;:::o;55611:643::-;55689:20;55680:5;:29;;;;;;;;:::i;:::-;;55676:571;;;55611:643;:::o;55676:571::-;55787:29;55778:5;:38;;;;;;;;:::i;:::-;;55774:473;;;55833:34;;;;;22599:2:1;55833:34:0;;;22581:21:1;22638:2;22618:18;;;22611:30;22677:26;22657:18;;;22650:54;22721:18;;55833:34:0;22397:348:1;55774:473:0;55898:35;55889:5;:44;;;;;;;;:::i;:::-;;55885:362;;;55950:41;;;;;22952:2:1;55950:41:0;;;22934:21:1;22991:2;22971:18;;;22964:30;23030:33;23010:18;;;23003:61;23081:18;;55950:41:0;22750:355:1;55885:362:0;56022:30;56013:5;:39;;;;;;;;:::i;:::-;;56009:238;;;56069:44;;;;;23312:2:1;56069:44:0;;;23294:21:1;23351:2;23331:18;;;23324:30;23390:34;23370:18;;;23363:62;23461:4;23441:18;;;23434:32;23483:19;;56069:44:0;23110:398:1;56009:238:0;56144:30;56135:5;:39;;;;;;;;:::i;:::-;;56131:116;;;56191:44;;;;;23715:2:1;56191:44:0;;;23697:21:1;23754:2;23734:18;;;23727:30;23793:34;23773:18;;;23766:62;23864:4;23844:18;;;23837:32;23886:19;;56191:44:0;23513:398:1;46251:1420:0;46413:13;;46441:16;;;46437:48;;46466:19;;;;;;;;;;;;;;46437:48;46500:13;46496:44;;46522:18;;;;;;;;;;;;;;46496:44;46893:16;;;;;;;:12;:16;;;;;;;;:45;;46953:50;46893:45;;;;;;;;;;;;;;46953:50;;;;;;;;;;;;;;47020:25;;;:11;:25;;;;;:35;;47070:66;;;;;;47120:15;47070:66;;;;;;;47020:25;;47205:330;47225:8;47221:1;:12;47205:330;;;47264:38;;47289:12;;47264:38;;;;47281:1;;47264:38;;47281:1;;47264:38;47325:4;:68;;;;;47334:59;47365:1;47369:2;47373:12;47387:5;47334:22;:59::i;:::-;47333:60;47325:68;47321:164;;;47425:40;;;;;;;;;;;;;;47321:164;47505:14;;;;;47235:3;47205:330;;;-1:-1:-1;47551:13:0;:28;47603:60;44679:308;60949:1632;61080:7;;62014:66;62001:79;;61997:163;;;-1:-1:-1;62113:1:0;;-1:-1:-1;62117:30:0;62097:51;;61997:163;62174:1;:7;;62179:2;62174:7;;:18;;;;;62185:1;:7;;62190:2;62185:7;;62174:18;62170:102;;;-1:-1:-1;62225:1:0;;-1:-1:-1;62229:30:0;62209:51;;62170:102;62386:24;;;62369:14;62386:24;;;;;;;;;24143:25:1;;;24216:4;24204:17;;24184:18;;;24177:45;;;;24238:18;;;24231:34;;;24281:18;;;24274:34;;;62386:24:0;;24115:19:1;;62386:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;62386:24:0;;;;;;-1:-1:-1;;62425:20:0;;;62421:103;;62478:1;62482:29;62462:50;;;;;;;62421:103;62544:6;-1:-1:-1;62552:20:0;;-1:-1:-1;60949:1632:0;;;;;;;;:::o;59944:391::-;60058:7;;60167:66;60159:75;;60261:3;60257:12;;;60271:2;60253:21;60302:25;60313:4;60253:21;60322:1;60159:75;60302:10;:25::i;:::-;60295:32;;;;;;59944:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:154::-;1950:42;1943:5;1939:54;1932:5;1929:65;1919:93;;2008:1;2005;1998:12;2023:315;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;2328:2;2313:18;;;;2300:32;;-1:-1:-1;;;2023:315:1:o;2525:247::-;2584:6;2637:2;2625:9;2616:7;2612:23;2608:32;2605:52;;;2653:1;2650;2643:12;2605:52;2692:9;2679:23;2711:31;2736:5;2711:31;:::i;2777:456::-;2854:6;2862;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2978:9;2965:23;2997:31;3022:5;2997:31;:::i;:::-;3047:5;-1:-1:-1;3104:2:1;3089:18;;3076:32;3117:33;3076:32;3117:33;:::i;:::-;2777:456;;3169:7;;-1:-1:-1;;;3223:2:1;3208:18;;;;3195:32;;2777:456::o;3238:367::-;3301:8;3311:6;3365:3;3358:4;3350:6;3346:17;3342:27;3332:55;;3383:1;3380;3373:12;3332:55;-1:-1:-1;3406:20:1;;3449:18;3438:30;;3435:50;;;3481:1;3478;3471:12;3435:50;3518:4;3510:6;3506:17;3494:29;;3578:3;3571:4;3561:6;3558:1;3554:14;3546:6;3542:27;3538:38;3535:47;3532:67;;;3595:1;3592;3585:12;3610:437;3696:6;3704;3757:2;3745:9;3736:7;3732:23;3728:32;3725:52;;;3773:1;3770;3763:12;3725:52;3813:9;3800:23;3846:18;3838:6;3835:30;3832:50;;;3878:1;3875;3868:12;3832:50;3917:70;3979:7;3970:6;3959:9;3955:22;3917:70;:::i;:::-;4006:8;;3891:96;;-1:-1:-1;3610:437:1;-1:-1:-1;;;;3610:437:1:o;4052:160::-;4117:20;;4173:13;;4166:21;4156:32;;4146:60;;4202:1;4199;4192:12;4146:60;4052:160;;;:::o;4217:180::-;4273:6;4326:2;4314:9;4305:7;4301:23;4297:32;4294:52;;;4342:1;4339;4332:12;4294:52;4365:26;4381:9;4365:26;:::i;4402:592::-;4473:6;4481;4534:2;4522:9;4513:7;4509:23;4505:32;4502:52;;;4550:1;4547;4540:12;4502:52;4590:9;4577:23;4619:18;4660:2;4652:6;4649:14;4646:34;;;4676:1;4673;4666:12;4646:34;4714:6;4703:9;4699:22;4689:32;;4759:7;4752:4;4748:2;4744:13;4740:27;4730:55;;4781:1;4778;4771:12;4730:55;4821:2;4808:16;4847:2;4839:6;4836:14;4833:34;;;4863:1;4860;4853:12;4833:34;4908:7;4903:2;4894:6;4890:2;4886:15;4882:24;4879:37;4876:57;;;4929:1;4926;4919:12;4876:57;4960:2;4952:11;;;;;4982:6;;-1:-1:-1;4402:592:1;;-1:-1:-1;;;;4402:592:1:o;4999:315::-;5064:6;5072;5125:2;5113:9;5104:7;5100:23;5096:32;5093:52;;;5141:1;5138;5131:12;5093:52;5180:9;5167:23;5199:31;5224:5;5199:31;:::i;:::-;5249:5;-1:-1:-1;5273:35:1;5304:2;5289:18;;5273:35;:::i;:::-;5263:45;;4999:315;;;;;:::o;5319:773::-;5441:6;5449;5457;5465;5518:2;5506:9;5497:7;5493:23;5489:32;5486:52;;;5534:1;5531;5524:12;5486:52;5574:9;5561:23;5603:18;5644:2;5636:6;5633:14;5630:34;;;5660:1;5657;5650:12;5630:34;5699:70;5761:7;5752:6;5741:9;5737:22;5699:70;:::i;:::-;5788:8;;-1:-1:-1;5673:96:1;-1:-1:-1;5876:2:1;5861:18;;5848:32;;-1:-1:-1;5892:16:1;;;5889:36;;;5921:1;5918;5911:12;5889:36;;5960:72;6024:7;6013:8;6002:9;5998:24;5960:72;:::i;:::-;5319:773;;;;-1:-1:-1;6051:8:1;-1:-1:-1;;;;5319:773:1:o;6097:184::-;6149:77;6146:1;6139:88;6246:4;6243:1;6236:15;6270:4;6267:1;6260:15;6286:690;6350:5;6380:18;6421:2;6413:6;6410:14;6407:40;;;6427:18;;:::i;:::-;6561:2;6555:9;6627:2;6615:15;;6466:66;6611:24;;;6637:2;6607:33;6603:42;6591:55;;;6661:18;;;6681:22;;;6658:46;6655:72;;;6707:18;;:::i;:::-;6747:10;6743:2;6736:22;6776:6;6767:15;;6806:6;6798;6791:22;6846:3;6837:6;6832:3;6828:16;6825:25;6822:45;;;6863:1;6860;6853:12;6822:45;6913:6;6908:3;6901:4;6893:6;6889:17;6876:44;6968:1;6961:4;6952:6;6944;6940:19;6936:30;6929:41;;;;6286:690;;;;;:::o;6981:220::-;7023:5;7076:3;7069:4;7061:6;7057:17;7053:27;7043:55;;7094:1;7091;7084:12;7043:55;7116:79;7191:3;7182:6;7169:20;7162:4;7154:6;7150:17;7116:79;:::i;7206:665::-;7301:6;7309;7317;7325;7378:3;7366:9;7357:7;7353:23;7349:33;7346:53;;;7395:1;7392;7385:12;7346:53;7434:9;7421:23;7453:31;7478:5;7453:31;:::i;:::-;7503:5;-1:-1:-1;7560:2:1;7545:18;;7532:32;7573:33;7532:32;7573:33;:::i;:::-;7625:7;-1:-1:-1;7679:2:1;7664:18;;7651:32;;-1:-1:-1;7734:2:1;7719:18;;7706:32;7761:18;7750:30;;7747:50;;;7793:1;7790;7783:12;7747:50;7816:49;7857:7;7848:6;7837:9;7833:22;7816:49;:::i;:::-;7806:59;;;7206:665;;;;;;;:::o;7876:450::-;7945:6;7998:2;7986:9;7977:7;7973:23;7969:32;7966:52;;;8014:1;8011;8004:12;7966:52;8054:9;8041:23;8087:18;8079:6;8076:30;8073:50;;;8119:1;8116;8109:12;8073:50;8142:22;;8195:4;8187:13;;8183:27;-1:-1:-1;8173:55:1;;8224:1;8221;8214:12;8173:55;8247:73;8312:7;8307:2;8294:16;8289:2;8285;8281:11;8247:73;:::i;8331:388::-;8408:6;8416;8469:2;8457:9;8448:7;8444:23;8440:32;8437:52;;;8485:1;8482;8475:12;8437:52;8521:9;8508:23;8498:33;;8582:2;8571:9;8567:18;8554:32;8609:18;8601:6;8598:30;8595:50;;;8641:1;8638;8631:12;8595:50;8664:49;8705:7;8696:6;8685:9;8681:22;8664:49;:::i;:::-;8654:59;;;8331:388;;;;;:::o;8724:::-;8792:6;8800;8853:2;8841:9;8832:7;8828:23;8824:32;8821:52;;;8869:1;8866;8859:12;8821:52;8908:9;8895:23;8927:31;8952:5;8927:31;:::i;:::-;8977:5;-1:-1:-1;9034:2:1;9019:18;;9006:32;9047:33;9006:32;9047:33;:::i;:::-;9099:7;9089:17;;;8724:388;;;;;:::o;9445:437::-;9524:1;9520:12;;;;9567;;;9588:61;;9642:4;9634:6;9630:17;9620:27;;9588:61;9695:2;9687:6;9684:14;9664:18;9661:38;9658:218;;;9732:77;9729:1;9722:88;9833:4;9830:1;9823:15;9861:4;9858:1;9851:15;9658:218;;9445:437;;;:::o;11614:184::-;11666:77;11663:1;11656:88;11763:4;11760:1;11753:15;11787:4;11784:1;11777:15;11803:184;11855:77;11852:1;11845:88;11952:4;11949:1;11942:15;11976:4;11973:1;11966:15;11992:184;12044:77;12041:1;12034:88;12141:4;12138:1;12131:15;12165:4;12162:1;12155:15;12181:195;12220:3;12251:66;12244:5;12241:77;12238:103;;;12321:18;;:::i;:::-;-1:-1:-1;12368:1:1;12357:13;;12181:195::o;12717:128::-;12757:3;12788:1;12784:6;12781:1;12778:13;12775:39;;;12794:18;;:::i;:::-;-1:-1:-1;12830:9:1;;12717:128::o;15001:1088::-;15086:12;;15051:3;;15141:1;15161:18;;;;15214;;;;15241:61;;15295:4;15287:6;15283:17;15273:27;;15241:61;15321:2;15369;15361:6;15358:14;15338:18;15335:38;15332:218;;;15406:77;15403:1;15396:88;15507:4;15504:1;15497:15;15535:4;15532:1;15525:15;15332:218;15566:18;15593:162;;;;15769:1;15764:319;;;;15559:524;;15593:162;15641:66;15630:9;15626:82;15621:3;15614:95;15738:6;15733:3;15729:16;15722:23;;15593:162;;15764:319;14948:1;14941:14;;;14985:4;14972:18;;15858:1;15872:165;15886:6;15883:1;15880:13;15872:165;;;15964:14;;15951:11;;;15944:35;16007:16;;;;15901:10;;15872:165;;;15876:3;;16066:6;16061:3;16057:16;16050:23;;15559:524;;;;;;;15001:1088;;;;:::o;16094:376::-;16270:3;16298:38;16332:3;16324:6;16298:38;:::i;:::-;16365:6;16359:13;16381:52;16426:6;16422:2;16415:4;16407:6;16403:17;16381:52;:::i;:::-;16449:15;;16094:376;-1:-1:-1;;;;16094:376:1:o;17493:228::-;17533:7;17659:1;17591:66;17587:74;17584:1;17581:81;17576:1;17569:9;17562:17;17558:105;17555:131;;;17666:18;;:::i;:::-;-1:-1:-1;17706:9:1;;17493:228::o;18411:184::-;18481:6;18534:2;18522:9;18513:7;18509:23;18505:32;18502:52;;;18550:1;18547;18540:12;18502:52;-1:-1:-1;18573:16:1;;18411:184;-1:-1:-1;18411:184:1:o;20033:512::-;20227:4;20256:42;20337:2;20329:6;20325:15;20314:9;20307:34;20389:2;20381:6;20377:15;20372:2;20361:9;20357:18;20350:43;;20429:6;20424:2;20413:9;20409:18;20402:34;20472:3;20467:2;20456:9;20452:18;20445:31;20493:46;20534:3;20523:9;20519:19;20511:6;20493:46;:::i;:::-;20485:54;20033:512;-1:-1:-1;;;;;;20033:512:1:o;20550:249::-;20619:6;20672:2;20660:9;20651:7;20647:23;20643:32;20640:52;;;20688:1;20685;20678:12;20640:52;20720:9;20714:16;20739:30;20763:5;20739:30;:::i;20804:184::-;20856:77;20853:1;20846:88;20953:4;20950:1;20943:15;20977:4;20974:1;20967:15;20993:120;21033:1;21059;21049:35;;21064:18;;:::i;:::-;-1:-1:-1;21098:9:1;;20993:120::o;21118:125::-;21158:4;21186:1;21183;21180:8;21177:34;;;21191:18;;:::i;:::-;-1:-1:-1;21228:9:1;;21118:125::o;21248:112::-;21280:1;21306;21296:35;;21311:18;;:::i;:::-;-1:-1:-1;21345:9:1;;21248:112::o;21365:453::-;21566:3;21597:73;21631:38;21665:3;21657:6;21631:38;:::i;:::-;21623:6;21597:73;:::i;:::-;21701:2;21697:15;;;;21714:66;21693:88;21679:103;;-1:-1:-1;;21809:2:1;21798:14;;21365:453;-1:-1:-1;;21365:453:1:o;22208:184::-;22260:77;22257:1;22250:88;22357:4;22354:1;22347:15;22381:4;22378:1;22371:15

Swarm Source

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