ETH Price: $3,297.21 (-3.75%)
Gas: 8 Gwei

Token

Troll Cave (TrollCave)
 

Overview

Max Total Supply

5,648 TrollCave

Holders

2,453

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TrollCave
0xfcdd1958008c13b52217a60c58bb5871d783e19e
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:
TrollCave

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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))
                }
            }
        }
    }

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Troll.sol

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity 0.8.12;



contract TrollCave is ERC721A, Ownable {

	uint public constant MAX_TOKENS = 5555;
	
	uint public CURR_MINT_COST = 0.00420 ether;
	
	//---- Round based supplies
	string private CURR_ROUND_NAME = "Final";
	uint private CURR_ROUND_SUPPLY = MAX_TOKENS;
	uint private maxMintAmount = 10;
	uint private nftPerAddressLimit = 10;
    uint private freeMints = 1;

	bool public hasSaleStarted = false;
	
	string public baseURI;
    

	constructor() ERC721A("Troll Cave", "TrollCave") {
		setBaseURI("http://api.trollcave.wtf/troll/");
	}


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

	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	function mintNFT(uint _mintAmount) external payable {
		
		require(hasSaleStarted == true, "Sale hasn't started");
		require(_mintAmount > 0, "Need to mint at least 1 NFT");
        require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!");
        
        if(balanceOf(msg.sender) == 0)
        {
            _mintAmount = freeMints;
        }
        else
        {
            require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds");
            require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded");
    		require((_mintAmount  + balanceOf(msg.sender)) <= nftPerAddressLimit, "Max NFT per address exceeded");
        }

		CURR_ROUND_SUPPLY -= _mintAmount;
		_safeMint(msg.sender, _mintAmount);
		
	}

	
	function getInformations() external view returns (string memory, uint, uint, uint, uint,uint,uint, bool,bool)
	{
		return (CURR_ROUND_NAME,CURR_ROUND_SUPPLY,0,CURR_MINT_COST,maxMintAmount,nftPerAddressLimit, totalSupply(), hasSaleStarted,false);
	}

	
	//only owner functions

    function setFreeMints(uint amount) external onlyOwner {
        freeMints = amount;
    }
	function setBaseURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	function Giveaways(uint numTokens, address recipient) public onlyOwner {
		require((totalSupply() + numTokens) <= MAX_TOKENS, "Exceeded supply");
		_safeMint(recipient, numTokens);
	}

	function withdraw(uint amount) public payable onlyOwner {
		require(payable(msg.sender).send(amount));
	}
	
	function setSaleStarted(bool _state) public onlyOwner {
		hasSaleStarted = _state;
	}
}

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660eebe0b40e80006009556040518060400160405280600581526020017f46696e616c000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005c92919062000369565b506115b3600b55600a600c55600a600d556001600e556000600f60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600a81526020017f54726f6c6c2043617665000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f54726f6c6c43617665000000000000000000000000000000000000000000000081525081600290805190602001906200011f92919062000369565b5080600390805190602001906200013892919062000369565b5062000149620001bd60201b60201c565b60008190555050506200017162000165620001c660201b60201c565b620001ce60201b60201c565b620001b76040518060400160405280601f81526020017f687474703a2f2f6170692e74726f6c6c636176652e7774662f74726f6c6c2f008152506200029460201b60201c565b62000501565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a4620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ca6200033f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031a906200047a565b60405180910390fd5b80601090805190602001906200033b92919062000369565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037790620004cb565b90600052602060002090601f0160209004810192826200039b5760008555620003e7565b82601f10620003b657805160ff1916838001178555620003e7565b82800160010185558215620003e7579182015b82811115620003e6578251825591602001919060010190620003c9565b5b509050620003f69190620003fa565b5090565b5b8082111562000415576000816000905550600101620003fb565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200046260208362000419565b91506200046f826200042a565b602082019050919050565b60006020820190508181036000830152620004958162000453565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004e457607f821691505b60208210811415620004fb57620004fa6200049c565b5b50919050565b6138b080620005116000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063c34278441161008a578063e7db8fb011610064578063e7db8fb0146105e4578063e985e9c51461060d578063f2fde38b1461064a578063f47c84c514610673576101b7565b8063c342784414610553578063c87b56dd1461057e578063cc0b8d15146105bb576101b7565b806395d89b41116100c657806395d89b41146104ad578063a22cb465146104d8578063a854ffba14610501578063b88d4fde1461052a576101b7565b8063715018a61461044f5780638da5cb5b146104665780639264274414610491576101b7565b80632e1a7d4d1161015957806355f804b31161013357806355f804b3146103815780636352211e146103aa5780636c0360eb146103e757806370a0823114610412576101b7565b80632e1a7d4d146103095780633c5e310b1461032557806342842e0e14610358576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631c8b232d146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612960565b61069e565b6040516101f091906129a8565b60405180910390f35b34801561020557600080fd5b5061020e610780565b60405161021b9190612a5c565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612ab4565b610812565b6040516102589190612b22565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b69565b61088e565b005b34801561029657600080fd5b5061029f610999565b6040516102ac9190612bb8565b60405180910390f35b3480156102c157600080fd5b506102ca6109b0565b6040516102d791906129a8565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612bd3565b6109c3565b005b610323600480360381019061031e9190612ab4565b6109d3565b005b34801561033157600080fd5b5061033a610a90565b60405161034f99989796959493929190612c26565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612bd3565b610b71565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612def565b610b91565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612ab4565b610c27565b6040516103de9190612b22565b60405180910390f35b3480156103f357600080fd5b506103fc610c3d565b6040516104099190612a5c565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612e38565b610ccb565b6040516104469190612bb8565b60405180910390f35b34801561045b57600080fd5b50610464610d9b565b005b34801561047257600080fd5b5061047b610e23565b6040516104889190612b22565b60405180910390f35b6104ab60048036038101906104a69190612ab4565b610e4d565b005b3480156104b957600080fd5b506104c261105a565b6040516104cf9190612a5c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612e91565b6110ec565b005b34801561050d57600080fd5b5061052860048036038101906105239190612ed1565b611264565b005b34801561053657600080fd5b50610551600480360381019061054c9190612f9f565b6112fd565b005b34801561055f57600080fd5b50610568611379565b6040516105759190612bb8565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612ab4565b61137f565b6040516105b29190612a5c565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613022565b61141e565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ab4565b6114ff565b005b34801561061957600080fd5b50610634600480360381019061062f9190613062565b611585565b60405161064191906129a8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612e38565b611619565b005b34801561067f57600080fd5b50610688611711565b6040516106959190612bb8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610779575061077882611717565b5b9050919050565b60606002805461078f906130d1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906130d1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061081d82611781565b610853576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089982610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610901576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109206117cf565b73ffffffffffffffffffffffffffffffffffffffff161415801561095257506109508161094b6117cf565b611585565b155b15610989576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109948383836117d7565b505050565b60006109a3611889565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6109ce838383611892565b505050565b6109db6117cf565b73ffffffffffffffffffffffffffffffffffffffff166109f9610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061314f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610a8d57600080fd5b50565b6060600080600080600080600080600a600b546000600954600c54600d54610ab6610999565b600f60009054906101000a900460ff166000888054610ad4906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906130d1565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b610b8c838383604051806020016040528060008152506112fd565b505050565b610b996117cf565b73ffffffffffffffffffffffffffffffffffffffff16610bb7610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c049061314f565b60405180910390fd5b8060109080519060200190610c2392919061280e565b5050565b6000610c3282611d48565b600001519050919050565b60108054610c4a906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906130d1565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da36117cf565b73ffffffffffffffffffffffffffffffffffffffff16610dc1610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e9061314f565b60405180910390fd5b610e216000611fd7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60011515600f60009054906101000a900460ff16151514610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906131bb565b60405180910390fd5b60008111610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613227565b60405180910390fd5b600b54811115610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290613293565b60405180910390fd5b6000610f3633610ccb565b1415610f4657600e549050611034565b80600954610f5491906132e2565b341015610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613388565b60405180910390fd5b600c54811115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061341a565b60405180910390fd5b600d54610fe733610ccb565b82610ff2919061343a565b1115611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906134dc565b60405180910390fd5b5b80600b600082825461104691906134fc565b92505081905550611057338261209d565b50565b606060038054611069906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611095906130d1565b80156110e25780601f106110b7576101008083540402835291602001916110e2565b820191906000526020600020905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b6110f46117cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611159576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111666117cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112136117cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125891906129a8565b60405180910390a35050565b61126c6117cf565b73ffffffffffffffffffffffffffffffffffffffff1661128a610e23565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061314f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611308848484611892565b6113278373ffffffffffffffffffffffffffffffffffffffff166120bb565b801561133c575061133a848484846120de565b155b15611373576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b606061138a82611781565b6113c0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113ca61222f565b90506000815114156113eb5760405180602001604052806000815250611416565b806113f5846122c1565b60405160200161140692919061356c565b6040516020818303038152906040525b915050919050565b6114266117cf565b73ffffffffffffffffffffffffffffffffffffffff16611444610e23565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114919061314f565b60405180910390fd5b6115b3826114a6610999565b6114b0919061343a565b11156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906135dc565b60405180910390fd5b6114fb818361209d565b5050565b6115076117cf565b73ffffffffffffffffffffffffffffffffffffffff16611525610e23565b73ffffffffffffffffffffffffffffffffffffffff161461157b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115729061314f565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116216117cf565b73ffffffffffffffffffffffffffffffffffffffff1661163f610e23565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061314f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc9061366e565b60405180910390fd5b61170e81611fd7565b50565b6115b381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161178c611889565b1115801561179b575060005482105b80156117c8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061189d82611d48565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611908576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119296117cf565b73ffffffffffffffffffffffffffffffffffffffff1614806119585750611957856119526117cf565b611585565b5b8061199d57506119666117cf565b73ffffffffffffffffffffffffffffffffffffffff1661198584610812565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a4a8585856001612422565b611a56600084876117d7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cd6576000548214611cd557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d418585856001612428565b5050505050565b611d50612894565b600082905080611d5e611889565b11158015611d6d575060005481105b15611fa0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f9e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e82578092505050611fd2565b5b600115611f9d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f98578092505050611fd2565b611e83565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120b782826040518060200160405280600081525061242e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121046117cf565b8786866040518563ffffffff1660e01b815260040161212694939291906136e3565b6020604051808303816000875af192505050801561216257506040513d601f19601f8201168201806040525081019061215f9190613744565b60015b6121dc573d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b506000815114156121d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461223e906130d1565b80601f016020809104026020016040519081016040528092919081815260200182805461226a906130d1565b80156122b75780601f1061228c576101008083540402835291602001916122b7565b820191906000526020600020905b81548152906001019060200180831161229a57829003601f168201915b5050505050905090565b60606000821415612309576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061241d565b600082905060005b6000821461233b57808061232490613771565b915050600a8261233491906137e9565b9150612311565b60008167ffffffffffffffff81111561235757612356612cc4565b5b6040519080825280601f01601f1916602001820160405280156123895781602001600182028036833780820191505090505b5090505b60008514612416576001826123a291906134fc565b9150600a856123b1919061381a565b60306123bd919061343a565b60f81b8183815181106123d3576123d261384b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240f91906137e9565b945061238d565b8093505050505b919050565b50505050565b50505050565b61243b8383836001612440565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f56000868387612422565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156126bf57506126be8773ffffffffffffffffffffffffffffffffffffffff166120bb565b5b15612785575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461273460008884806001019550886120de565b61276a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156126c557826000541461278057600080fd5b6127f1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612786575b8160008190555050506128076000868387612428565b5050505050565b82805461281a906130d1565b90600052602060002090601f01602090048101928261283c5760008555612883565b82601f1061285557805160ff1916838001178555612883565b82800160010185558215612883579182015b82811115612882578251825591602001919060010190612867565b5b50905061289091906128d7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156128f05760008160009055506001016128d8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b60008115159050919050565b6129a28161298d565b82525050565b60006020820190506129bd6000830184612999565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129fd5780820151818401526020810190506129e2565b83811115612a0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a2e826129c3565b612a3881856129ce565b9350612a488185602086016129df565b612a5181612a12565b840191505092915050565b60006020820190508181036000830152612a768184612a23565b905092915050565b6000819050919050565b612a9181612a7e565b8114612a9c57600080fd5b50565b600081359050612aae81612a88565b92915050565b600060208284031215612aca57612ac96128fe565b5b6000612ad884828501612a9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0c82612ae1565b9050919050565b612b1c81612b01565b82525050565b6000602082019050612b376000830184612b13565b92915050565b612b4681612b01565b8114612b5157600080fd5b50565b600081359050612b6381612b3d565b92915050565b60008060408385031215612b8057612b7f6128fe565b5b6000612b8e85828601612b54565b9250506020612b9f85828601612a9f565b9150509250929050565b612bb281612a7e565b82525050565b6000602082019050612bcd6000830184612ba9565b92915050565b600080600060608486031215612bec57612beb6128fe565b5b6000612bfa86828701612b54565b9350506020612c0b86828701612b54565b9250506040612c1c86828701612a9f565b9150509250925092565b6000610120820190508181036000830152612c41818c612a23565b9050612c50602083018b612ba9565b612c5d604083018a612ba9565b612c6a6060830189612ba9565b612c776080830188612ba9565b612c8460a0830187612ba9565b612c9160c0830186612ba9565b612c9e60e0830185612999565b612cac610100830184612999565b9a9950505050505050505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfc82612a12565b810181811067ffffffffffffffff82111715612d1b57612d1a612cc4565b5b80604052505050565b6000612d2e6128f4565b9050612d3a8282612cf3565b919050565b600067ffffffffffffffff821115612d5a57612d59612cc4565b5b612d6382612a12565b9050602081019050919050565b82818337600083830152505050565b6000612d92612d8d84612d3f565b612d24565b905082815260208101848484011115612dae57612dad612cbf565b5b612db9848285612d70565b509392505050565b600082601f830112612dd657612dd5612cba565b5b8135612de6848260208601612d7f565b91505092915050565b600060208284031215612e0557612e046128fe565b5b600082013567ffffffffffffffff811115612e2357612e22612903565b5b612e2f84828501612dc1565b91505092915050565b600060208284031215612e4e57612e4d6128fe565b5b6000612e5c84828501612b54565b91505092915050565b612e6e8161298d565b8114612e7957600080fd5b50565b600081359050612e8b81612e65565b92915050565b60008060408385031215612ea857612ea76128fe565b5b6000612eb685828601612b54565b9250506020612ec785828601612e7c565b9150509250929050565b600060208284031215612ee757612ee66128fe565b5b6000612ef584828501612e7c565b91505092915050565b600067ffffffffffffffff821115612f1957612f18612cc4565b5b612f2282612a12565b9050602081019050919050565b6000612f42612f3d84612efe565b612d24565b905082815260208101848484011115612f5e57612f5d612cbf565b5b612f69848285612d70565b509392505050565b600082601f830112612f8657612f85612cba565b5b8135612f96848260208601612f2f565b91505092915050565b60008060008060808587031215612fb957612fb86128fe565b5b6000612fc787828801612b54565b9450506020612fd887828801612b54565b9350506040612fe987828801612a9f565b925050606085013567ffffffffffffffff81111561300a57613009612903565b5b61301687828801612f71565b91505092959194509250565b60008060408385031215613039576130386128fe565b5b600061304785828601612a9f565b925050602061305885828601612b54565b9150509250929050565b60008060408385031215613079576130786128fe565b5b600061308785828601612b54565b925050602061309885828601612b54565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e957607f821691505b602082108114156130fd576130fc6130a2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131396020836129ce565b915061314482613103565b602082019050919050565b600060208201905081810360008301526131688161312c565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b60006131a56013836129ce565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613211601b836129ce565b915061321c826131db565b602082019050919050565b6000602082019050818103600083015261324081613204565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b600061327d6014836129ce565b915061328882613247565b602082019050919050565b600060208201905081810360008301526132ac81613270565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132ed82612a7e565b91506132f883612a7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613331576133306132b3565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006133726012836129ce565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b60006134046028836129ce565b915061340f826133a8565b604082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b600061344582612a7e565b915061345083612a7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613485576134846132b3565b5b828201905092915050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006134c6601c836129ce565b91506134d182613490565b602082019050919050565b600060208201905081810360008301526134f5816134b9565b9050919050565b600061350782612a7e565b915061351283612a7e565b925082821015613525576135246132b3565b5b828203905092915050565b600081905092915050565b6000613546826129c3565b6135508185613530565b93506135608185602086016129df565b80840191505092915050565b6000613578828561353b565b9150613584828461353b565b91508190509392505050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b60006135c6600f836129ce565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136586026836129ce565b9150613663826135fc565b604082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136b58261368e565b6136bf8185613699565b93506136cf8185602086016129df565b6136d881612a12565b840191505092915050565b60006080820190506136f86000830187612b13565b6137056020830186612b13565b6137126040830185612ba9565b818103606083015261372481846136aa565b905095945050505050565b60008151905061373e81612934565b92915050565b60006020828403121561375a576137596128fe565b5b60006137688482850161372f565b91505092915050565b600061377c82612a7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137af576137ae6132b3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137f482612a7e565b91506137ff83612a7e565b92508261380f5761380e6137ba565b5b828204905092915050565b600061382582612a7e565b915061383083612a7e565b9250826138405761383f6137ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122037cdd58177be2be146415c5bf29724c76193b12de45873e66989e60495135b2964736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063c34278441161008a578063e7db8fb011610064578063e7db8fb0146105e4578063e985e9c51461060d578063f2fde38b1461064a578063f47c84c514610673576101b7565b8063c342784414610553578063c87b56dd1461057e578063cc0b8d15146105bb576101b7565b806395d89b41116100c657806395d89b41146104ad578063a22cb465146104d8578063a854ffba14610501578063b88d4fde1461052a576101b7565b8063715018a61461044f5780638da5cb5b146104665780639264274414610491576101b7565b80632e1a7d4d1161015957806355f804b31161013357806355f804b3146103815780636352211e146103aa5780636c0360eb146103e757806370a0823114610412576101b7565b80632e1a7d4d146103095780633c5e310b1461032557806342842e0e14610358576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a5780631c8b232d146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612960565b61069e565b6040516101f091906129a8565b60405180910390f35b34801561020557600080fd5b5061020e610780565b60405161021b9190612a5c565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612ab4565b610812565b6040516102589190612b22565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b69565b61088e565b005b34801561029657600080fd5b5061029f610999565b6040516102ac9190612bb8565b60405180910390f35b3480156102c157600080fd5b506102ca6109b0565b6040516102d791906129a8565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612bd3565b6109c3565b005b610323600480360381019061031e9190612ab4565b6109d3565b005b34801561033157600080fd5b5061033a610a90565b60405161034f99989796959493929190612c26565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612bd3565b610b71565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612def565b610b91565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612ab4565b610c27565b6040516103de9190612b22565b60405180910390f35b3480156103f357600080fd5b506103fc610c3d565b6040516104099190612a5c565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190612e38565b610ccb565b6040516104469190612bb8565b60405180910390f35b34801561045b57600080fd5b50610464610d9b565b005b34801561047257600080fd5b5061047b610e23565b6040516104889190612b22565b60405180910390f35b6104ab60048036038101906104a69190612ab4565b610e4d565b005b3480156104b957600080fd5b506104c261105a565b6040516104cf9190612a5c565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190612e91565b6110ec565b005b34801561050d57600080fd5b5061052860048036038101906105239190612ed1565b611264565b005b34801561053657600080fd5b50610551600480360381019061054c9190612f9f565b6112fd565b005b34801561055f57600080fd5b50610568611379565b6040516105759190612bb8565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612ab4565b61137f565b6040516105b29190612a5c565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613022565b61141e565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ab4565b6114ff565b005b34801561061957600080fd5b50610634600480360381019061062f9190613062565b611585565b60405161064191906129a8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612e38565b611619565b005b34801561067f57600080fd5b50610688611711565b6040516106959190612bb8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610779575061077882611717565b5b9050919050565b60606002805461078f906130d1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906130d1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061081d82611781565b610853576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089982610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610901576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109206117cf565b73ffffffffffffffffffffffffffffffffffffffff161415801561095257506109508161094b6117cf565b611585565b155b15610989576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109948383836117d7565b505050565b60006109a3611889565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6109ce838383611892565b505050565b6109db6117cf565b73ffffffffffffffffffffffffffffffffffffffff166109f9610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a469061314f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610a8d57600080fd5b50565b6060600080600080600080600080600a600b546000600954600c54600d54610ab6610999565b600f60009054906101000a900460ff166000888054610ad4906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906130d1565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b610b8c838383604051806020016040528060008152506112fd565b505050565b610b996117cf565b73ffffffffffffffffffffffffffffffffffffffff16610bb7610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c049061314f565b60405180910390fd5b8060109080519060200190610c2392919061280e565b5050565b6000610c3282611d48565b600001519050919050565b60108054610c4a906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610c76906130d1565b8015610cc35780601f10610c9857610100808354040283529160200191610cc3565b820191906000526020600020905b815481529060010190602001808311610ca657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da36117cf565b73ffffffffffffffffffffffffffffffffffffffff16610dc1610e23565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e9061314f565b60405180910390fd5b610e216000611fd7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60011515600f60009054906101000a900460ff16151514610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906131bb565b60405180910390fd5b60008111610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90613227565b60405180910390fd5b600b54811115610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290613293565b60405180910390fd5b6000610f3633610ccb565b1415610f4657600e549050611034565b80600954610f5491906132e2565b341015610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613388565b60405180910390fd5b600c54811115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061341a565b60405180910390fd5b600d54610fe733610ccb565b82610ff2919061343a565b1115611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906134dc565b60405180910390fd5b5b80600b600082825461104691906134fc565b92505081905550611057338261209d565b50565b606060038054611069906130d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611095906130d1565b80156110e25780601f106110b7576101008083540402835291602001916110e2565b820191906000526020600020905b8154815290600101906020018083116110c557829003601f168201915b5050505050905090565b6110f46117cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611159576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111666117cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112136117cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125891906129a8565b60405180910390a35050565b61126c6117cf565b73ffffffffffffffffffffffffffffffffffffffff1661128a610e23565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061314f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611308848484611892565b6113278373ffffffffffffffffffffffffffffffffffffffff166120bb565b801561133c575061133a848484846120de565b155b15611373576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60095481565b606061138a82611781565b6113c0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113ca61222f565b90506000815114156113eb5760405180602001604052806000815250611416565b806113f5846122c1565b60405160200161140692919061356c565b6040516020818303038152906040525b915050919050565b6114266117cf565b73ffffffffffffffffffffffffffffffffffffffff16611444610e23565b73ffffffffffffffffffffffffffffffffffffffff161461149a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114919061314f565b60405180910390fd5b6115b3826114a6610999565b6114b0919061343a565b11156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906135dc565b60405180910390fd5b6114fb818361209d565b5050565b6115076117cf565b73ffffffffffffffffffffffffffffffffffffffff16611525610e23565b73ffffffffffffffffffffffffffffffffffffffff161461157b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115729061314f565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116216117cf565b73ffffffffffffffffffffffffffffffffffffffff1661163f610e23565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061314f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc9061366e565b60405180910390fd5b61170e81611fd7565b50565b6115b381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161178c611889565b1115801561179b575060005482105b80156117c8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061189d82611d48565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611908576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119296117cf565b73ffffffffffffffffffffffffffffffffffffffff1614806119585750611957856119526117cf565b611585565b5b8061199d57506119666117cf565b73ffffffffffffffffffffffffffffffffffffffff1661198584610812565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a4a8585856001612422565b611a56600084876117d7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cd6576000548214611cd557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d418585856001612428565b5050505050565b611d50612894565b600082905080611d5e611889565b11158015611d6d575060005481105b15611fa0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f9e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e82578092505050611fd2565b5b600115611f9d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f98578092505050611fd2565b611e83565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120b782826040518060200160405280600081525061242e565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121046117cf565b8786866040518563ffffffff1660e01b815260040161212694939291906136e3565b6020604051808303816000875af192505050801561216257506040513d601f19601f8201168201806040525081019061215f9190613744565b60015b6121dc573d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b506000815114156121d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606010805461223e906130d1565b80601f016020809104026020016040519081016040528092919081815260200182805461226a906130d1565b80156122b75780601f1061228c576101008083540402835291602001916122b7565b820191906000526020600020905b81548152906001019060200180831161229a57829003601f168201915b5050505050905090565b60606000821415612309576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061241d565b600082905060005b6000821461233b57808061232490613771565b915050600a8261233491906137e9565b9150612311565b60008167ffffffffffffffff81111561235757612356612cc4565b5b6040519080825280601f01601f1916602001820160405280156123895781602001600182028036833780820191505090505b5090505b60008514612416576001826123a291906134fc565b9150600a856123b1919061381a565b60306123bd919061343a565b60f81b8183815181106123d3576123d261384b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561240f91906137e9565b945061238d565b8093505050505b919050565b50505050565b50505050565b61243b8383836001612440565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124e8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f56000868387612422565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156126bf57506126be8773ffffffffffffffffffffffffffffffffffffffff166120bb565b5b15612785575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461273460008884806001019550886120de565b61276a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156126c557826000541461278057600080fd5b6127f1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612786575b8160008190555050506128076000868387612428565b5050505050565b82805461281a906130d1565b90600052602060002090601f01602090048101928261283c5760008555612883565b82601f1061285557805160ff1916838001178555612883565b82800160010185558215612883579182015b82811115612882578251825591602001919060010190612867565b5b50905061289091906128d7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156128f05760008160009055506001016128d8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b60008115159050919050565b6129a28161298d565b82525050565b60006020820190506129bd6000830184612999565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129fd5780820151818401526020810190506129e2565b83811115612a0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a2e826129c3565b612a3881856129ce565b9350612a488185602086016129df565b612a5181612a12565b840191505092915050565b60006020820190508181036000830152612a768184612a23565b905092915050565b6000819050919050565b612a9181612a7e565b8114612a9c57600080fd5b50565b600081359050612aae81612a88565b92915050565b600060208284031215612aca57612ac96128fe565b5b6000612ad884828501612a9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0c82612ae1565b9050919050565b612b1c81612b01565b82525050565b6000602082019050612b376000830184612b13565b92915050565b612b4681612b01565b8114612b5157600080fd5b50565b600081359050612b6381612b3d565b92915050565b60008060408385031215612b8057612b7f6128fe565b5b6000612b8e85828601612b54565b9250506020612b9f85828601612a9f565b9150509250929050565b612bb281612a7e565b82525050565b6000602082019050612bcd6000830184612ba9565b92915050565b600080600060608486031215612bec57612beb6128fe565b5b6000612bfa86828701612b54565b9350506020612c0b86828701612b54565b9250506040612c1c86828701612a9f565b9150509250925092565b6000610120820190508181036000830152612c41818c612a23565b9050612c50602083018b612ba9565b612c5d604083018a612ba9565b612c6a6060830189612ba9565b612c776080830188612ba9565b612c8460a0830187612ba9565b612c9160c0830186612ba9565b612c9e60e0830185612999565b612cac610100830184612999565b9a9950505050505050505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfc82612a12565b810181811067ffffffffffffffff82111715612d1b57612d1a612cc4565b5b80604052505050565b6000612d2e6128f4565b9050612d3a8282612cf3565b919050565b600067ffffffffffffffff821115612d5a57612d59612cc4565b5b612d6382612a12565b9050602081019050919050565b82818337600083830152505050565b6000612d92612d8d84612d3f565b612d24565b905082815260208101848484011115612dae57612dad612cbf565b5b612db9848285612d70565b509392505050565b600082601f830112612dd657612dd5612cba565b5b8135612de6848260208601612d7f565b91505092915050565b600060208284031215612e0557612e046128fe565b5b600082013567ffffffffffffffff811115612e2357612e22612903565b5b612e2f84828501612dc1565b91505092915050565b600060208284031215612e4e57612e4d6128fe565b5b6000612e5c84828501612b54565b91505092915050565b612e6e8161298d565b8114612e7957600080fd5b50565b600081359050612e8b81612e65565b92915050565b60008060408385031215612ea857612ea76128fe565b5b6000612eb685828601612b54565b9250506020612ec785828601612e7c565b9150509250929050565b600060208284031215612ee757612ee66128fe565b5b6000612ef584828501612e7c565b91505092915050565b600067ffffffffffffffff821115612f1957612f18612cc4565b5b612f2282612a12565b9050602081019050919050565b6000612f42612f3d84612efe565b612d24565b905082815260208101848484011115612f5e57612f5d612cbf565b5b612f69848285612d70565b509392505050565b600082601f830112612f8657612f85612cba565b5b8135612f96848260208601612f2f565b91505092915050565b60008060008060808587031215612fb957612fb86128fe565b5b6000612fc787828801612b54565b9450506020612fd887828801612b54565b9350506040612fe987828801612a9f565b925050606085013567ffffffffffffffff81111561300a57613009612903565b5b61301687828801612f71565b91505092959194509250565b60008060408385031215613039576130386128fe565b5b600061304785828601612a9f565b925050602061305885828601612b54565b9150509250929050565b60008060408385031215613079576130786128fe565b5b600061308785828601612b54565b925050602061309885828601612b54565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130e957607f821691505b602082108114156130fd576130fc6130a2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131396020836129ce565b915061314482613103565b602082019050919050565b600060208201905081810360008301526131688161312c565b9050919050565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b60006131a56013836129ce565b91506131b08261316f565b602082019050919050565b600060208201905081810360008301526131d481613198565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613211601b836129ce565b915061321c826131db565b602082019050919050565b6000602082019050818103600083015261324081613204565b9050919050565b7f5765277265206174206d617820737570706c7921000000000000000000000000600082015250565b600061327d6014836129ce565b915061328882613247565b602082019050919050565b600060208201905081810360008301526132ac81613270565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132ed82612a7e565b91506132f883612a7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613331576133306132b3565b5b828202905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006133726012836129ce565b915061337d8261333c565b602082019050919050565b600060208201905081810360008301526133a181613365565b9050919050565b7f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b60006134046028836129ce565b915061340f826133a8565b604082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b600061344582612a7e565b915061345083612a7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613485576134846132b3565b5b828201905092915050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006134c6601c836129ce565b91506134d182613490565b602082019050919050565b600060208201905081810360008301526134f5816134b9565b9050919050565b600061350782612a7e565b915061351283612a7e565b925082821015613525576135246132b3565b5b828203905092915050565b600081905092915050565b6000613546826129c3565b6135508185613530565b93506135608185602086016129df565b80840191505092915050565b6000613578828561353b565b9150613584828461353b565b91508190509392505050565b7f457863656564656420737570706c790000000000000000000000000000000000600082015250565b60006135c6600f836129ce565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136586026836129ce565b9150613663826135fc565b604082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006136b58261368e565b6136bf8185613699565b93506136cf8185602086016129df565b6136d881612a12565b840191505092915050565b60006080820190506136f86000830187612b13565b6137056020830186612b13565b6137126040830185612ba9565b818103606083015261372481846136aa565b905095945050505050565b60008151905061373e81612934565b92915050565b60006020828403121561375a576137596128fe565b5b60006137688482850161372f565b91505092915050565b600061377c82612a7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137af576137ae6132b3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137f482612a7e565b91506137ff83612a7e565b92508261380f5761380e6137ba565b5b828204905092915050565b600061382582612a7e565b915061383083612a7e565b9250826138405761383f6137ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122037cdd58177be2be146415c5bf29724c76193b12de45873e66989e60495135b2964736f6c634300080c0033

Deployed Bytecode Sourcemap

44908:2418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29058:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28621:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23691:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45278:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29923:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47123:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46449:251;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;30164:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46832:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27363:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45319:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24811:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43900:103;;;;;;;;;;;;;:::i;:::-;;43249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45664:777;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27724:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29334:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47236:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30420:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44998:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27899:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46932:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46738:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44158:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44953:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24442:305;24544:4;24596:25;24581:40;;;:11;:40;;;;:105;;;;24653:33;24638:48;;;:11;:48;;;;24581:105;:158;;;;24703:36;24727:11;24703:23;:36::i;:::-;24581:158;24561:178;;24442:305;;;:::o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;;;;;;;;;;;;;29146:64;29230:15;:24;29246:7;29230:24;;;;;;;;;;;;;;;;;;;;;29223:31;;29058:204;;;:::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;28749:11;;:2;:11;;;28745:48;;;28769:24;;;;;;;;;;;;;;28745:48;28826:5;28810:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28836:37;28853:5;28860:12;:10;:12::i;:::-;28836:16;:37::i;:::-;28835:38;28810:63;28806:138;;;28897:35;;;;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28683:309;28621:371;;:::o;23691:303::-;23735:7;23960:15;:13;:15::i;:::-;23945:12;;23929:13;;:28;:46;23922:53;;23691:303;:::o;45278:34::-;;;;;;;;;;;;;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;:::-;29923:170;;;:::o;47123:107::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47200:10:::1;47192:24;;:32;47217:6;47192:32;;;;;;;;;;;;;;;;;;;;;;;47184:41;;;::::0;::::1;;47123:107:::0;:::o;46449:251::-;46499:13;46514:4;46520;46526;46532;46537;46542;46548;46553;46574:15;46590:17;;46608:1;46610:14;;46625:13;;46639:18;;46659:13;:11;:13::i;:::-;46674:14;;;;;;;;;;;46689:5;46566:129;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46449:251;;;;;;;;;:::o;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;:::-;30164:185;;;:::o;46832:95::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46911:11:::1;46901:7;:21;;;;;;;;;;;;:::i;:::-;;46832:95:::0;:::o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;;27447:33;;27363:125;;;:::o;45319:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24811:206::-;24875:7;24916:1;24899:19;;:5;:19;;;24895:60;;;24927:28;;;;;;;;;;;;;;24895:60;24981:12;:19;24994:5;24981:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;24973:36;;24966:43;;24811:206;;;:::o;43900:103::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43965:30:::1;43992:1;43965:18;:30::i;:::-;43900:103::o:0;43249:87::-;43295:7;43322:6;;;;;;;;;;;43315:13;;43249:87;:::o;45664:777::-;45751:4;45733:22;;:14;;;;;;;;;;;:22;;;45725:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45806:1;45792:11;:15;45784:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45873:17;;45858:11;:32;;45850:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45964:1;45939:21;45949:10;45939:9;:21::i;:::-;:26;45936:419;;;46005:9;;45991:23;;45936:419;;;46103:11;46086:14;;:28;;;;:::i;:::-;46073:9;:41;;46065:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;46175:13;;46160:11;:28;;46152:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;46292:18;;46266:21;46276:10;46266:9;:21::i;:::-;46251:11;:36;;;;:::i;:::-;46250:60;;46242:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45936:419;46382:11;46361:17;;:32;;;;;;;:::i;:::-;;;;;;;;46398:34;46408:10;46420:11;46398:9;:34::i;:::-;45664:777;:::o;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:104;:::o;29334:287::-;29445:12;:10;:12::i;:::-;29433:24;;:8;:24;;;29429:54;;;29466:17;;;;;;;;;;;;;;29429:54;29541:8;29496:18;:32;29515:12;:10;:12::i;:::-;29496:32;;;;;;;;;;;;;;;:42;29529:8;29496:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29594:8;29565:48;;29580:12;:10;:12::i;:::-;29565:48;;;29604:8;29565:48;;;;;;:::i;:::-;;;;;;;;29334:287;;:::o;47236:87::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47312:6:::1;47295:14;;:23;;;;;;;;;;;;;;;;;;47236:87:::0;:::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;30630:15;:2;:13;;;:15::i;:::-;:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;;;;;;;;;;;;;30626:156;30420:369;;;;:::o;44998:42::-;;;;:::o;27899:318::-;27972:13;28003:16;28011:7;28003;:16::i;:::-;27998:59;;28028:29;;;;;;;;;;;;;;27998:59;28070:21;28094:10;:8;:10::i;:::-;28070:34;;28147:1;28128:7;28122:21;:26;;:87;;;;;;;;;;;;;;;;;28175:7;28184:18;:7;:16;:18::i;:::-;28158:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28122:87;28115:94;;;27899:318;;;:::o;46932:186::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44987:4:::1;47033:9;47017:13;:11;:13::i;:::-;:25;;;;:::i;:::-;47016:41;;47008:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47082:31;47092:9;47103;47082;:31::i;:::-;46932:186:::0;;:::o;46738:91::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46815:6:::1;46803:9;:18;;;;46738:91:::0;:::o;29692:164::-;29789:4;29813:18;:25;29832:5;29813:25;;;;;;;;;;;;;;;:35;29839:8;29813:35;;;;;;;;;;;;;;;;;;;;;;;;;29806:42;;29692:164;;;;:::o;44158:201::-;43480:12;:10;:12::i;:::-;43469:23;;:7;:5;:7::i;:::-;:23;;;43461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44267:1:::1;44247:22;;:8;:22;;;;44239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44323:28;44342:8;44323:18;:28::i;:::-;44158:201:::0;:::o;44953:38::-;44987:4;44953:38;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;31044:174::-;31101:4;31144:7;31125:15;:13;:15::i;:::-;:26;;:53;;;;;31165:13;;31155:7;:23;31125:53;:85;;;;;31183:11;:20;31195:7;31183:20;;;;;;;;;;;:27;;;;;;;;;;;;31182:28;31125:85;31118:92;;31044:174;;;:::o;19958:98::-;20011:7;20038:10;20031:17;;19958:98;:::o;39201:196::-;39343:2;39316:15;:24;39332:7;39316:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39381:7;39377:2;39361:28;;39370:5;39361:28;;;;;;;;;;;;39201:196;;;:::o;45567:92::-;45632:7;45653:1;45646:8;;45567:92;:::o;34144:2130::-;34259:35;34297:21;34310:7;34297:12;:21::i;:::-;34259:59;;34357:4;34335:26;;:13;:18;;;:26;;;34331:67;;34370:28;;;;;;;;;;;;;;34331:67;34411:22;34453:4;34437:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34474:36;34491:4;34497:12;:10;:12::i;:::-;34474:16;:36::i;:::-;34437:73;:126;;;;34551:12;:10;:12::i;:::-;34527:36;;:20;34539:7;34527:11;:20::i;:::-;:36;;;34437:126;34411:153;;34582:17;34577:66;;34608:35;;;;;;;;;;;;;;34577:66;34672:1;34658:16;;:2;:16;;;34654:52;;;34683:23;;;;;;;;;;;;;;34654:52;34719:43;34741:4;34747:2;34751:7;34760:1;34719:21;:43::i;:::-;34827:35;34844:1;34848:7;34857:4;34827:8;:35::i;:::-;35188:1;35158:12;:18;35171:4;35158:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35232:1;35204:12;:16;35217:2;35204:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35250:31;35284:11;:20;35296:7;35284:20;;;;;;;;;;;35250:54;;35335:2;35319:8;:13;;;:18;;;;;;;;;;;;;;;;;;35385:15;35352:8;:23;;;:49;;;;;;;;;;;;;;;;;;35653:19;35685:1;35675:7;:11;35653:33;;35701:31;35735:11;:24;35747:11;35735:24;;;;;;;;;;;35701:58;;35803:1;35778:27;;:8;:13;;;;;;;;;;;;:27;;;35774:384;;;35988:13;;35973:11;:28;35969:174;;36042:4;36026:8;:13;;;:20;;;;;;;;;;;;;;;;;;36095:13;:28;;;36069:8;:23;;;:54;;;;;;;;;;;;;;;;;;35969:174;35774:384;35133:1036;;;36205:7;36201:2;36186:27;;36195:4;36186:27;;;;;;;;;;;;36224:42;36245:4;36251:2;36255:7;36264:1;36224:20;:42::i;:::-;34248:2026;;34144:2130;;;:::o;26192:1109::-;26254:21;;:::i;:::-;26288:12;26303:7;26288:22;;26371:4;26352:15;:13;:15::i;:::-;:23;;:47;;;;;26386:13;;26379:4;:20;26352:47;26348:886;;;26420:31;26454:11;:17;26466:4;26454:17;;;;;;;;;;;26420:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26495:9;:16;;;26490:729;;26566:1;26540:28;;:9;:14;;;:28;;;26536:101;;26604:9;26597:16;;;;;;26536:101;26939:261;26946:4;26939:261;;;26979:6;;;;;;;;27024:11;:17;27036:4;27024:17;;;;;;;;;;;27012:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27098:1;27072:28;;:9;:14;;;:28;;;27068:109;;27140:9;27133:16;;;;;;27068:109;26939:261;;;26490:729;26401:833;26348:886;27262:31;;;;;;;;;;;;;;26192:1109;;;;:::o;44519:191::-;44593:16;44612:6;;;;;;;;;;;44593:25;;44638:8;44629:6;;:17;;;;;;;;;;;;;;;;;;44693:8;44662:40;;44683:8;44662:40;;;;;;;;;;;;44582:128;44519:191;:::o;31226:104::-;31295:27;31305:2;31309:8;31295:27;;;;;;;;;;;;:9;:27::i;:::-;31226:104;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;39889:667::-;40052:4;40089:2;40073:36;;;40110:12;:10;:12::i;:::-;40124:4;40130:7;40139:5;40073:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40069:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40324:1;40307:6;:13;:18;40303:235;;;40353:40;;;;;;;;;;;;;;40303:235;40496:6;40490:13;40481:6;40477:2;40473:15;40466:38;40069:480;40202:45;;;40192:55;;;:6;:55;;;;40185:62;;;39889:667;;;;;;:::o;45463:99::-;45523:13;45550:7;45543:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45463:99;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;41204:159::-;;;;;:::o;42022:158::-;;;;;:::o;31693:163::-;31816:32;31822:2;31826:8;31836:5;31843:4;31816:5;:32::i;:::-;31693:163;;;:::o;32115:1775::-;32254:20;32277:13;;32254:36;;32319:1;32305:16;;:2;:16;;;32301:48;;;32330:19;;;;;;;;;;;;;;32301:48;32376:1;32364:8;:13;32360:44;;;32386:18;;;;;;;;;;;;;;32360:44;32417:61;32447:1;32451:2;32455:12;32469:8;32417:21;:61::i;:::-;32790:8;32755:12;:16;32768:2;32755:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32854:8;32814:12;:16;32827:2;32814:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32913:2;32880:11;:25;32892:12;32880:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32980:15;32930:11;:25;32942:12;32930:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33013:20;33036:12;33013:35;;33063:11;33092:8;33077:12;:23;33063:37;;33121:4;:23;;;;;33129:15;:2;:13;;;:15::i;:::-;33121:23;33117:641;;;33165:314;33221:12;33217:2;33196:38;;33213:1;33196:38;;;;;;;;;;;;33262:69;33301:1;33305:2;33309:14;;;;;;33325:5;33262:30;:69::i;:::-;33257:174;;33367:40;;;;;;;;;;;;;;33257:174;33474:3;33458:12;:19;;33165:314;;33560:12;33543:13;;:29;33539:43;;33574:8;;;33539:43;33117:641;;;33623:120;33679:14;;;;;;33675:2;33654:40;;33671:1;33654:40;;;;;;;;;;;;33738:3;33722:12;:19;;33623:120;;33117:641;33788:12;33772:13;:28;;;;32730:1082;;33822:60;33851:1;33855:2;33859:12;33873:8;33822:20;:60::i;:::-;32243:1647;32115:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:1175::-;6240:4;6278:3;6267:9;6263:19;6255:27;;6328:9;6322:4;6318:20;6314:1;6303:9;6299:17;6292:47;6356:78;6429:4;6420:6;6356:78;:::i;:::-;6348:86;;6444:72;6512:2;6501:9;6497:18;6488:6;6444:72;:::i;:::-;6526;6594:2;6583:9;6579:18;6570:6;6526:72;:::i;:::-;6608;6676:2;6665:9;6661:18;6652:6;6608:72;:::i;:::-;6690:73;6758:3;6747:9;6743:19;6734:6;6690:73;:::i;:::-;6773;6841:3;6830:9;6826:19;6817:6;6773:73;:::i;:::-;6856;6924:3;6913:9;6909:19;6900:6;6856:73;:::i;:::-;6939:67;7001:3;6990:9;6986:19;6977:6;6939:67;:::i;:::-;7016;7078:3;7067:9;7063:19;7054:6;7016:67;:::i;:::-;5915:1175;;;;;;;;;;;;:::o;7096:117::-;7205:1;7202;7195:12;7219:117;7328:1;7325;7318:12;7342:180;7390:77;7387:1;7380:88;7487:4;7484:1;7477:15;7511:4;7508:1;7501:15;7528:281;7611:27;7633:4;7611:27;:::i;:::-;7603:6;7599:40;7741:6;7729:10;7726:22;7705:18;7693:10;7690:34;7687:62;7684:88;;;7752:18;;:::i;:::-;7684:88;7792:10;7788:2;7781:22;7571:238;7528:281;;:::o;7815:129::-;7849:6;7876:20;;:::i;:::-;7866:30;;7905:33;7933:4;7925:6;7905:33;:::i;:::-;7815:129;;;:::o;7950:308::-;8012:4;8102:18;8094:6;8091:30;8088:56;;;8124:18;;:::i;:::-;8088:56;8162:29;8184:6;8162:29;:::i;:::-;8154:37;;8246:4;8240;8236:15;8228:23;;7950:308;;;:::o;8264:154::-;8348:6;8343:3;8338;8325:30;8410:1;8401:6;8396:3;8392:16;8385:27;8264:154;;;:::o;8424:412::-;8502:5;8527:66;8543:49;8585:6;8543:49;:::i;:::-;8527:66;:::i;:::-;8518:75;;8616:6;8609:5;8602:21;8654:4;8647:5;8643:16;8692:3;8683:6;8678:3;8674:16;8671:25;8668:112;;;8699:79;;:::i;:::-;8668:112;8789:41;8823:6;8818:3;8813;8789:41;:::i;:::-;8508:328;8424:412;;;;;:::o;8856:340::-;8912:5;8961:3;8954:4;8946:6;8942:17;8938:27;8928:122;;8969:79;;:::i;:::-;8928:122;9086:6;9073:20;9111:79;9186:3;9178:6;9171:4;9163:6;9159:17;9111:79;:::i;:::-;9102:88;;8918:278;8856:340;;;;:::o;9202:509::-;9271:6;9320:2;9308:9;9299:7;9295:23;9291:32;9288:119;;;9326:79;;:::i;:::-;9288:119;9474:1;9463:9;9459:17;9446:31;9504:18;9496:6;9493:30;9490:117;;;9526:79;;:::i;:::-;9490:117;9631:63;9686:7;9677:6;9666:9;9662:22;9631:63;:::i;:::-;9621:73;;9417:287;9202:509;;;;:::o;9717:329::-;9776:6;9825:2;9813:9;9804:7;9800:23;9796:32;9793:119;;;9831:79;;:::i;:::-;9793:119;9951:1;9976:53;10021:7;10012:6;10001:9;9997:22;9976:53;:::i;:::-;9966:63;;9922:117;9717:329;;;;:::o;10052:116::-;10122:21;10137:5;10122:21;:::i;:::-;10115:5;10112:32;10102:60;;10158:1;10155;10148:12;10102:60;10052:116;:::o;10174:133::-;10217:5;10255:6;10242:20;10233:29;;10271:30;10295:5;10271:30;:::i;:::-;10174:133;;;;:::o;10313:468::-;10378:6;10386;10435:2;10423:9;10414:7;10410:23;10406:32;10403:119;;;10441:79;;:::i;:::-;10403:119;10561:1;10586:53;10631:7;10622:6;10611:9;10607:22;10586:53;:::i;:::-;10576:63;;10532:117;10688:2;10714:50;10756:7;10747:6;10736:9;10732:22;10714:50;:::i;:::-;10704:60;;10659:115;10313:468;;;;;:::o;10787:323::-;10843:6;10892:2;10880:9;10871:7;10867:23;10863:32;10860:119;;;10898:79;;:::i;:::-;10860:119;11018:1;11043:50;11085:7;11076:6;11065:9;11061:22;11043:50;:::i;:::-;11033:60;;10989:114;10787:323;;;;:::o;11116:307::-;11177:4;11267:18;11259:6;11256:30;11253:56;;;11289:18;;:::i;:::-;11253:56;11327:29;11349:6;11327:29;:::i;:::-;11319:37;;11411:4;11405;11401:15;11393:23;;11116:307;;;:::o;11429:410::-;11506:5;11531:65;11547:48;11588:6;11547:48;:::i;:::-;11531:65;:::i;:::-;11522:74;;11619:6;11612:5;11605:21;11657:4;11650:5;11646:16;11695:3;11686:6;11681:3;11677:16;11674:25;11671:112;;;11702:79;;:::i;:::-;11671:112;11792:41;11826:6;11821:3;11816;11792:41;:::i;:::-;11512:327;11429:410;;;;;:::o;11858:338::-;11913:5;11962:3;11955:4;11947:6;11943:17;11939:27;11929:122;;11970:79;;:::i;:::-;11929:122;12087:6;12074:20;12112:78;12186:3;12178:6;12171:4;12163:6;12159:17;12112:78;:::i;:::-;12103:87;;11919:277;11858:338;;;;:::o;12202:943::-;12297:6;12305;12313;12321;12370:3;12358:9;12349:7;12345:23;12341:33;12338:120;;;12377:79;;:::i;:::-;12338:120;12497:1;12522:53;12567:7;12558:6;12547:9;12543:22;12522:53;:::i;:::-;12512:63;;12468:117;12624:2;12650:53;12695:7;12686:6;12675:9;12671:22;12650:53;:::i;:::-;12640:63;;12595:118;12752:2;12778:53;12823:7;12814:6;12803:9;12799:22;12778:53;:::i;:::-;12768:63;;12723:118;12908:2;12897:9;12893:18;12880:32;12939:18;12931:6;12928:30;12925:117;;;12961:79;;:::i;:::-;12925:117;13066:62;13120:7;13111:6;13100:9;13096:22;13066:62;:::i;:::-;13056:72;;12851:287;12202:943;;;;;;;:::o;13151:474::-;13219:6;13227;13276:2;13264:9;13255:7;13251:23;13247:32;13244:119;;;13282:79;;:::i;:::-;13244:119;13402:1;13427:53;13472:7;13463:6;13452:9;13448:22;13427:53;:::i;:::-;13417:63;;13373:117;13529:2;13555:53;13600:7;13591:6;13580:9;13576:22;13555:53;:::i;:::-;13545:63;;13500:118;13151:474;;;;;:::o;13631:::-;13699:6;13707;13756:2;13744:9;13735:7;13731:23;13727:32;13724:119;;;13762:79;;:::i;:::-;13724:119;13882:1;13907:53;13952:7;13943:6;13932:9;13928:22;13907:53;:::i;:::-;13897:63;;13853:117;14009:2;14035:53;14080:7;14071:6;14060:9;14056:22;14035:53;:::i;:::-;14025:63;;13980:118;13631:474;;;;;:::o;14111:180::-;14159:77;14156:1;14149:88;14256:4;14253:1;14246:15;14280:4;14277:1;14270:15;14297:320;14341:6;14378:1;14372:4;14368:12;14358:22;;14425:1;14419:4;14415:12;14446:18;14436:81;;14502:4;14494:6;14490:17;14480:27;;14436:81;14564:2;14556:6;14553:14;14533:18;14530:38;14527:84;;;14583:18;;:::i;:::-;14527:84;14348:269;14297:320;;;:::o;14623:182::-;14763:34;14759:1;14751:6;14747:14;14740:58;14623:182;:::o;14811:366::-;14953:3;14974:67;15038:2;15033:3;14974:67;:::i;:::-;14967:74;;15050:93;15139:3;15050:93;:::i;:::-;15168:2;15163:3;15159:12;15152:19;;14811:366;;;:::o;15183:419::-;15349:4;15387:2;15376:9;15372:18;15364:26;;15436:9;15430:4;15426:20;15422:1;15411:9;15407:17;15400:47;15464:131;15590:4;15464:131;:::i;:::-;15456:139;;15183:419;;;:::o;15608:169::-;15748:21;15744:1;15736:6;15732:14;15725:45;15608:169;:::o;15783:366::-;15925:3;15946:67;16010:2;16005:3;15946:67;:::i;:::-;15939:74;;16022:93;16111:3;16022:93;:::i;:::-;16140:2;16135:3;16131:12;16124:19;;15783:366;;;:::o;16155:419::-;16321:4;16359:2;16348:9;16344:18;16336:26;;16408:9;16402:4;16398:20;16394:1;16383:9;16379:17;16372:47;16436:131;16562:4;16436:131;:::i;:::-;16428:139;;16155:419;;;:::o;16580:177::-;16720:29;16716:1;16708:6;16704:14;16697:53;16580:177;:::o;16763:366::-;16905:3;16926:67;16990:2;16985:3;16926:67;:::i;:::-;16919:74;;17002:93;17091:3;17002:93;:::i;:::-;17120:2;17115:3;17111:12;17104:19;;16763:366;;;:::o;17135:419::-;17301:4;17339:2;17328:9;17324:18;17316:26;;17388:9;17382:4;17378:20;17374:1;17363:9;17359:17;17352:47;17416:131;17542:4;17416:131;:::i;:::-;17408:139;;17135:419;;;:::o;17560:170::-;17700:22;17696:1;17688:6;17684:14;17677:46;17560:170;:::o;17736:366::-;17878:3;17899:67;17963:2;17958:3;17899:67;:::i;:::-;17892:74;;17975:93;18064:3;17975:93;:::i;:::-;18093:2;18088:3;18084:12;18077:19;;17736:366;;;:::o;18108:419::-;18274:4;18312:2;18301:9;18297:18;18289:26;;18361:9;18355:4;18351:20;18347:1;18336:9;18332:17;18325:47;18389:131;18515:4;18389:131;:::i;:::-;18381:139;;18108:419;;;:::o;18533:180::-;18581:77;18578:1;18571:88;18678:4;18675:1;18668:15;18702:4;18699:1;18692:15;18719:348;18759:7;18782:20;18800:1;18782:20;:::i;:::-;18777:25;;18816:20;18834:1;18816:20;:::i;:::-;18811:25;;19004:1;18936:66;18932:74;18929:1;18926:81;18921:1;18914:9;18907:17;18903:105;18900:131;;;19011:18;;:::i;:::-;18900:131;19059:1;19056;19052:9;19041:20;;18719:348;;;;:::o;19073:168::-;19213:20;19209:1;19201:6;19197:14;19190:44;19073:168;:::o;19247:366::-;19389:3;19410:67;19474:2;19469:3;19410:67;:::i;:::-;19403:74;;19486:93;19575:3;19486:93;:::i;:::-;19604:2;19599:3;19595:12;19588:19;;19247:366;;;:::o;19619:419::-;19785:4;19823:2;19812:9;19808:18;19800:26;;19872:9;19866:4;19862:20;19858:1;19847:9;19843:17;19836:47;19900:131;20026:4;19900:131;:::i;:::-;19892:139;;19619:419;;;:::o;20044:227::-;20184:34;20180:1;20172:6;20168:14;20161:58;20253:10;20248:2;20240:6;20236:15;20229:35;20044:227;:::o;20277:366::-;20419:3;20440:67;20504:2;20499:3;20440:67;:::i;:::-;20433:74;;20516:93;20605:3;20516:93;:::i;:::-;20634:2;20629:3;20625:12;20618:19;;20277:366;;;:::o;20649:419::-;20815:4;20853:2;20842:9;20838:18;20830:26;;20902:9;20896:4;20892:20;20888:1;20877:9;20873:17;20866:47;20930:131;21056:4;20930:131;:::i;:::-;20922:139;;20649:419;;;:::o;21074:305::-;21114:3;21133:20;21151:1;21133:20;:::i;:::-;21128:25;;21167:20;21185:1;21167:20;:::i;:::-;21162:25;;21321:1;21253:66;21249:74;21246:1;21243:81;21240:107;;;21327:18;;:::i;:::-;21240:107;21371:1;21368;21364:9;21357:16;;21074:305;;;;:::o;21385:178::-;21525:30;21521:1;21513:6;21509:14;21502:54;21385:178;:::o;21569:366::-;21711:3;21732:67;21796:2;21791:3;21732:67;:::i;:::-;21725:74;;21808:93;21897:3;21808:93;:::i;:::-;21926:2;21921:3;21917:12;21910:19;;21569:366;;;:::o;21941:419::-;22107:4;22145:2;22134:9;22130:18;22122:26;;22194:9;22188:4;22184:20;22180:1;22169:9;22165:17;22158:47;22222:131;22348:4;22222:131;:::i;:::-;22214:139;;21941:419;;;:::o;22366:191::-;22406:4;22426:20;22444:1;22426:20;:::i;:::-;22421:25;;22460:20;22478:1;22460:20;:::i;:::-;22455:25;;22499:1;22496;22493:8;22490:34;;;22504:18;;:::i;:::-;22490:34;22549:1;22546;22542:9;22534:17;;22366:191;;;;:::o;22563:148::-;22665:11;22702:3;22687:18;;22563:148;;;;:::o;22717:377::-;22823:3;22851:39;22884:5;22851:39;:::i;:::-;22906:89;22988:6;22983:3;22906:89;:::i;:::-;22899:96;;23004:52;23049:6;23044:3;23037:4;23030:5;23026:16;23004:52;:::i;:::-;23081:6;23076:3;23072:16;23065:23;;22827:267;22717:377;;;;:::o;23100:435::-;23280:3;23302:95;23393:3;23384:6;23302:95;:::i;:::-;23295:102;;23414:95;23505:3;23496:6;23414:95;:::i;:::-;23407:102;;23526:3;23519:10;;23100:435;;;;;:::o;23541:165::-;23681:17;23677:1;23669:6;23665:14;23658:41;23541:165;:::o;23712:366::-;23854:3;23875:67;23939:2;23934:3;23875:67;:::i;:::-;23868:74;;23951:93;24040:3;23951:93;:::i;:::-;24069:2;24064:3;24060:12;24053:19;;23712:366;;;:::o;24084:419::-;24250:4;24288:2;24277:9;24273:18;24265:26;;24337:9;24331:4;24327:20;24323:1;24312:9;24308:17;24301:47;24365:131;24491:4;24365:131;:::i;:::-;24357:139;;24084:419;;;:::o;24509:225::-;24649:34;24645:1;24637:6;24633:14;24626:58;24718:8;24713:2;24705:6;24701:15;24694:33;24509:225;:::o;24740:366::-;24882:3;24903:67;24967:2;24962:3;24903:67;:::i;:::-;24896:74;;24979:93;25068:3;24979:93;:::i;:::-;25097:2;25092:3;25088:12;25081:19;;24740:366;;;:::o;25112:419::-;25278:4;25316:2;25305:9;25301:18;25293:26;;25365:9;25359:4;25355:20;25351:1;25340:9;25336:17;25329:47;25393:131;25519:4;25393:131;:::i;:::-;25385:139;;25112:419;;;:::o;25537:98::-;25588:6;25622:5;25616:12;25606:22;;25537:98;;;:::o;25641:168::-;25724:11;25758:6;25753:3;25746:19;25798:4;25793:3;25789:14;25774:29;;25641:168;;;;:::o;25815:360::-;25901:3;25929:38;25961:5;25929:38;:::i;:::-;25983:70;26046:6;26041:3;25983:70;:::i;:::-;25976:77;;26062:52;26107:6;26102:3;26095:4;26088:5;26084:16;26062:52;:::i;:::-;26139:29;26161:6;26139:29;:::i;:::-;26134:3;26130:39;26123:46;;25905:270;25815:360;;;;:::o;26181:640::-;26376:4;26414:3;26403:9;26399:19;26391:27;;26428:71;26496:1;26485:9;26481:17;26472:6;26428:71;:::i;:::-;26509:72;26577:2;26566:9;26562:18;26553:6;26509:72;:::i;:::-;26591;26659:2;26648:9;26644:18;26635:6;26591:72;:::i;:::-;26710:9;26704:4;26700:20;26695:2;26684:9;26680:18;26673:48;26738:76;26809:4;26800:6;26738:76;:::i;:::-;26730:84;;26181:640;;;;;;;:::o;26827:141::-;26883:5;26914:6;26908:13;26899:22;;26930:32;26956:5;26930:32;:::i;:::-;26827:141;;;;:::o;26974:349::-;27043:6;27092:2;27080:9;27071:7;27067:23;27063:32;27060:119;;;27098:79;;:::i;:::-;27060:119;27218:1;27243:63;27298:7;27289:6;27278:9;27274:22;27243:63;:::i;:::-;27233:73;;27189:127;26974:349;;;;:::o;27329:233::-;27368:3;27391:24;27409:5;27391:24;:::i;:::-;27382:33;;27437:66;27430:5;27427:77;27424:103;;;27507:18;;:::i;:::-;27424:103;27554:1;27547:5;27543:13;27536:20;;27329:233;;;:::o;27568:180::-;27616:77;27613:1;27606:88;27713:4;27710:1;27703:15;27737:4;27734:1;27727:15;27754:185;27794:1;27811:20;27829:1;27811:20;:::i;:::-;27806:25;;27845:20;27863:1;27845:20;:::i;:::-;27840:25;;27884:1;27874:35;;27889:18;;:::i;:::-;27874:35;27931:1;27928;27924:9;27919:14;;27754:185;;;;:::o;27945:176::-;27977:1;27994:20;28012:1;27994:20;:::i;:::-;27989:25;;28028:20;28046:1;28028:20;:::i;:::-;28023:25;;28067:1;28057:35;;28072:18;;:::i;:::-;28057:35;28113:1;28110;28106:9;28101:14;;27945:176;;;;:::o;28127:180::-;28175:77;28172:1;28165:88;28272:4;28269:1;28262:15;28296:4;28293:1;28286:15

Swarm Source

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