ETH Price: $3,312.62 (-1.63%)
Gas: 1 Gwei

Token

Vampire Girls (VG)
 

Overview

Max Total Supply

235 VG

Holders

147

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 VG
0xdaf37ce9aa8b56ccfa7ae1755a11feb114860251
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:
VampireGirls

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-09
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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


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

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


pragma solidity ^0.8.0;

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

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

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

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

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


pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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


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();

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

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

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.4;


contract VampireGirls is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;

    string public hiddenMetadataUri;

    uint256 public price = 0.0035 ether;

    uint256 public maxPerTx = 6;

    uint256 public maxFreePerWallet = 1;

    uint256 public totalFree = 2222;

    uint256 public maxSupply = 6666;

    uint public nextId = 0;

    bool public mintEnabled = false;

    bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Vampire Girls", "VG") {
        setHiddenMetadataUri("https://api.transilvania.wtf/");
        setBaseURI("https://api.transilvania.wtf/");
    }

    function mint(uint256 count) external payable {
      uint256 cost = price;
      bool isFree =
      ((totalSupply() + count < totalFree + 1) &&
      (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

      if (isFree) {
      cost = 0;
     }

     else {
      require(msg.value >= count * price, "Please send the exact amount.");
      require(totalSupply() + count <= maxSupply, "No more Meowerz");
      require(mintEnabled, "Minting is not live yet");
      require(count <= maxPerTx, "Max per TX reached.");
     }

      if (isFree) {
         _mintedFreeAmount[msg.sender] += count;
      }

     _safeMint(msg.sender, count);
     nextId += count;
    }

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

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

        if (revealed == false) {
         return string(abi.encodePacked(hiddenMetadataUri));
        }
    
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

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

    function setRevealed() external onlyOwner {
     revealed = !revealed;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function getNextId() public view returns(uint){
     return nextId;
    }

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

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

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"},{"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":[{"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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660c6f3b40b6c000600b556006600c556001600d556108ae600e55611a0a600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600d81526020017f56616d70697265204769726c73000000000000000000000000000000000000008152506040518060400160405280600281526020017f56470000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f29291906200042d565b5080600390805190602001906200010b9291906200042d565b506200011c620001d660201b60201c565b60008190555050506200014462000138620001df60201b60201c565b620001e760201b60201c565b6200018a6040518060400160405280601d81526020017f68747470733a2f2f6170692e7472616e73696c76616e69612e7774662f000000815250620002ad60201b60201c565b620001d06040518060400160405280601d81526020017f68747470733a2f2f6170692e7472616e73696c76616e69612e7774662f0000008152506200035860201b60201c565b620005c4565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000333906200053e565b60405180910390fd5b80600a9080519060200190620003549291906200042d565b5050565b62000368620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de906200053e565b60405180910390fd5b8060099080519060200190620003ff9291906200042d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043b906200058f565b90600052602060002090601f0160209004810192826200045f5760008555620004ab565b82601f106200047a57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004aa5782518255916020019190600101906200048d565b5b509050620004ba9190620004be565b5090565b5b80821115620004d9576000816000905550600101620004bf565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000526602083620004dd565b91506200053382620004ee565b602082019050919050565b60006020820190508181036000830152620005598162000517565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005a857607f821691505b602082108103620005be57620005bd62000560565b5b50919050565b613a4e80620005d46000396000f3fe6080604052600436106102045760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d1239730146106fc578063d5abeb0114610727578063e985e9c514610752578063f2fde38b1461078f578063f968adbe146107b857610204565b8063a702735714610640578063b88d4fde1461066b578063bc96832614610694578063c87b56dd146106bf57610204565b806395d89b41116100e757806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0578063a22cb465146105ec578063a45ba8e71461061557610204565b80637ba5e621146104e65780638da5cb5b146104fd57806391b7f5ed1461052857806392910eec1461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040157806361b8ce8c1461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf57610204565b80633ccfd60b1461036d57806342842e0e146103845780634fdd43cb146103ad57806351830227146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063333e44e61461032b5780633bd649681461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612b25565b6107e3565b60405161023d9190612b6d565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b6040516102689190612c21565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612c79565b610957565b6040516102a59190612ce7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612d2e565b6109d3565b005b3480156102e357600080fd5b506102ec610add565b6040516102f99190612d7d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612d98565b610af4565b005b34801561033757600080fd5b50610340610b04565b60405161034d9190612d7d565b60405180910390f35b34801561036257600080fd5b5061036b610b0a565b005b34801561037957600080fd5b50610382610bb2565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612d98565b610cdd565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612f20565b610cfd565b005b3480156103e257600080fd5b506103eb610d93565b6040516103f89190612b6d565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612f20565b610da6565b005b34801561043657600080fd5b5061043f610e3c565b60405161044c9190612d7d565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612c79565b610e42565b6040516104899190612ce7565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612f69565b610e58565b6040516104c69190612d7d565b60405180910390f35b3480156104db57600080fd5b506104e4610f27565b005b3480156104f257600080fd5b506104fb610faf565b005b34801561050957600080fd5b50610512611057565b60405161051f9190612ce7565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612c79565b611081565b005b34801561055d57600080fd5b5061057860048036038101906105739190612c79565b611107565b005b34801561058657600080fd5b5061058f61118d565b60405161059c9190612c21565b60405180910390f35b3480156105b157600080fd5b506105ba61121f565b6040516105c79190612d7d565b60405180910390f35b6105ea60048036038101906105e59190612c79565b611225565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612fc2565b61147b565b005b34801561062157600080fd5b5061062a6115f2565b6040516106379190612c21565b60405180910390f35b34801561064c57600080fd5b50610655611680565b6040516106629190612d7d565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906130a3565b611686565b005b3480156106a057600080fd5b506106a9611702565b6040516106b69190612d7d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c79565b61170c565b6040516106f39190612c21565b60405180910390f35b34801561070857600080fd5b506107116117cc565b60405161071e9190612b6d565b60405180910390f35b34801561073357600080fd5b5061073c6117df565b6040516107499190612d7d565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613126565b6117e5565b6040516107869190612b6d565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612f69565b611879565b005b3480156107c457600080fd5b506107cd611970565b6040516107da9190612d7d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611976565b5b9050919050565b6060600280546108d490613195565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613195565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826119e0565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82610e42565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a64611a2e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a965750610a9481610a8f611a2e565b6117e5565b155b15610acd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad8838383611a36565b505050565b6000610ae7611ae8565b6001546000540303905090565b610aff838383611af1565b505050565b600e5481565b610b12611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610b30611057565b73ffffffffffffffffffffffffffffffffffffffff1614610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90613212565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bba611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610bd8611057565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613212565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5490613263565b60006040518083038185875af1925050503d8060008114610c91576040519150601f19603f3d011682016040523d82523d6000602084013e610c96565b606091505b5050905080610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906132c4565b60405180910390fd5b50565b610cf883838360405180602001604052806000815250611686565b505050565b610d05611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610d23611057565b73ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613212565b60405180910390fd5b80600a9080519060200190610d8f9291906129d3565b5050565b601160019054906101000a900460ff1681565b610dae611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610dcc611057565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613212565b60405180910390fd5b8060099080519060200190610e389291906129d3565b5050565b60105481565b6000610e4d82611fa5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f2f611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610f4d611057565b73ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613212565b60405180910390fd5b610fad6000612234565b565b610fb7611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610fd5611057565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613212565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611089611a2e565b73ffffffffffffffffffffffffffffffffffffffff166110a7611057565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490613212565b60405180910390fd5b80600b8190555050565b61110f611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661112d611057565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90613212565b60405180910390fd5b80600e8190555050565b60606003805461119c90613195565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613195565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461123d9190613313565b83611246610add565b6112509190613313565b1080156112a95750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a69190613313565b11155b905080156112ba57600091506113f6565b600b54836112c89190613369565b34101561130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061340f565b60405180910390fd5b600f5483611316610add565b6113209190613313565b1115611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061347b565b60405180910390fd5b601160009054906101000a900460ff166113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906134e7565b60405180910390fd5b600c548311156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613553565b60405180910390fd5b5b80156114535782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144b9190613313565b925050819055505b61145d33846122fa565b826010600082825461146f9190613313565b92505081905550505050565b611483611a2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f4611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a1611a2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e69190612b6d565b60405180910390a35050565b600a80546115ff90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461162b90613195565b80156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b505050505081565b600d5481565b611691848484611af1565b6116b08373ffffffffffffffffffffffffffffffffffffffff16612318565b80156116c557506116c38484848461233b565b155b156116fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b6060611717826119e0565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906135e5565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361179957600a60405160200161178391906136a4565b60405160208183030381529060405290506117c7565b60096117a48361248b565b6040516020016117b5929190613738565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661189f611057565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90613212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906137d9565b60405180910390fd5b61196d81612234565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119eb611ae8565b111580156119fa575060005482105b8015611a27575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611afc82611fa5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b88611a2e565b73ffffffffffffffffffffffffffffffffffffffff161480611bb75750611bb685611bb1611a2e565b6117e5565b5b80611bfc5750611bc5611a2e565b73ffffffffffffffffffffffffffffffffffffffff16611be484610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c9b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca885858560016125eb565b611cb460008487611a36565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f33576000548214611f3257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9e85858560016125f1565b5050505050565b611fad612a59565b600082905080611fbb611ae8565b11158015611fca575060005481105b156121fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120df57809250505061222f565b5b6001156121fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f557809250505061222f565b6120e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123148282604051806020016040528060008152506125f7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612361611a2e565b8786866040518563ffffffff1660e01b8152600401612383949392919061384e565b6020604051808303816000875af19250505080156123bf57506040513d601f19601f820116820180604052508101906123bc91906138af565b60015b612438573d80600081146123ef576040519150601f19603f3d011682016040523d82523d6000602084013e6123f4565b606091505b506000815103612430576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e6565b600082905060005b600082146125045780806124ed906138dc565b915050600a826124fd9190613953565b91506124da565b60008167ffffffffffffffff8111156125205761251f612df5565b5b6040519080825280601f01601f1916602001820160405280156125525781602001600182028036833780820191505090505b5090505b600085146125df5760018261256b9190613984565b9150600a8561257a91906139b8565b60306125869190613313565b60f81b81838151811061259c5761259b6139e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125d89190613953565b9450612556565b8093505050505b919050565b50505050565b50505050565b6126048383836001612609565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612675576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036126af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126bc60008683876125eb565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561288657506128858773ffffffffffffffffffffffffffffffffffffffff16612318565b5b1561294b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fb600088848060010195508861233b565b612931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361288c57826000541461294657600080fd5b6129b6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361294c575b8160008190555050506129cc60008683876125f1565b5050505050565b8280546129df90613195565b90600052602060002090601f016020900481019282612a015760008555612a48565b82601f10612a1a57805160ff1916838001178555612a48565b82800160010185558215612a48579182015b82811115612a47578251825591602001919060010190612a2c565b5b509050612a559190612a9c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ab5576000816000905550600101612a9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b0281612acd565b8114612b0d57600080fd5b50565b600081359050612b1f81612af9565b92915050565b600060208284031215612b3b57612b3a612ac3565b5b6000612b4984828501612b10565b91505092915050565b60008115159050919050565b612b6781612b52565b82525050565b6000602082019050612b826000830184612b5e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bc2578082015181840152602081019050612ba7565b83811115612bd1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bf382612b88565b612bfd8185612b93565b9350612c0d818560208601612ba4565b612c1681612bd7565b840191505092915050565b60006020820190508181036000830152612c3b8184612be8565b905092915050565b6000819050919050565b612c5681612c43565b8114612c6157600080fd5b50565b600081359050612c7381612c4d565b92915050565b600060208284031215612c8f57612c8e612ac3565b5b6000612c9d84828501612c64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cd182612ca6565b9050919050565b612ce181612cc6565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b612d0b81612cc6565b8114612d1657600080fd5b50565b600081359050612d2881612d02565b92915050565b60008060408385031215612d4557612d44612ac3565b5b6000612d5385828601612d19565b9250506020612d6485828601612c64565b9150509250929050565b612d7781612c43565b82525050565b6000602082019050612d926000830184612d6e565b92915050565b600080600060608486031215612db157612db0612ac3565b5b6000612dbf86828701612d19565b9350506020612dd086828701612d19565b9250506040612de186828701612c64565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2d82612bd7565b810181811067ffffffffffffffff82111715612e4c57612e4b612df5565b5b80604052505050565b6000612e5f612ab9565b9050612e6b8282612e24565b919050565b600067ffffffffffffffff821115612e8b57612e8a612df5565b5b612e9482612bd7565b9050602081019050919050565b82818337600083830152505050565b6000612ec3612ebe84612e70565b612e55565b905082815260208101848484011115612edf57612ede612df0565b5b612eea848285612ea1565b509392505050565b600082601f830112612f0757612f06612deb565b5b8135612f17848260208601612eb0565b91505092915050565b600060208284031215612f3657612f35612ac3565b5b600082013567ffffffffffffffff811115612f5457612f53612ac8565b5b612f6084828501612ef2565b91505092915050565b600060208284031215612f7f57612f7e612ac3565b5b6000612f8d84828501612d19565b91505092915050565b612f9f81612b52565b8114612faa57600080fd5b50565b600081359050612fbc81612f96565b92915050565b60008060408385031215612fd957612fd8612ac3565b5b6000612fe785828601612d19565b9250506020612ff885828601612fad565b9150509250929050565b600067ffffffffffffffff82111561301d5761301c612df5565b5b61302682612bd7565b9050602081019050919050565b600061304661304184613002565b612e55565b90508281526020810184848401111561306257613061612df0565b5b61306d848285612ea1565b509392505050565b600082601f83011261308a57613089612deb565b5b813561309a848260208601613033565b91505092915050565b600080600080608085870312156130bd576130bc612ac3565b5b60006130cb87828801612d19565b94505060206130dc87828801612d19565b93505060406130ed87828801612c64565b925050606085013567ffffffffffffffff81111561310e5761310d612ac8565b5b61311a87828801613075565b91505092959194509250565b6000806040838503121561313d5761313c612ac3565b5b600061314b85828601612d19565b925050602061315c85828601612d19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ad57607f821691505b6020821081036131c0576131bf613166565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131fc602083612b93565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b600081905092915050565b50565b600061324d600083613232565b91506132588261323d565b600082019050919050565b600061326e82613240565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006132ae601083612b93565b91506132b982613278565b602082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061331e82612c43565b915061332983612c43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561335e5761335d6132e4565b5b828201905092915050565b600061337482612c43565b915061337f83612c43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133b8576133b76132e4565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006133f9601d83612b93565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f4e6f206d6f7265204d656f7765727a0000000000000000000000000000000000600082015250565b6000613465600f83612b93565b91506134708261342f565b602082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b60006134d1601783612b93565b91506134dc8261349b565b602082019050919050565b60006020820190508181036000830152613500816134c4565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061353d601383612b93565b915061354882613507565b602082019050919050565b6000602082019050818103600083015261356c81613530565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135cf602f83612b93565b91506135da82613573565b604082019050919050565b600060208201905081810360008301526135fe816135c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461363281613195565b61363c8186613605565b9450600182166000811461365757600181146136685761369b565b60ff1983168652818601935061369b565b61367185613610565b60005b8381101561369357815481890152600182019150602081019050613674565b838801955050505b50505092915050565b60006136b08284613625565b915081905092915050565b60006136c682612b88565b6136d08185613605565b93506136e0818560208601612ba4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613722600583613605565b915061372d826136ec565b600582019050919050565b60006137448285613625565b915061375082846136bb565b915061375b82613715565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c3602683612b93565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613820826137f9565b61382a8185613804565b935061383a818560208601612ba4565b61384381612bd7565b840191505092915050565b60006080820190506138636000830187612cd8565b6138706020830186612cd8565b61387d6040830185612d6e565b818103606083015261388f8184613815565b905095945050505050565b6000815190506138a981612af9565b92915050565b6000602082840312156138c5576138c4612ac3565b5b60006138d38482850161389a565b91505092915050565b60006138e782612c43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613919576139186132e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061395e82612c43565b915061396983612c43565b92508261397957613978613924565b5b828204905092915050565b600061398f82612c43565b915061399a83612c43565b9250828210156139ad576139ac6132e4565b5b828203905092915050565b60006139c382612c43565b91506139ce83612c43565b9250826139de576139dd613924565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fcc7eeddd8dd6d709fbbc3b6227548220828c694f9eb14aac5499a91a65d4f3e64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d1239730146106fc578063d5abeb0114610727578063e985e9c514610752578063f2fde38b1461078f578063f968adbe146107b857610204565b8063a702735714610640578063b88d4fde1461066b578063bc96832614610694578063c87b56dd146106bf57610204565b806395d89b41116100e757806395d89b411461057a578063a035b1fe146105a5578063a0712d68146105d0578063a22cb465146105ec578063a45ba8e71461061557610204565b80637ba5e621146104e65780638da5cb5b146104fd57806391b7f5ed1461052857806392910eec1461055157610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040157806361b8ce8c1461042a5780636352211e1461045557806370a0823114610492578063715018a6146104cf57610204565b80633ccfd60b1461036d57806342842e0e146103845780634fdd43cb146103ad57806351830227146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063333e44e61461032b5780633bd649681461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612b25565b6107e3565b60405161023d9190612b6d565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b6040516102689190612c21565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612c79565b610957565b6040516102a59190612ce7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612d2e565b6109d3565b005b3480156102e357600080fd5b506102ec610add565b6040516102f99190612d7d565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612d98565b610af4565b005b34801561033757600080fd5b50610340610b04565b60405161034d9190612d7d565b60405180910390f35b34801561036257600080fd5b5061036b610b0a565b005b34801561037957600080fd5b50610382610bb2565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612d98565b610cdd565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612f20565b610cfd565b005b3480156103e257600080fd5b506103eb610d93565b6040516103f89190612b6d565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612f20565b610da6565b005b34801561043657600080fd5b5061043f610e3c565b60405161044c9190612d7d565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612c79565b610e42565b6040516104899190612ce7565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612f69565b610e58565b6040516104c69190612d7d565b60405180910390f35b3480156104db57600080fd5b506104e4610f27565b005b3480156104f257600080fd5b506104fb610faf565b005b34801561050957600080fd5b50610512611057565b60405161051f9190612ce7565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612c79565b611081565b005b34801561055d57600080fd5b5061057860048036038101906105739190612c79565b611107565b005b34801561058657600080fd5b5061058f61118d565b60405161059c9190612c21565b60405180910390f35b3480156105b157600080fd5b506105ba61121f565b6040516105c79190612d7d565b60405180910390f35b6105ea60048036038101906105e59190612c79565b611225565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612fc2565b61147b565b005b34801561062157600080fd5b5061062a6115f2565b6040516106379190612c21565b60405180910390f35b34801561064c57600080fd5b50610655611680565b6040516106629190612d7d565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906130a3565b611686565b005b3480156106a057600080fd5b506106a9611702565b6040516106b69190612d7d565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612c79565b61170c565b6040516106f39190612c21565b60405180910390f35b34801561070857600080fd5b506107116117cc565b60405161071e9190612b6d565b60405180910390f35b34801561073357600080fd5b5061073c6117df565b6040516107499190612d7d565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613126565b6117e5565b6040516107869190612b6d565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612f69565b611879565b005b3480156107c457600080fd5b506107cd611970565b6040516107da9190612d7d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611976565b5b9050919050565b6060600280546108d490613195565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613195565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610962826119e0565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109de82610e42565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a64611a2e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a965750610a9481610a8f611a2e565b6117e5565b155b15610acd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad8838383611a36565b505050565b6000610ae7611ae8565b6001546000540303905090565b610aff838383611af1565b505050565b600e5481565b610b12611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610b30611057565b73ffffffffffffffffffffffffffffffffffffffff1614610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90613212565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bba611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610bd8611057565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613212565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c5490613263565b60006040518083038185875af1925050503d8060008114610c91576040519150601f19603f3d011682016040523d82523d6000602084013e610c96565b606091505b5050905080610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906132c4565b60405180910390fd5b50565b610cf883838360405180602001604052806000815250611686565b505050565b610d05611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610d23611057565b73ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613212565b60405180910390fd5b80600a9080519060200190610d8f9291906129d3565b5050565b601160019054906101000a900460ff1681565b610dae611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610dcc611057565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613212565b60405180910390fd5b8060099080519060200190610e389291906129d3565b5050565b60105481565b6000610e4d82611fa5565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f2f611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610f4d611057565b73ffffffffffffffffffffffffffffffffffffffff1614610fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9a90613212565b60405180910390fd5b610fad6000612234565b565b610fb7611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610fd5611057565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290613212565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611089611a2e565b73ffffffffffffffffffffffffffffffffffffffff166110a7611057565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490613212565b60405180910390fd5b80600b8190555050565b61110f611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661112d611057565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90613212565b60405180910390fd5b80600e8190555050565b60606003805461119c90613195565b80601f01602080910402602001604051908101604052809291908181526020018280546111c890613195565b80156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461123d9190613313565b83611246610add565b6112509190613313565b1080156112a95750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112a69190613313565b11155b905080156112ba57600091506113f6565b600b54836112c89190613369565b34101561130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061340f565b60405180910390fd5b600f5483611316610add565b6113209190613313565b1115611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061347b565b60405180910390fd5b601160009054906101000a900460ff166113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a7906134e7565b60405180910390fd5b600c548311156113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613553565b60405180910390fd5b5b80156114535782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144b9190613313565b925050819055505b61145d33846122fa565b826010600082825461146f9190613313565b92505081905550505050565b611483611a2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f4611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a1611a2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e69190612b6d565b60405180910390a35050565b600a80546115ff90613195565b80601f016020809104026020016040519081016040528092919081815260200182805461162b90613195565b80156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b505050505081565b600d5481565b611691848484611af1565b6116b08373ffffffffffffffffffffffffffffffffffffffff16612318565b80156116c557506116c38484848461233b565b155b156116fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b6060611717826119e0565b611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906135e5565b60405180910390fd5b60001515601160019054906101000a900460ff1615150361179957600a60405160200161178391906136a4565b60405160208183030381529060405290506117c7565b60096117a48361248b565b6040516020016117b5929190613738565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661189f611057565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90613212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195b906137d9565b60405180910390fd5b61196d81612234565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119eb611ae8565b111580156119fa575060005482105b8015611a27575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611afc82611fa5565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b67576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b88611a2e565b73ffffffffffffffffffffffffffffffffffffffff161480611bb75750611bb685611bb1611a2e565b6117e5565b5b80611bfc5750611bc5611a2e565b73ffffffffffffffffffffffffffffffffffffffff16611be484610957565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c35576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c9b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca885858560016125eb565b611cb460008487611a36565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f33576000548214611f3257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f9e85858560016125f1565b5050505050565b611fad612a59565b600082905080611fbb611ae8565b11158015611fca575060005481105b156121fd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121fb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120df57809250505061222f565b5b6001156121fa57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f557809250505061222f565b6120e0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123148282604051806020016040528060008152506125f7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612361611a2e565b8786866040518563ffffffff1660e01b8152600401612383949392919061384e565b6020604051808303816000875af19250505080156123bf57506040513d601f19601f820116820180604052508101906123bc91906138af565b60015b612438573d80600081146123ef576040519150601f19603f3d011682016040523d82523d6000602084013e6123f4565b606091505b506000815103612430576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125e6565b600082905060005b600082146125045780806124ed906138dc565b915050600a826124fd9190613953565b91506124da565b60008167ffffffffffffffff8111156125205761251f612df5565b5b6040519080825280601f01601f1916602001820160405280156125525781602001600182028036833780820191505090505b5090505b600085146125df5760018261256b9190613984565b9150600a8561257a91906139b8565b60306125869190613313565b60f81b81838151811061259c5761259b6139e9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125d89190613953565b9450612556565b8093505050505b919050565b50505050565b50505050565b6126048383836001612609565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612675576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036126af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126bc60008683876125eb565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561288657506128858773ffffffffffffffffffffffffffffffffffffffff16612318565b5b1561294b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128fb600088848060010195508861233b565b612931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361288c57826000541461294657600080fd5b6129b6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361294c575b8160008190555050506129cc60008683876125f1565b5050505050565b8280546129df90613195565b90600052602060002090601f016020900481019282612a015760008555612a48565b82601f10612a1a57805160ff1916838001178555612a48565b82800160010185558215612a48579182015b82811115612a47578251825591602001919060010190612a2c565b5b509050612a559190612a9c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ab5576000816000905550600101612a9d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b0281612acd565b8114612b0d57600080fd5b50565b600081359050612b1f81612af9565b92915050565b600060208284031215612b3b57612b3a612ac3565b5b6000612b4984828501612b10565b91505092915050565b60008115159050919050565b612b6781612b52565b82525050565b6000602082019050612b826000830184612b5e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bc2578082015181840152602081019050612ba7565b83811115612bd1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bf382612b88565b612bfd8185612b93565b9350612c0d818560208601612ba4565b612c1681612bd7565b840191505092915050565b60006020820190508181036000830152612c3b8184612be8565b905092915050565b6000819050919050565b612c5681612c43565b8114612c6157600080fd5b50565b600081359050612c7381612c4d565b92915050565b600060208284031215612c8f57612c8e612ac3565b5b6000612c9d84828501612c64565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cd182612ca6565b9050919050565b612ce181612cc6565b82525050565b6000602082019050612cfc6000830184612cd8565b92915050565b612d0b81612cc6565b8114612d1657600080fd5b50565b600081359050612d2881612d02565b92915050565b60008060408385031215612d4557612d44612ac3565b5b6000612d5385828601612d19565b9250506020612d6485828601612c64565b9150509250929050565b612d7781612c43565b82525050565b6000602082019050612d926000830184612d6e565b92915050565b600080600060608486031215612db157612db0612ac3565b5b6000612dbf86828701612d19565b9350506020612dd086828701612d19565b9250506040612de186828701612c64565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2d82612bd7565b810181811067ffffffffffffffff82111715612e4c57612e4b612df5565b5b80604052505050565b6000612e5f612ab9565b9050612e6b8282612e24565b919050565b600067ffffffffffffffff821115612e8b57612e8a612df5565b5b612e9482612bd7565b9050602081019050919050565b82818337600083830152505050565b6000612ec3612ebe84612e70565b612e55565b905082815260208101848484011115612edf57612ede612df0565b5b612eea848285612ea1565b509392505050565b600082601f830112612f0757612f06612deb565b5b8135612f17848260208601612eb0565b91505092915050565b600060208284031215612f3657612f35612ac3565b5b600082013567ffffffffffffffff811115612f5457612f53612ac8565b5b612f6084828501612ef2565b91505092915050565b600060208284031215612f7f57612f7e612ac3565b5b6000612f8d84828501612d19565b91505092915050565b612f9f81612b52565b8114612faa57600080fd5b50565b600081359050612fbc81612f96565b92915050565b60008060408385031215612fd957612fd8612ac3565b5b6000612fe785828601612d19565b9250506020612ff885828601612fad565b9150509250929050565b600067ffffffffffffffff82111561301d5761301c612df5565b5b61302682612bd7565b9050602081019050919050565b600061304661304184613002565b612e55565b90508281526020810184848401111561306257613061612df0565b5b61306d848285612ea1565b509392505050565b600082601f83011261308a57613089612deb565b5b813561309a848260208601613033565b91505092915050565b600080600080608085870312156130bd576130bc612ac3565b5b60006130cb87828801612d19565b94505060206130dc87828801612d19565b93505060406130ed87828801612c64565b925050606085013567ffffffffffffffff81111561310e5761310d612ac8565b5b61311a87828801613075565b91505092959194509250565b6000806040838503121561313d5761313c612ac3565b5b600061314b85828601612d19565b925050602061315c85828601612d19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131ad57607f821691505b6020821081036131c0576131bf613166565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131fc602083612b93565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b600081905092915050565b50565b600061324d600083613232565b91506132588261323d565b600082019050919050565b600061326e82613240565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006132ae601083612b93565b91506132b982613278565b602082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061331e82612c43565b915061332983612c43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561335e5761335d6132e4565b5b828201905092915050565b600061337482612c43565b915061337f83612c43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133b8576133b76132e4565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b60006133f9601d83612b93565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b7f4e6f206d6f7265204d656f7765727a0000000000000000000000000000000000600082015250565b6000613465600f83612b93565b91506134708261342f565b602082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b60006134d1601783612b93565b91506134dc8261349b565b602082019050919050565b60006020820190508181036000830152613500816134c4565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061353d601383612b93565b915061354882613507565b602082019050919050565b6000602082019050818103600083015261356c81613530565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135cf602f83612b93565b91506135da82613573565b604082019050919050565b600060208201905081810360008301526135fe816135c2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461363281613195565b61363c8186613605565b9450600182166000811461365757600181146136685761369b565b60ff1983168652818601935061369b565b61367185613610565b60005b8381101561369357815481890152600182019150602081019050613674565b838801955050505b50505092915050565b60006136b08284613625565b915081905092915050565b60006136c682612b88565b6136d08185613605565b93506136e0818560208601612ba4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613722600583613605565b915061372d826136ec565b600582019050919050565b60006137448285613625565b915061375082846136bb565b915061375b82613715565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c3602683612b93565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613820826137f9565b61382a8185613804565b935061383a818560208601612ba4565b61384381612bd7565b840191505092915050565b60006080820190506138636000830187612cd8565b6138706020830186612cd8565b61387d6040830185612d6e565b818103606083015261388f8184613815565b905095945050505050565b6000815190506138a981612af9565b92915050565b6000602082840312156138c5576138c4612ac3565b5b60006138d38482850161389a565b91505092915050565b60006138e782612c43565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613919576139186132e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061395e82612c43565b915061396983612c43565b92508261397957613978613924565b5b828204905092915050565b600061398f82612c43565b915061399a83612c43565b9250828210156139ad576139ac6132e4565b5b828203905092915050565b60006139c382612c43565b91506139ce83612c43565b9250826139de576139dd613924565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fcc7eeddd8dd6d709fbbc3b6227548220828c694f9eb14aac5499a91a65d4f3e64736f6c634300080e0033

Deployed Bytecode Sourcemap

62583:3016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46344:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49457:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50960:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50523:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45593:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51825:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62861:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65028:78;;;;;;;;;;;;;:::i;:::-;;65390:206;;;;;;;;;;;;;:::i;:::-;;52066:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64682:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63012:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64586:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62941:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49265:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46713:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4953:103;;;;;;;;;;;;;:::i;:::-;;65114:84;;;;;;;;;;;;;:::i;:::-;;4302:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64928:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64825:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49626:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62737:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63289:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51236:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62697:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62817:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52322:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65206:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64113:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62972:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62901;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51594:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5211:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62781:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46344:305;46446:4;46498:25;46483:40;;;:11;:40;;;;:105;;;;46555:33;46540:48;;;:11;:48;;;;46483:105;:158;;;;46605:36;46629:11;46605:23;:36::i;:::-;46483:158;46463:178;;46344:305;;;:::o;49457:100::-;49511:13;49544:5;49537:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49457:100;:::o;50960:204::-;51028:7;51053:16;51061:7;51053;:16::i;:::-;51048:64;;51078:34;;;;;;;;;;;;;;51048:64;51132:15;:24;51148:7;51132:24;;;;;;;;;;;;;;;;;;;;;51125:31;;50960:204;;;:::o;50523:371::-;50596:13;50612:24;50628:7;50612:15;:24::i;:::-;50596:40;;50657:5;50651:11;;:2;:11;;;50647:48;;50671:24;;;;;;;;;;;;;;50647:48;50728:5;50712:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;50738:37;50755:5;50762:12;:10;:12::i;:::-;50738:16;:37::i;:::-;50737:38;50712:63;50708:138;;;50799:35;;;;;;;;;;;;;;50708:138;50858:28;50867:2;50871:7;50880:5;50858:8;:28::i;:::-;50585:309;50523:371;;:::o;45593:303::-;45637:7;45862:15;:13;:15::i;:::-;45847:12;;45831:13;;:28;:46;45824:53;;45593:303;:::o;51825:170::-;51959:28;51969:4;51975:2;51979:7;51959:9;:28::i;:::-;51825:170;;;:::o;62861:31::-;;;;:::o;65028:78::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65090:8:::1;;;;;;;;;;;65089:9;65078:8;;:20;;;;;;;;;;;;;;;;;;65028:78::o:0;65390:206::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65441:12:::1;65467:10;65459:24;;65505:21;65459:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65440:101;;;65560:7;65552:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65429:167;65390:206::o:0;52066:185::-;52204:39;52221:4;52227:2;52231:7;52204:39;;;;;;;;;;;;:16;:39::i;:::-;52066:185;;;:::o;64682:135::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64791:18:::1;64771:17;:38;;;;;;;;;;;;:::i;:::-;;64682:135:::0;:::o;63012:27::-;;;;;;;;;;;;;:::o;64586:88::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64663:3:::1;64653:7;:13;;;;;;;;;;;;:::i;:::-;;64586:88:::0;:::o;62941:22::-;;;;:::o;49265:125::-;49329:7;49356:21;49369:7;49356:12;:21::i;:::-;:26;;;49349:33;;49265:125;;;:::o;46713:206::-;46777:7;46818:1;46801:19;;:5;:19;;;46797:60;;46829:28;;;;;;;;;;;;;;46797:60;46883:12;:19;46896:5;46883:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;46875:36;;46868:43;;46713:206;;;:::o;4953:103::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5018:30:::1;5045:1;5018:18;:30::i;:::-;4953:103::o:0;65114:84::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65179:11:::1;;;;;;;;;;;65178:12;65164:11;;:26;;;;;;;;;;;;;;;;;;65114:84::o:0;4302:87::-;4348:7;4375:6;;;;;;;;;;;4368:13;;4302:87;:::o;64928:92::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65003:9:::1;64995:5;:17;;;;64928:92:::0;:::o;64825:95::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64906:6:::1;64894:9;:18;;;;64825:95:::0;:::o;49626:104::-;49682:13;49715:7;49708:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49626:104;:::o;62737:35::-;;;;:::o;63289:700::-;63344:12;63359:5;;63344:20;;63373:11;63432:1;63420:9;;:13;;;;:::i;:::-;63412:5;63396:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;63395:109;;;;;63487:16;;63478:5;63446:17;:29;63464:10;63446:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;63395:109;63373:132;;63520:6;63516:323;;;63544:1;63537:8;;63516:323;;;63606:5;;63598;:13;;;;:::i;:::-;63585:9;:26;;63577:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63687:9;;63678:5;63662:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;63654:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;63733:11;;;;;;;;;;;63725:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;63798:8;;63789:5;:17;;63781:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;63516:323;63853:6;63849:72;;;63906:5;63873:17;:29;63891:10;63873:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;63849:72;63930:28;63940:10;63952:5;63930:9;:28::i;:::-;63976:5;63966:6;;:15;;;;;;;:::i;:::-;;;;;;;;63335:654;;63289:700;:::o;51236:287::-;51347:12;:10;:12::i;:::-;51335:24;;:8;:24;;;51331:54;;51368:17;;;;;;;;;;;;;;51331:54;51443:8;51398:18;:32;51417:12;:10;:12::i;:::-;51398:32;;;;;;;;;;;;;;;:42;51431:8;51398:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;51496:8;51467:48;;51482:12;:10;:12::i;:::-;51467:48;;;51506:8;51467:48;;;;;;:::i;:::-;;;;;;;;51236:287;;:::o;62697:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62817:35::-;;;;:::o;52322:369::-;52489:28;52499:4;52505:2;52509:7;52489:9;:28::i;:::-;52532:15;:2;:13;;;:15::i;:::-;:76;;;;;52552:56;52583:4;52589:2;52593:7;52602:5;52552:30;:56::i;:::-;52551:57;52532:76;52528:156;;;52632:40;;;;;;;;;;;;;;52528:156;52322:369;;;;:::o;65206:75::-;65247:4;65267:6;;65260:13;;65206:75;:::o;64113:465::-;64231:13;64284:16;64292:7;64284;:16::i;:::-;64262:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;64404:5;64392:17;;:8;;;;;;;;;;;:17;;;64388:97;;64454:17;64437:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;64423:50;;;;64388:97;64532:7;64541:18;:7;:16;:18::i;:::-;64515:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64501:69;;64113:465;;;;:::o;62972:31::-;;;;;;;;;;;;;:::o;62901:::-;;;;:::o;51594:164::-;51691:4;51715:18;:25;51734:5;51715:25;;;;;;;;;;;;;;;:35;51741:8;51715:35;;;;;;;;;;;;;;;;;;;;;;;;;51708:42;;51594:164;;;;:::o;5211:201::-;4533:12;:10;:12::i;:::-;4522:23;;:7;:5;:7::i;:::-;:23;;;4514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5320:1:::1;5300:22;;:8;:22;;::::0;5292:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5376:28;5395:8;5376:18;:28::i;:::-;5211:201:::0;:::o;62781:27::-;;;;:::o;16677:157::-;16762:4;16801:25;16786:40;;;:11;:40;;;;16779:47;;16677:157;;;:::o;52946:174::-;53003:4;53046:7;53027:15;:13;:15::i;:::-;:26;;:53;;;;;53067:13;;53057:7;:23;53027:53;:85;;;;;53085:11;:20;53097:7;53085:20;;;;;;;;;;;:27;;;;;;;;;;;;53084:28;53027:85;53020:92;;52946:174;;;:::o;3647:98::-;3700:7;3727:10;3720:17;;3647:98;:::o;60857:196::-;60999:2;60972:15;:24;60988:7;60972:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;61037:7;61033:2;61017:28;;61026:5;61017:28;;;;;;;;;;;;60857:196;;;:::o;65289:93::-;65346:7;65373:1;65366:8;;65289:93;:::o;55800:2130::-;55915:35;55953:21;55966:7;55953:12;:21::i;:::-;55915:59;;56013:4;55991:26;;:13;:18;;;:26;;;55987:67;;56026:28;;;;;;;;;;;;;;55987:67;56067:22;56109:4;56093:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;56130:36;56147:4;56153:12;:10;:12::i;:::-;56130:16;:36::i;:::-;56093:73;:126;;;;56207:12;:10;:12::i;:::-;56183:36;;:20;56195:7;56183:11;:20::i;:::-;:36;;;56093:126;56067:153;;56238:17;56233:66;;56264:35;;;;;;;;;;;;;;56233:66;56328:1;56314:16;;:2;:16;;;56310:52;;56339:23;;;;;;;;;;;;;;56310:52;56375:43;56397:4;56403:2;56407:7;56416:1;56375:21;:43::i;:::-;56483:35;56500:1;56504:7;56513:4;56483:8;:35::i;:::-;56844:1;56814:12;:18;56827:4;56814:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56888:1;56860:12;:16;56873:2;56860:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56906:31;56940:11;:20;56952:7;56940:20;;;;;;;;;;;56906:54;;56991:2;56975:8;:13;;;:18;;;;;;;;;;;;;;;;;;57041:15;57008:8;:23;;;:49;;;;;;;;;;;;;;;;;;57309:19;57341:1;57331:7;:11;57309:33;;57357:31;57391:11;:24;57403:11;57391:24;;;;;;;;;;;57357:58;;57459:1;57434:27;;:8;:13;;;;;;;;;;;;:27;;;57430:384;;57644:13;;57629:11;:28;57625:174;;57698:4;57682:8;:13;;;:20;;;;;;;;;;;;;;;;;;57751:13;:28;;;57725:8;:23;;;:54;;;;;;;;;;;;;;;;;;57625:174;57430:384;56789:1036;;;57861:7;57857:2;57842:27;;57851:4;57842:27;;;;;;;;;;;;57880:42;57901:4;57907:2;57911:7;57920:1;57880:20;:42::i;:::-;55904:2026;;55800:2130;;;:::o;48094:1109::-;48156:21;;:::i;:::-;48190:12;48205:7;48190:22;;48273:4;48254:15;:13;:15::i;:::-;:23;;:47;;;;;48288:13;;48281:4;:20;48254:47;48250:886;;;48322:31;48356:11;:17;48368:4;48356:17;;;;;;;;;;;48322:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48397:9;:16;;;48392:729;;48468:1;48442:28;;:9;:14;;;:28;;;48438:101;;48506:9;48499:16;;;;;;48438:101;48841:261;48848:4;48841:261;;;48881:6;;;;;;;;48926:11;:17;48938:4;48926:17;;;;;;;;;;;48914:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000:1;48974:28;;:9;:14;;;:28;;;48970:109;;49042:9;49035:16;;;;;;48970:109;48841:261;;;48392:729;48303:833;48250:886;49164:31;;;;;;;;;;;;;;48094:1109;;;;:::o;5572:191::-;5646:16;5665:6;;;;;;;;;;;5646:25;;5691:8;5682:6;;:17;;;;;;;;;;;;;;;;;;5746:8;5715:40;;5736:8;5715:40;;;;;;;;;;;;5635:128;5572:191;:::o;53128:104::-;53197:27;53207:2;53211:8;53197:27;;;;;;;;;;;;:9;:27::i;:::-;53128:104;;:::o;6876:326::-;6936:4;7193:1;7171:7;:19;;;:23;7164:30;;6876:326;;;:::o;61545:667::-;61708:4;61745:2;61729:36;;;61766:12;:10;:12::i;:::-;61780:4;61786:7;61795:5;61729:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61725:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61980:1;61963:6;:13;:18;61959:235;;62009:40;;;;;;;;;;;;;;61959:235;62152:6;62146:13;62137:6;62133:2;62129:15;62122:38;61725:480;61858:45;;;61848:55;;;:6;:55;;;;61841:62;;;61545:667;;;;;;:::o;1321:723::-;1377:13;1607:1;1598:5;:10;1594:53;;1625:10;;;;;;;;;;;;;;;;;;;;;1594:53;1657:12;1672:5;1657:20;;1688:14;1713:78;1728:1;1720:4;:9;1713:78;;1746:8;;;;;:::i;:::-;;;;1777:2;1769:10;;;;;:::i;:::-;;;1713:78;;;1801:19;1833:6;1823:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1801:39;;1851:154;1867:1;1858:5;:10;1851:154;;1895:1;1885:11;;;;;:::i;:::-;;;1962:2;1954:5;:10;;;;:::i;:::-;1941:2;:24;;;;:::i;:::-;1928:39;;1911:6;1918;1911:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1991:2;1982:11;;;;;:::i;:::-;;;1851:154;;;2029:6;2015:21;;;;;1321:723;;;;:::o;62220:159::-;;;;;:::o;62387:158::-;;;;;:::o;53595:163::-;53718:32;53724:2;53728:8;53738:5;53745:4;53718:5;:32::i;:::-;53595:163;;;:::o;54017:1775::-;54156:20;54179:13;;54156:36;;54221:1;54207:16;;:2;:16;;;54203:48;;54232:19;;;;;;;;;;;;;;54203:48;54278:1;54266:8;:13;54262:44;;54288:18;;;;;;;;;;;;;;54262:44;54319:61;54349:1;54353:2;54357:12;54371:8;54319:21;:61::i;:::-;54692:8;54657:12;:16;54670:2;54657:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54756:8;54716:12;:16;54729:2;54716:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54815:2;54782:11;:25;54794:12;54782:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;54882:15;54832:11;:25;54844:12;54832:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;54915:20;54938:12;54915:35;;54965:11;54994:8;54979:12;:23;54965:37;;55023:4;:23;;;;;55031:15;:2;:13;;;:15::i;:::-;55023:23;55019:641;;;55067:314;55123:12;55119:2;55098:38;;55115:1;55098:38;;;;;;;;;;;;55164:69;55203:1;55207:2;55211:14;;;;;;55227:5;55164:30;:69::i;:::-;55159:174;;55269:40;;;;;;;;;;;;;;55159:174;55376:3;55360:12;:19;55067:314;;55462:12;55445:13;;:29;55441:43;;55476:8;;;55441:43;55019:641;;;55525:120;55581:14;;;;;;55577:2;55556:40;;55573:1;55556:40;;;;;;;;;;;;55640:3;55624:12;:19;55525:120;;55019:641;55690:12;55674:13;:28;;;;54632:1082;;55724:60;55753:1;55757:2;55761:12;55775:8;55724:20;:60::i;:::-;54145:1647;54017: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:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:166::-;14820:18;14816:1;14808:6;14804:14;14797:42;14680:166;:::o;14852:366::-;14994:3;15015:67;15079:2;15074:3;15015:67;:::i;:::-;15008:74;;15091:93;15180:3;15091:93;:::i;:::-;15209:2;15204:3;15200:12;15193:19;;14852:366;;;:::o;15224:419::-;15390:4;15428:2;15417:9;15413:18;15405:26;;15477:9;15471:4;15467:20;15463:1;15452:9;15448:17;15441:47;15505:131;15631:4;15505:131;:::i;:::-;15497:139;;15224:419;;;:::o;15649:180::-;15697:77;15694:1;15687:88;15794:4;15791:1;15784:15;15818:4;15815:1;15808:15;15835:305;15875:3;15894:20;15912:1;15894:20;:::i;:::-;15889:25;;15928:20;15946:1;15928:20;:::i;:::-;15923:25;;16082:1;16014:66;16010:74;16007:1;16004:81;16001:107;;;16088:18;;:::i;:::-;16001:107;16132:1;16129;16125:9;16118:16;;15835:305;;;;:::o;16146:348::-;16186:7;16209:20;16227:1;16209:20;:::i;:::-;16204:25;;16243:20;16261:1;16243:20;:::i;:::-;16238:25;;16431:1;16363:66;16359:74;16356:1;16353:81;16348:1;16341:9;16334:17;16330:105;16327:131;;;16438:18;;:::i;:::-;16327:131;16486:1;16483;16479:9;16468:20;;16146:348;;;;:::o;16500:179::-;16640:31;16636:1;16628:6;16624:14;16617:55;16500:179;:::o;16685:366::-;16827:3;16848:67;16912:2;16907:3;16848:67;:::i;:::-;16841:74;;16924:93;17013:3;16924:93;:::i;:::-;17042:2;17037:3;17033:12;17026:19;;16685:366;;;:::o;17057:419::-;17223:4;17261:2;17250:9;17246:18;17238:26;;17310:9;17304:4;17300:20;17296:1;17285:9;17281:17;17274:47;17338:131;17464:4;17338:131;:::i;:::-;17330:139;;17057:419;;;:::o;17482:165::-;17622:17;17618:1;17610:6;17606:14;17599:41;17482:165;:::o;17653:366::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:419::-;18191:4;18229:2;18218:9;18214:18;18206:26;;18278:9;18272:4;18268:20;18264:1;18253:9;18249:17;18242:47;18306:131;18432:4;18306:131;:::i;:::-;18298:139;;18025:419;;;:::o;18450:173::-;18590:25;18586:1;18578:6;18574:14;18567:49;18450:173;:::o;18629:366::-;18771:3;18792:67;18856:2;18851:3;18792:67;:::i;:::-;18785:74;;18868:93;18957:3;18868:93;:::i;:::-;18986:2;18981:3;18977:12;18970:19;;18629:366;;;:::o;19001:419::-;19167:4;19205:2;19194:9;19190:18;19182:26;;19254:9;19248:4;19244:20;19240:1;19229:9;19225:17;19218:47;19282:131;19408:4;19282:131;:::i;:::-;19274:139;;19001:419;;;:::o;19426:169::-;19566:21;19562:1;19554:6;19550:14;19543:45;19426:169;:::o;19601:366::-;19743:3;19764:67;19828:2;19823:3;19764:67;:::i;:::-;19757:74;;19840:93;19929:3;19840:93;:::i;:::-;19958:2;19953:3;19949:12;19942:19;;19601:366;;;:::o;19973:419::-;20139:4;20177:2;20166:9;20162:18;20154:26;;20226:9;20220:4;20216:20;20212:1;20201:9;20197:17;20190:47;20254:131;20380:4;20254:131;:::i;:::-;20246:139;;19973:419;;;:::o;20398:234::-;20538:34;20534:1;20526:6;20522:14;20515:58;20607:17;20602:2;20594:6;20590:15;20583:42;20398:234;:::o;20638:366::-;20780:3;20801:67;20865:2;20860:3;20801:67;:::i;:::-;20794:74;;20877:93;20966:3;20877:93;:::i;:::-;20995:2;20990:3;20986:12;20979:19;;20638:366;;;:::o;21010:419::-;21176:4;21214:2;21203:9;21199:18;21191:26;;21263:9;21257:4;21253:20;21249:1;21238:9;21234:17;21227:47;21291:131;21417:4;21291:131;:::i;:::-;21283:139;;21010:419;;;:::o;21435:148::-;21537:11;21574:3;21559:18;;21435:148;;;;:::o;21589:141::-;21638:4;21661:3;21653:11;;21684:3;21681:1;21674:14;21718:4;21715:1;21705:18;21697:26;;21589:141;;;:::o;21760:845::-;21863:3;21900:5;21894:12;21929:36;21955:9;21929:36;:::i;:::-;21981:89;22063:6;22058:3;21981:89;:::i;:::-;21974:96;;22101:1;22090:9;22086:17;22117:1;22112:137;;;;22263:1;22258:341;;;;22079:520;;22112:137;22196:4;22192:9;22181;22177:25;22172:3;22165:38;22232:6;22227:3;22223:16;22216:23;;22112:137;;22258:341;22325:38;22357:5;22325:38;:::i;:::-;22385:1;22399:154;22413:6;22410:1;22407:13;22399:154;;;22487:7;22481:14;22477:1;22472:3;22468:11;22461:35;22537:1;22528:7;22524:15;22513:26;;22435:4;22432:1;22428:12;22423:17;;22399:154;;;22582:6;22577:3;22573:16;22566:23;;22265:334;;22079:520;;21867:738;;21760:845;;;;:::o;22611:269::-;22740:3;22762:92;22850:3;22841:6;22762:92;:::i;:::-;22755:99;;22871:3;22864:10;;22611:269;;;;:::o;22886:377::-;22992:3;23020:39;23053:5;23020:39;:::i;:::-;23075:89;23157:6;23152:3;23075:89;:::i;:::-;23068:96;;23173:52;23218:6;23213:3;23206:4;23199:5;23195:16;23173:52;:::i;:::-;23250:6;23245:3;23241:16;23234:23;;22996:267;22886:377;;;;:::o;23269:155::-;23409:7;23405:1;23397:6;23393:14;23386:31;23269:155;:::o;23430:400::-;23590:3;23611:84;23693:1;23688:3;23611:84;:::i;:::-;23604:91;;23704:93;23793:3;23704:93;:::i;:::-;23822:1;23817:3;23813:11;23806:18;;23430:400;;;:::o;23836:695::-;24114:3;24136:92;24224:3;24215:6;24136:92;:::i;:::-;24129:99;;24245:95;24336:3;24327:6;24245:95;:::i;:::-;24238:102;;24357:148;24501:3;24357:148;:::i;:::-;24350:155;;24522:3;24515:10;;23836:695;;;;;:::o;24537:225::-;24677:34;24673:1;24665:6;24661:14;24654:58;24746:8;24741:2;24733:6;24729:15;24722:33;24537:225;:::o;24768:366::-;24910:3;24931:67;24995:2;24990:3;24931:67;:::i;:::-;24924:74;;25007:93;25096:3;25007:93;:::i;:::-;25125:2;25120:3;25116:12;25109:19;;24768:366;;;:::o;25140:419::-;25306:4;25344:2;25333:9;25329:18;25321:26;;25393:9;25387:4;25383:20;25379:1;25368:9;25364:17;25357:47;25421:131;25547:4;25421:131;:::i;:::-;25413:139;;25140:419;;;:::o;25565:98::-;25616:6;25650:5;25644:12;25634:22;;25565:98;;;:::o;25669:168::-;25752:11;25786:6;25781:3;25774:19;25826:4;25821:3;25817:14;25802:29;;25669:168;;;;:::o;25843:360::-;25929:3;25957:38;25989:5;25957:38;:::i;:::-;26011:70;26074:6;26069:3;26011:70;:::i;:::-;26004:77;;26090:52;26135:6;26130:3;26123:4;26116:5;26112:16;26090:52;:::i;:::-;26167:29;26189:6;26167:29;:::i;:::-;26162:3;26158:39;26151:46;;25933:270;25843:360;;;;:::o;26209:640::-;26404:4;26442:3;26431:9;26427:19;26419:27;;26456:71;26524:1;26513:9;26509:17;26500:6;26456:71;:::i;:::-;26537:72;26605:2;26594:9;26590:18;26581:6;26537:72;:::i;:::-;26619;26687:2;26676:9;26672:18;26663:6;26619:72;:::i;:::-;26738:9;26732:4;26728:20;26723:2;26712:9;26708:18;26701:48;26766:76;26837:4;26828:6;26766:76;:::i;:::-;26758:84;;26209:640;;;;;;;:::o;26855:141::-;26911:5;26942:6;26936:13;26927:22;;26958:32;26984:5;26958:32;:::i;:::-;26855:141;;;;:::o;27002:349::-;27071:6;27120:2;27108:9;27099:7;27095:23;27091:32;27088:119;;;27126:79;;:::i;:::-;27088:119;27246:1;27271:63;27326:7;27317:6;27306:9;27302:22;27271:63;:::i;:::-;27261:73;;27217:127;27002:349;;;;:::o;27357:233::-;27396:3;27419:24;27437:5;27419:24;:::i;:::-;27410:33;;27465:66;27458:5;27455:77;27452:103;;27535:18;;:::i;:::-;27452:103;27582:1;27575:5;27571:13;27564:20;;27357:233;;;:::o;27596:180::-;27644:77;27641:1;27634:88;27741:4;27738:1;27731:15;27765:4;27762:1;27755:15;27782:185;27822:1;27839:20;27857:1;27839:20;:::i;:::-;27834:25;;27873:20;27891:1;27873:20;:::i;:::-;27868:25;;27912:1;27902:35;;27917:18;;:::i;:::-;27902:35;27959:1;27956;27952:9;27947:14;;27782:185;;;;:::o;27973:191::-;28013:4;28033:20;28051:1;28033:20;:::i;:::-;28028:25;;28067:20;28085:1;28067:20;:::i;:::-;28062:25;;28106:1;28103;28100:8;28097:34;;;28111:18;;:::i;:::-;28097:34;28156:1;28153;28149:9;28141:17;;27973:191;;;;:::o;28170:176::-;28202:1;28219:20;28237:1;28219:20;:::i;:::-;28214:25;;28253:20;28271:1;28253:20;:::i;:::-;28248:25;;28292:1;28282:35;;28297:18;;:::i;:::-;28282:35;28338:1;28335;28331:9;28326:14;;28170:176;;;;:::o;28352:180::-;28400:77;28397:1;28390:88;28497:4;28494:1;28487:15;28521:4;28518:1;28511:15

Swarm Source

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