ETH Price: $2,711.95 (+6.89%)
Gas: 2 Gwei

Token

Pixel Vampiress Syndicate (PVS2)
 

Overview

Max Total Supply

365 PVS2

Holders

198

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
lukeichi.eth
Balance
1 PVS2
0x799CD72D86A6AA46876C2689A13637Cbe6ae89da
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:
PixelVampiressSyndicate

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-19
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File: contracts/PixelVampiresses.sol


pragma solidity ^0.8.4;

/*
    Pixel Vampiress Syndicate / 2022 / Companions
*/




contract PixelVampiressSyndicate is ERC721, Ownable {
    using Strings for uint256;

    string private _tokenBaseURI = "ipfs://QmZ8KfcXoA2Y3RUyBaWzTixp8R1g2SmSuAfvcVkUtUtEgX/";
    IERC721 private SVS2Contract = IERC721(0xEA745B608b2B61987785e87279Db586F328EB8Fc);
    uint256 private currentSupply;

    bool public live;
    bool public locked;
    
    constructor() ERC721("Pixel Vampiress Syndicate", "PVS2") {}
    
    modifier notLocked {
        require(!locked, "PVS2: Locked");
        _;
    }

    function retrieveOrMint(uint256[] calldata tokenIds) external {
        require(live, "PVS2: Claim Not Live");

        uint256 totalMinted;
        uint256 totalClaimed;
        for (uint256 i; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            if (SVS2Contract.ownerOf(tokenId) != msg.sender) continue;

            if (_exists(tokenId)) {
                totalClaimed++;
                _transfer(ownerOf(tokenId), msg.sender, tokenId);
            } else {
                totalMinted++;
                _mint(msg.sender, tokenId);
            }
        }

        require((totalMinted + totalClaimed) > 0, "PVS2: Cant claim none");
        currentSupply += totalMinted;
    }
    
    function toggle() external onlyOwner {
        live = !live;
    }

    function lock() external onlyOwner {
        locked = true;
    }

    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }

    function totalSupply() public view returns(uint256) {
        return currentSupply;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        require(SVS2Contract.ownerOf(tokenId) == to, "Not owner of Vampiress");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"retrieveOrMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001ca060a039805162000029916007916020909101906200014e565b50600880546001600160a01b03191673ea745b608b2b61987785e87279db586f328eb8fc1790553480156200005d57600080fd5b50604080518082018252601981527f506978656c2056616d7069726573732053796e64696361746500000000000000602080830191825283518085019094526004845263282b299960e11b908401528151919291620000bf916000916200014e565b508051620000d59060019060208401906200014e565b505050620000f2620000ec620000f860201b60201c565b620000fc565b62000231565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015c90620001f4565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600181811c908216806200020957607f821691505b602082108114156200022b57634e487b7160e01b600052602260045260246000fd5b50919050565b611a5f80620002416000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd1461029c578063cf309012146102af578063e985e9c5146102c1578063f2fde38b146102fd578063f83d08ba14610310578063fa0bfdd81461031857600080fd5b8063715018a6146102485780638da5cb5b14610250578063957aa58c1461026157806395d89b411461026e578063a22cb46514610276578063b88d4fde1461028957600080fd5b806323b872dd1161011557806323b872dd146101e157806340a3d246146101f457806342842e0e146101fc57806355f804b31461020f5780636352211e1461022257806370a082311461023557600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b61016561016036600461165a565b61032b565b60405190151581526020015b60405180910390f35b61018261037d565b6040516101719190611830565b6101a261019d3660046116ed565b61040f565b6040516001600160a01b039091168152602001610171565b6101cd6101c83660046115bf565b610436565b005b6009545b604051908152602001610171565b6101cd6101ef366004611475565b610551565b6101cd610582565b6101cd61020a366004611475565b61059e565b6101cd61021d366004611692565b6105b9565b6101a26102303660046116ed565b610614565b6101d36102433660046113fe565b610674565b6101cd6106fa565b6006546001600160a01b03166101a2565b600a546101659060ff1681565b61018261070e565b6101cd61028436600461158e565b61071d565b6101cd6102973660046114b5565b61072c565b6101826102aa3660046116ed565b610764565b600a5461016590610100900460ff1681565b6101656102cf36600461143d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd61030b3660046113fe565b6107fd565b6101cd610876565b6101cd6103263660046115ea565b61088f565b60006001600160e01b031982166380ac58cd60e01b148061035c57506001600160e01b03198216635b5e139f60e01b145b8061037757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461038c90611952565b80601f01602080910402602001604051908101604052809291908181526020018280546103b890611952565b80156104055780601f106103da57610100808354040283529160200191610405565b820191906000526020600020905b8154815290600101906020018083116103e857829003601f168201915b5050505050905090565b600061041a82610a82565b506000908152600460205260409020546001600160a01b031690565b600061044182610614565b9050806001600160a01b0316836001600160a01b031614156104b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104d057506104d081336102cf565b6105425760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104ab565b61054c8383610ae1565b505050565b61055b3382610b4f565b6105775760405162461bcd60e51b81526004016104ab90611895565b61054c838383610bce565b61058a610d75565b600a805460ff19811660ff90911615179055565b61054c8383836040518060200160405280600081525061072c565b6105c1610d75565b600a54610100900460ff16156106085760405162461bcd60e51b815260206004820152600c60248201526b141594cc8e88131bd8dad95960a21b60448201526064016104ab565b61054c60078383611365565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ab565b60006001600160a01b0382166106de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104ab565b506001600160a01b031660009081526003602052604090205490565b610702610d75565b61070c6000610dcf565b565b60606001805461038c90611952565b610728338383610e21565b5050565b6107363383610b4f565b6107525760405162461bcd60e51b81526004016104ab90611895565b61075e84848484610ef0565b50505050565b6000818152600260205260409020546060906001600160a01b03166107cb5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016104ab565b60076107d683610f23565b6040516020016107e792919061174d565b6040516020818303038152906040529050919050565b610805610d75565b6001600160a01b03811661086a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ab565b61087381610dcf565b50565b61087e610d75565b600a805461ff001916610100179055565b600a5460ff166108d85760405162461bcd60e51b8152602060048201526014602482015273505653323a20436c61696d204e6f74204c69766560601b60448201526064016104ab565b60008060005b83811015610a1357600085858381811061090857634e487b7160e01b600052603260045260246000fd5b6008546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e9060240160206040518083038186803b15801561095a57600080fd5b505afa15801561096e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109929190611421565b6001600160a01b0316146109a65750610a01565b6000818152600260205260409020546001600160a01b0316156109e857826109cd8161198d565b9350506109e36109dc82610614565b3383610bce565b6109ff565b836109f28161198d565b9450506109ff338261103d565b505b80610a0b8161198d565b9150506108de565b506000610a2082846118e3565b11610a655760405162461bcd60e51b8152602060048201526015602482015274505653323a2043616e7420636c61696d206e6f6e6560581b60448201526064016104ab565b8160096000828254610a7791906118e3565b909155505050505050565b6000818152600260205260409020546001600160a01b03166108735760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ab565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b1682610614565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b5b83610614565b9050806001600160a01b0316846001600160a01b03161480610ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610bc65750836001600160a01b0316610bbb8461040f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610be182610614565b6001600160a01b031614610c455760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104ab565b6001600160a01b038216610ca75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ab565b610cb283838361118b565b610cbd600082610ae1565b6001600160a01b0383166000908152600360205260408120805460019290610ce690849061190f565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d149084906118e3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461070c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ab565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610e835760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610efb848484610bce565b610f0784848484611258565b61075e5760405162461bcd60e51b81526004016104ab90611843565b606081610f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f715780610f5b8161198d565b9150610f6a9050600a836118fb565b9150610f4b565b60008167ffffffffffffffff811115610f9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fc4576020820181803683370190505b5090505b8415610bc657610fd960018361190f565b9150610fe6600a866119a8565b610ff19060306118e3565b60f81b81838151811061101457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611036600a866118fb565b9450610fc8565b6001600160a01b0382166110935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ab565b6000818152600260205260409020546001600160a01b0316156110f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ab565b6111046000838361118b565b6001600160a01b038216600090815260036020526040812080546001929061112d9084906118e3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6008546040516331a9108f60e11b8152600481018390526001600160a01b03848116921690636352211e9060240160206040518083038186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190611421565b6001600160a01b03161461054c5760405162461bcd60e51b81526020600482015260166024820152754e6f74206f776e6572206f662056616d70697265737360501b60448201526064016104ab565b60006001600160a01b0384163b1561135a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061129c9033908990889088906004016117f3565b602060405180830381600087803b1580156112b657600080fd5b505af19250505080156112e6575060408051601f3d908101601f191682019092526112e391810190611676565b60015b611340573d808015611314576040519150601f19603f3d011682016040523d82523d6000602084013e611319565b606091505b5080516113385760405162461bcd60e51b81526004016104ab90611843565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bc6565b506001949350505050565b82805461137190611952565b90600052602060002090601f01602090048101928261139357600085556113d9565b82601f106113ac5782800160ff198235161785556113d9565b828001600101855582156113d9579182015b828111156113d95782358255916020019190600101906113be565b506113e59291506113e9565b5090565b5b808211156113e557600081556001016113ea565b60006020828403121561140f578081fd5b813561141a816119fe565b9392505050565b600060208284031215611432578081fd5b815161141a816119fe565b6000806040838503121561144f578081fd5b823561145a816119fe565b9150602083013561146a816119fe565b809150509250929050565b600080600060608486031215611489578081fd5b8335611494816119fe565b925060208401356114a4816119fe565b929592945050506040919091013590565b600080600080608085870312156114ca578081fd5b84356114d5816119fe565b935060208501356114e5816119fe565b925060408501359150606085013567ffffffffffffffff80821115611508578283fd5b818701915087601f83011261151b578283fd5b81358181111561152d5761152d6119e8565b604051601f8201601f19908116603f01168101908382118183101715611555576115556119e8565b816040528281528a602084870101111561156d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156115a0578182fd5b82356115ab816119fe565b91506020830135801515811461146a578182fd5b600080604083850312156115d1578182fd5b82356115dc816119fe565b946020939093013593505050565b600080602083850312156115fc578182fd5b823567ffffffffffffffff80821115611613578384fd5b818501915085601f830112611626578384fd5b813581811115611634578485fd5b8660208260051b8501011115611648578485fd5b60209290920196919550909350505050565b60006020828403121561166b578081fd5b813561141a81611a13565b600060208284031215611687578081fd5b815161141a81611a13565b600080602083850312156116a4578182fd5b823567ffffffffffffffff808211156116bb578384fd5b818501915085601f8301126116ce578384fd5b8135818111156116dc578485fd5b866020828501011115611648578485fd5b6000602082840312156116fe578081fd5b5035919050565b6000815180845261171d816020860160208601611926565b601f01601f19169290920160200192915050565b60008151611743818560208601611926565b9290920192915050565b600080845482600182811c91508083168061176957607f831692505b602080841082141561178957634e487b7160e01b87526022600452602487fd5b81801561179d57600181146117ae576117da565b60ff198616895284890196506117da565b60008b815260209020885b868110156117d25781548b8201529085019083016117b9565b505084890196505b5050505050506117ea8185611731565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182690830184611705565b9695505050505050565b60208152600061141a6020830184611705565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156118f6576118f66119bc565b500190565b60008261190a5761190a6119d2565b500490565b600082821015611921576119216119bc565b500390565b60005b83811015611941578181015183820152602001611929565b8381111561075e5750506000910152565b600181811c9082168061196657607f821691505b6020821081141561198757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119a1576119a16119bc565b5060010190565b6000826119b7576119b76119d2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461087357600080fd5b6001600160e01b03198116811461087357600080fdfea264697066735822122015c20ec54b9b04b83182d5292288e99b687797a65fd6a9b222a0fa672bd4574364736f6c63430008040033697066733a2f2f516d5a384b6663586f413259335255794261577a546978703852316732536d537541667663566b557455744567582f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd1461029c578063cf309012146102af578063e985e9c5146102c1578063f2fde38b146102fd578063f83d08ba14610310578063fa0bfdd81461031857600080fd5b8063715018a6146102485780638da5cb5b14610250578063957aa58c1461026157806395d89b411461026e578063a22cb46514610276578063b88d4fde1461028957600080fd5b806323b872dd1161011557806323b872dd146101e157806340a3d246146101f457806342842e0e146101fc57806355f804b31461020f5780636352211e1461022257806370a082311461023557600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b61016561016036600461165a565b61032b565b60405190151581526020015b60405180910390f35b61018261037d565b6040516101719190611830565b6101a261019d3660046116ed565b61040f565b6040516001600160a01b039091168152602001610171565b6101cd6101c83660046115bf565b610436565b005b6009545b604051908152602001610171565b6101cd6101ef366004611475565b610551565b6101cd610582565b6101cd61020a366004611475565b61059e565b6101cd61021d366004611692565b6105b9565b6101a26102303660046116ed565b610614565b6101d36102433660046113fe565b610674565b6101cd6106fa565b6006546001600160a01b03166101a2565b600a546101659060ff1681565b61018261070e565b6101cd61028436600461158e565b61071d565b6101cd6102973660046114b5565b61072c565b6101826102aa3660046116ed565b610764565b600a5461016590610100900460ff1681565b6101656102cf36600461143d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd61030b3660046113fe565b6107fd565b6101cd610876565b6101cd6103263660046115ea565b61088f565b60006001600160e01b031982166380ac58cd60e01b148061035c57506001600160e01b03198216635b5e139f60e01b145b8061037757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461038c90611952565b80601f01602080910402602001604051908101604052809291908181526020018280546103b890611952565b80156104055780601f106103da57610100808354040283529160200191610405565b820191906000526020600020905b8154815290600101906020018083116103e857829003601f168201915b5050505050905090565b600061041a82610a82565b506000908152600460205260409020546001600160a01b031690565b600061044182610614565b9050806001600160a01b0316836001600160a01b031614156104b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104d057506104d081336102cf565b6105425760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104ab565b61054c8383610ae1565b505050565b61055b3382610b4f565b6105775760405162461bcd60e51b81526004016104ab90611895565b61054c838383610bce565b61058a610d75565b600a805460ff19811660ff90911615179055565b61054c8383836040518060200160405280600081525061072c565b6105c1610d75565b600a54610100900460ff16156106085760405162461bcd60e51b815260206004820152600c60248201526b141594cc8e88131bd8dad95960a21b60448201526064016104ab565b61054c60078383611365565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ab565b60006001600160a01b0382166106de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104ab565b506001600160a01b031660009081526003602052604090205490565b610702610d75565b61070c6000610dcf565b565b60606001805461038c90611952565b610728338383610e21565b5050565b6107363383610b4f565b6107525760405162461bcd60e51b81526004016104ab90611895565b61075e84848484610ef0565b50505050565b6000818152600260205260409020546060906001600160a01b03166107cb5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016104ab565b60076107d683610f23565b6040516020016107e792919061174d565b6040516020818303038152906040529050919050565b610805610d75565b6001600160a01b03811661086a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ab565b61087381610dcf565b50565b61087e610d75565b600a805461ff001916610100179055565b600a5460ff166108d85760405162461bcd60e51b8152602060048201526014602482015273505653323a20436c61696d204e6f74204c69766560601b60448201526064016104ab565b60008060005b83811015610a1357600085858381811061090857634e487b7160e01b600052603260045260246000fd5b6008546040516331a9108f60e11b8152602092909202939093013560048201819052935033926001600160a01b03169150636352211e9060240160206040518083038186803b15801561095a57600080fd5b505afa15801561096e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109929190611421565b6001600160a01b0316146109a65750610a01565b6000818152600260205260409020546001600160a01b0316156109e857826109cd8161198d565b9350506109e36109dc82610614565b3383610bce565b6109ff565b836109f28161198d565b9450506109ff338261103d565b505b80610a0b8161198d565b9150506108de565b506000610a2082846118e3565b11610a655760405162461bcd60e51b8152602060048201526015602482015274505653323a2043616e7420636c61696d206e6f6e6560581b60448201526064016104ab565b8160096000828254610a7791906118e3565b909155505050505050565b6000818152600260205260409020546001600160a01b03166108735760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104ab565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b1682610614565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b5b83610614565b9050806001600160a01b0316846001600160a01b03161480610ba257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610bc65750836001600160a01b0316610bbb8461040f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610be182610614565b6001600160a01b031614610c455760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104ab565b6001600160a01b038216610ca75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104ab565b610cb283838361118b565b610cbd600082610ae1565b6001600160a01b0383166000908152600360205260408120805460019290610ce690849061190f565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d149084906118e3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461070c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104ab565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610e835760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610efb848484610bce565b610f0784848484611258565b61075e5760405162461bcd60e51b81526004016104ab90611843565b606081610f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f715780610f5b8161198d565b9150610f6a9050600a836118fb565b9150610f4b565b60008167ffffffffffffffff811115610f9a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fc4576020820181803683370190505b5090505b8415610bc657610fd960018361190f565b9150610fe6600a866119a8565b610ff19060306118e3565b60f81b81838151811061101457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611036600a866118fb565b9450610fc8565b6001600160a01b0382166110935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104ab565b6000818152600260205260409020546001600160a01b0316156110f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104ab565b6111046000838361118b565b6001600160a01b038216600090815260036020526040812080546001929061112d9084906118e3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6008546040516331a9108f60e11b8152600481018390526001600160a01b03848116921690636352211e9060240160206040518083038186803b1580156111d157600080fd5b505afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190611421565b6001600160a01b03161461054c5760405162461bcd60e51b81526020600482015260166024820152754e6f74206f776e6572206f662056616d70697265737360501b60448201526064016104ab565b60006001600160a01b0384163b1561135a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061129c9033908990889088906004016117f3565b602060405180830381600087803b1580156112b657600080fd5b505af19250505080156112e6575060408051601f3d908101601f191682019092526112e391810190611676565b60015b611340573d808015611314576040519150601f19603f3d011682016040523d82523d6000602084013e611319565b606091505b5080516113385760405162461bcd60e51b81526004016104ab90611843565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bc6565b506001949350505050565b82805461137190611952565b90600052602060002090601f01602090048101928261139357600085556113d9565b82601f106113ac5782800160ff198235161785556113d9565b828001600101855582156113d9579182015b828111156113d95782358255916020019190600101906113be565b506113e59291506113e9565b5090565b5b808211156113e557600081556001016113ea565b60006020828403121561140f578081fd5b813561141a816119fe565b9392505050565b600060208284031215611432578081fd5b815161141a816119fe565b6000806040838503121561144f578081fd5b823561145a816119fe565b9150602083013561146a816119fe565b809150509250929050565b600080600060608486031215611489578081fd5b8335611494816119fe565b925060208401356114a4816119fe565b929592945050506040919091013590565b600080600080608085870312156114ca578081fd5b84356114d5816119fe565b935060208501356114e5816119fe565b925060408501359150606085013567ffffffffffffffff80821115611508578283fd5b818701915087601f83011261151b578283fd5b81358181111561152d5761152d6119e8565b604051601f8201601f19908116603f01168101908382118183101715611555576115556119e8565b816040528281528a602084870101111561156d578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156115a0578182fd5b82356115ab816119fe565b91506020830135801515811461146a578182fd5b600080604083850312156115d1578182fd5b82356115dc816119fe565b946020939093013593505050565b600080602083850312156115fc578182fd5b823567ffffffffffffffff80821115611613578384fd5b818501915085601f830112611626578384fd5b813581811115611634578485fd5b8660208260051b8501011115611648578485fd5b60209290920196919550909350505050565b60006020828403121561166b578081fd5b813561141a81611a13565b600060208284031215611687578081fd5b815161141a81611a13565b600080602083850312156116a4578182fd5b823567ffffffffffffffff808211156116bb578384fd5b818501915085601f8301126116ce578384fd5b8135818111156116dc578485fd5b866020828501011115611648578485fd5b6000602082840312156116fe578081fd5b5035919050565b6000815180845261171d816020860160208601611926565b601f01601f19169290920160200192915050565b60008151611743818560208601611926565b9290920192915050565b600080845482600182811c91508083168061176957607f831692505b602080841082141561178957634e487b7160e01b87526022600452602487fd5b81801561179d57600181146117ae576117da565b60ff198616895284890196506117da565b60008b815260209020885b868110156117d25781548b8201529085019083016117b9565b505084890196505b5050505050506117ea8185611731565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182690830184611705565b9695505050505050565b60208152600061141a6020830184611705565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156118f6576118f66119bc565b500190565b60008261190a5761190a6119d2565b500490565b600082821015611921576119216119bc565b500390565b60005b83811015611941578181015183820152602001611929565b8381111561075e5750506000910152565b600181811c9082168061196657607f821691505b6020821081141561198757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119a1576119a16119bc565b5060010190565b6000826119b7576119b76119d2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461087357600080fd5b6001600160e01b03198116811461087357600080fdfea264697066735822122015c20ec54b9b04b83182d5292288e99b687797a65fd6a9b222a0fa672bd4574364736f6c63430008040033

Deployed Bytecode Sourcemap

38058:2149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24737:305;;;;;;:::i;:::-;;:::i;:::-;;;8040:14:1;;8033:22;8015:41;;8003:2;7988:18;24737:305:0;;;;;;;;25664:100;;;:::i;:::-;;;;;;;:::i;27177:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7338:32:1;;;7320:51;;7308:2;7293:18;27177:171:0;7275:102:1;26694:417:0;;;;;;:::i;:::-;;:::i;:::-;;39599:91;39669:13;;39599:91;;;15269:25:1;;;15257:2;15242:18;39599:91:0;15224:76:1;27877:336:0;;;;;;:::i;:::-;;:::i;39332:68::-;;;:::i;28284:185::-;;;;;;:::i;:::-;;:::i;39483:108::-;;;;;;:::i;:::-;;:::i;25375:222::-;;;;;;:::i;:::-;;:::i;25106:207::-;;;;;;:::i;:::-;;:::i;5273:103::-;;;:::i;4625:87::-;4698:6;;-1:-1:-1;;;;;4698:6:0;4625:87;;38372:16;;;;;;;;;25833:104;;;:::i;27420:155::-;;;;;;:::i;:::-;;:::i;28540:323::-;;;;;;:::i;:::-;;:::i;39698:254::-;;;;;;:::i;:::-;;:::i;38395:18::-;;;;;;;;;;;;27646:164;;;;;;:::i;:::-;-1:-1:-1;;;;;27767:25:0;;;27743:4;27767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27646:164;5531:201;;;;;;:::i;:::-;;:::i;39408:67::-;;;:::i;38588:732::-;;;;;;:::i;:::-;;:::i;24737:305::-;24839:4;-1:-1:-1;;;;;;24876:40:0;;-1:-1:-1;;;24876:40:0;;:105;;-1:-1:-1;;;;;;;24933:48:0;;-1:-1:-1;;;24933:48:0;24876:105;:158;;;-1:-1:-1;;;;;;;;;;17588:40:0;;;24998:36;24856:178;24737:305;-1:-1:-1;;24737:305:0:o;25664:100::-;25718:13;25751:5;25744:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25664:100;:::o;27177:171::-;27253:7;27273:23;27288:7;27273:14;:23::i;:::-;-1:-1:-1;27316:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27316:24:0;;27177:171::o;26694:417::-;26775:13;26791:23;26806:7;26791:14;:23::i;:::-;26775:39;;26839:5;-1:-1:-1;;;;;26833:11:0;:2;-1:-1:-1;;;;;26833:11:0;;;26825:57;;;;-1:-1:-1;;;26825:57:0;;13808:2:1;26825:57:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;-1:-1:-1;;;13937:18:1;;;13930:31;13978:19;;26825:57:0;;;;;;;;;3256:10;-1:-1:-1;;;;;26917:21:0;;;;:62;;-1:-1:-1;26942:37:0;26959:5;3256:10;27646:164;:::i;26942:37::-;26895:174;;;;-1:-1:-1;;;26895:174:0;;11942:2:1;26895:174:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;12091:32;12071:18;;;12064:60;12141:19;;26895:174:0;11914:252:1;26895:174:0;27082:21;27091:2;27095:7;27082:8;:21::i;:::-;26694:417;;;:::o;27877:336::-;28072:41;3256:10;28105:7;28072:18;:41::i;:::-;28064:100;;;;-1:-1:-1;;;28064:100:0;;;;;;;:::i;:::-;28177:28;28187:4;28193:2;28197:7;28177:9;:28::i;39332:68::-;4511:13;:11;:13::i;:::-;39388:4:::1;::::0;;-1:-1:-1;;39380:12:0;::::1;39388:4;::::0;;::::1;39387:5;39380:12;::::0;;39332:68::o;28284:185::-;28422:39;28439:4;28445:2;28449:7;28422:39;;;;;;;;;;;;:16;:39::i;39483:108::-;4511:13;:11;:13::i;:::-;38537:6:::1;::::0;::::1;::::0;::::1;;;38536:7;38528:32;;;::::0;-1:-1:-1;;;38528:32:0;;11191:2:1;38528:32:0::1;::::0;::::1;11173:21:1::0;11230:2;11210:18;;;11203:30;-1:-1:-1;;;11249:18:1;;;11242:42;11301:18;;38528:32:0::1;11163:162:1::0;38528:32:0::1;39564:19:::2;:13;39580:3:::0;;39564:19:::2;:::i;25375:222::-:0;25447:7;25483:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25483:16:0;25518:19;25510:56;;;;-1:-1:-1;;;25510:56:0;;13455:2:1;25510:56:0;;;13437:21:1;13494:2;13474:18;;;13467:30;-1:-1:-1;;;13513:18:1;;;13506:54;13577:18;;25510:56:0;13427:174:1;25106:207:0;25178:7;-1:-1:-1;;;;;25206:19:0;;25198:73;;;;-1:-1:-1;;;25198:73:0;;11532:2:1;25198:73:0;;;11514:21:1;11571:2;11551:18;;;11544:30;11610:34;11590:18;;;11583:62;-1:-1:-1;;;11661:18:1;;;11654:39;11710:19;;25198:73:0;11504:231:1;25198:73:0;-1:-1:-1;;;;;;25289:16:0;;;;;:9;:16;;;;;;;25106:207::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;25833:104::-;25889:13;25922:7;25915:14;;;;;:::i;27420:155::-;27515:52;3256:10;27548:8;27558;27515:18;:52::i;:::-;27420:155;;:::o;28540:323::-;28714:41;3256:10;28747:7;28714:18;:41::i;:::-;28706:100;;;;-1:-1:-1;;;28706:100:0;;;;;;;:::i;:::-;28817:38;28831:4;28837:2;28841:7;28850:4;28817:13;:38::i;:::-;28540:323;;;;:::o;39698:254::-;30435:4;30459:16;;;:7;:16;;;;;;39771:13;;-1:-1:-1;;;;;30459:16:0;39797:60;;;;-1:-1:-1;;;39797:60:0;;13095:2:1;39797:60:0;;;13077:21:1;13134:2;13114:18;;;13107:30;13173:33;13153:18;;;13146:61;13224:18;;39797:60:0;13067:181:1;39797:60:0;39909:13;39924:18;:7;:16;:18::i;:::-;39892:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39878:66;;39698:254;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;9262:2:1;5612:73:0::1;::::0;::::1;9244:21:1::0;9301:2;9281:18;;;9274:30;9340:34;9320:18;;;9313:62;-1:-1:-1;;;9391:18:1;;;9384:36;9437:19;;5612:73:0::1;9234:228:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;39408:67::-;4511:13;:11;:13::i;:::-;39454:6:::1;:13:::0;;-1:-1:-1;;39454:13:0::1;;;::::0;;39408:67::o;38588:732::-;38669:4;;;;38661:37;;;;-1:-1:-1;;;38661:37:0;;14561:2:1;38661:37:0;;;14543:21:1;14600:2;14580:18;;;14573:30;-1:-1:-1;;;14619:18:1;;;14612:50;14679:18;;38661:37:0;14533:170:1;38661:37:0;38711:19;38741:20;38777:9;38772:423;38788:19;;;38772:423;;;38829:15;38847:8;;38856:1;38847:11;;;;;-1:-1:-1;;;38847:11:0;;;;;;;;;38877:12;;:29;;-1:-1:-1;;;38877:29:0;;38847:11;;;;;;;;;;38877:29;;;15269:25:1;;;38847:11:0;-1:-1:-1;38910:10:0;;-1:-1:-1;;;;;38877:12:0;;-1:-1:-1;38877:20:0;;15242:18:1;;38877:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38877:43:0;;38873:57;;38922:8;;;38873:57;30435:4;30459:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30459:16:0;:30;38947:237;;38988:14;;;;:::i;:::-;;;;39021:48;39031:16;39039:7;39031;:16::i;:::-;39049:10;39061:7;39021:9;:48::i;:::-;38947:237;;;39110:13;;;;:::i;:::-;;;;39142:26;39148:10;39160:7;39142:5;:26::i;:::-;38772:423;;38809:3;;;;:::i;:::-;;;;38772:423;;;-1:-1:-1;39246:1:0;39216:26;39230:12;39216:11;:26;:::i;:::-;39215:32;39207:66;;;;-1:-1:-1;;;39207:66:0;;8493:2:1;39207:66:0;;;8475:21:1;8532:2;8512:18;;;8505:30;-1:-1:-1;;;8551:18:1;;;8544:51;8612:18;;39207:66:0;8465:171:1;39207:66:0;39301:11;39284:13;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;38588:732:0:o;35152:135::-;30435:4;30459:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30459:16:0;35226:53;;;;-1:-1:-1;;;35226:53:0;;13455:2:1;35226:53:0;;;13437:21:1;13494:2;13474:18;;;13467:30;-1:-1:-1;;;13513:18:1;;;13506:54;13577:18;;35226:53:0;13427:174:1;34431::0;34506:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34506:29:0;-1:-1:-1;;;;;34506:29:0;;;;;;;;:24;;34560:23;34506:24;34560:14;:23::i;:::-;-1:-1:-1;;;;;34551:46:0;;;;;;;;;;;34431:174;;:::o;30664:264::-;30757:4;30774:13;30790:23;30805:7;30790:14;:23::i;:::-;30774:39;;30843:5;-1:-1:-1;;;;;30832:16:0;:7;-1:-1:-1;;;;;30832:16:0;;:52;;;-1:-1:-1;;;;;;27767:25:0;;;27743:4;27767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30852:32;30832:87;;;;30912:7;-1:-1:-1;;;;;30888:31:0;:20;30900:7;30888:11;:20::i;:::-;-1:-1:-1;;;;;30888:31:0;;30832:87;30824:96;30664:264;-1:-1:-1;;;;30664:264:0:o;33687:625::-;33846:4;-1:-1:-1;;;;;33819:31:0;:23;33834:7;33819:14;:23::i;:::-;-1:-1:-1;;;;;33819:31:0;;33811:81;;;;-1:-1:-1;;;33811:81:0;;9669:2:1;33811:81:0;;;9651:21:1;9708:2;9688:18;;;9681:30;9747:34;9727:18;;;9720:62;-1:-1:-1;;;9798:18:1;;;9791:35;9843:19;;33811:81:0;9641:227:1;33811:81:0;-1:-1:-1;;;;;33911:16:0;;33903:65;;;;-1:-1:-1;;;33903:65:0;;10432:2:1;33903:65:0;;;10414:21:1;10471:2;10451:18;;;10444:30;10510:34;10490:18;;;10483:62;-1:-1:-1;;;10561:18:1;;;10554:34;10605:19;;33903:65:0;10404:226:1;33903:65:0;33981:39;34002:4;34008:2;34012:7;33981:20;:39::i;:::-;34085:29;34102:1;34106:7;34085:8;:29::i;:::-;-1:-1:-1;;;;;34127:15:0;;;;;;:9;:15;;;;;:20;;34146:1;;34127:15;:20;;34146:1;;34127:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34158:13:0;;;;;;:9;:13;;;;;:18;;34175:1;;34158:13;:18;;34175:1;;34158:18;:::i;:::-;;;;-1:-1:-1;;34187:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34187:21:0;-1:-1:-1;;;;;34187:21:0;;;;;;;;;34226:27;;34187:16;;34226:27;;;;;;;26694:417;;;:::o;4790:132::-;4698:6;;-1:-1:-1;;;;;4698:6:0;3256:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;12734:2:1;4846:68:0;;;12716:21:1;;;12753:18;;;12746:30;12812:34;12792:18;;;12785:62;12864:18;;4846:68:0;12706:182:1;5892:191:0;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5892:191;;:::o;34748:315::-;34903:8;-1:-1:-1;;;;;34894:17:0;:5;-1:-1:-1;;;;;34894:17:0;;;34886:55;;;;-1:-1:-1;;;34886:55:0;;10837:2:1;34886:55:0;;;10819:21:1;10876:2;10856:18;;;10849:30;10915:27;10895:18;;;10888:55;10960:18;;34886:55:0;10809:175:1;34886:55:0;-1:-1:-1;;;;;34952:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34952:46:0;;;;;;;;;;35014:41;;8015::1;;;35014::0;;7988:18:1;35014:41:0;;;;;;;34748:315;;;:::o;29744:313::-;29900:28;29910:4;29916:2;29920:7;29900:9;:28::i;:::-;29947:47;29970:4;29976:2;29980:7;29989:4;29947:22;:47::i;:::-;29939:110;;;;-1:-1:-1;;;29939:110:0;;;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;-1:-1:-1;;;932:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;-1:-1:-1;;;1020:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;32262:439;-1:-1:-1;;;;;32342:16:0;;32334:61;;;;-1:-1:-1;;;32334:61:0;;12373:2:1;32334:61:0;;;12355:21:1;;;12392:18;;;12385:30;12451:34;12431:18;;;12424:62;12503:18;;32334:61:0;12345:182:1;32334:61:0;30435:4;30459:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30459:16:0;:30;32406:58;;;;-1:-1:-1;;;32406:58:0;;10075:2:1;32406:58:0;;;10057:21:1;10114:2;10094:18;;;10087:30;10153;10133:18;;;10126:58;10201:18;;32406:58:0;10047:178:1;32406:58:0;32477:45;32506:1;32510:2;32514:7;32477:20;:45::i;:::-;-1:-1:-1;;;;;32535:13:0;;;;;;:9;:13;;;;;:18;;32552:1;;32535:13;:18;;32552:1;;32535:18;:::i;:::-;;;;-1:-1:-1;;32564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32564:21:0;-1:-1:-1;;;;;32564:21:0;;;;;;;;32603:33;;32564:16;;;32603:33;;32564:16;;32603:33;27420:155;;:::o;39960:244::-;40134:12;;:29;;-1:-1:-1;;;40134:29:0;;;;;15269:25:1;;;-1:-1:-1;;;;;40134:35:0;;;;:12;;:20;;15242:18:1;;40134:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40134:35:0;;40126:70;;;;-1:-1:-1;;;40126:70:0;;14210:2:1;40126:70:0;;;14192:21:1;14249:2;14229:18;;;14222:30;-1:-1:-1;;;14268:18:1;;;14261:52;14330:18;;40126:70:0;14182:172:1;35851:853:0;36005:4;-1:-1:-1;;;;;36026:13:0;;7618:19;:23;36022:675;;36062:71;;-1:-1:-1;;;36062:71:0;;-1:-1:-1;;;;;36062:36:0;;;;;:71;;3256:10;;36113:4;;36119:7;;36128:4;;36062:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36062:71:0;;;;;;;;-1:-1:-1;;36062:71:0;;;;;;;;;;;;:::i;:::-;;;36058:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36303:13:0;;36299:328;;36346:60;;-1:-1:-1;;;36346:60:0;;;;;;;:::i;36299:328::-;36577:6;36571:13;36562:6;36558:2;36554:15;36547:38;36058:584;-1:-1:-1;;;;;;36184:51:0;-1:-1:-1;;;36184:51:0;;-1:-1:-1;36177:58:0;;36022:675;-1:-1:-1;36681:4:0;35851:853;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:257:1;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:1311::-;1511:6;1519;1527;1535;1588:3;1576:9;1567:7;1563:23;1559:33;1556:2;;;1610:6;1602;1595:22;1556:2;1654:9;1641:23;1673:31;1698:5;1673:31;:::i;:::-;1723:5;-1:-1:-1;1780:2:1;1765:18;;1752:32;1793:33;1752:32;1793:33;:::i;:::-;1845:7;-1:-1:-1;1899:2:1;1884:18;;1871:32;;-1:-1:-1;1954:2:1;1939:18;;1926:32;1977:18;2007:14;;;2004:2;;;2039:6;2031;2024:22;2004:2;2082:6;2071:9;2067:22;2057:32;;2127:7;2120:4;2116:2;2112:13;2108:27;2098:2;;2154:6;2146;2139:22;2098:2;2195;2182:16;2217:2;2213;2210:10;2207:2;;;2223:18;;:::i;:::-;2298:2;2292:9;2266:2;2352:13;;-1:-1:-1;;2348:22:1;;;2372:2;2344:31;2340:40;2328:53;;;2396:18;;;2416:22;;;2393:46;2390:2;;;2442:18;;:::i;:::-;2482:10;2478:2;2471:22;2517:2;2509:6;2502:18;2557:7;2552:2;2547;2543;2539:11;2535:20;2532:33;2529:2;;;2583:6;2575;2568:22;2529:2;2644;2639;2635;2631:11;2626:2;2618:6;2614:15;2601:46;2667:15;;;2684:2;2663:24;2656:40;;;;1546:1181;;;;-1:-1:-1;1546:1181:1;;-1:-1:-1;;;;1546:1181:1:o;2732:436::-;2797:6;2805;2858:2;2846:9;2837:7;2833:23;2829:32;2826:2;;;2879:6;2871;2864:22;2826:2;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:2;;3127:6;3119;3112:22;3173:325;3241:6;3249;3302:2;3290:9;3281:7;3277:23;3273:32;3270:2;;;3323:6;3315;3308:22;3270:2;3367:9;3354:23;3386:31;3411:5;3386:31;:::i;:::-;3436:5;3488:2;3473:18;;;;3460:32;;-1:-1:-1;;;3260:238:1:o;3503:665::-;3589:6;3597;3650:2;3638:9;3629:7;3625:23;3621:32;3618:2;;;3671:6;3663;3656:22;3618:2;3716:9;3703:23;3745:18;3786:2;3778:6;3775:14;3772:2;;;3807:6;3799;3792:22;3772:2;3850:6;3839:9;3835:22;3825:32;;3895:7;3888:4;3884:2;3880:13;3876:27;3866:2;;3922:6;3914;3907:22;3866:2;3967;3954:16;3993:2;3985:6;3982:14;3979:2;;;4014:6;4006;3999:22;3979:2;4072:7;4067:2;4057:6;4054:1;4050:14;4046:2;4042:23;4038:32;4035:45;4032:2;;;4098:6;4090;4083:22;4032:2;4134;4126:11;;;;;4156:6;;-1:-1:-1;3608:560:1;;-1:-1:-1;;;;3608:560:1:o;4173:255::-;4231:6;4284:2;4272:9;4263:7;4259:23;4255:32;4252:2;;;4305:6;4297;4290:22;4252:2;4349:9;4336:23;4368:30;4392:5;4368:30;:::i;4433:259::-;4502:6;4555:2;4543:9;4534:7;4530:23;4526:32;4523:2;;;4576:6;4568;4561:22;4523:2;4613:9;4607:16;4632:30;4656:5;4632:30;:::i;4697:642::-;4768:6;4776;4829:2;4817:9;4808:7;4804:23;4800:32;4797:2;;;4850:6;4842;4835:22;4797:2;4895:9;4882:23;4924:18;4965:2;4957:6;4954:14;4951:2;;;4986:6;4978;4971:22;4951:2;5029:6;5018:9;5014:22;5004:32;;5074:7;5067:4;5063:2;5059:13;5055:27;5045:2;;5101:6;5093;5086:22;5045:2;5146;5133:16;5172:2;5164:6;5161:14;5158:2;;;5193:6;5185;5178:22;5158:2;5243:7;5238:2;5229:6;5225:2;5221:15;5217:24;5214:37;5211:2;;;5269:6;5261;5254:22;5344:190;5403:6;5456:2;5444:9;5435:7;5431:23;5427:32;5424:2;;;5477:6;5469;5462:22;5424:2;-1:-1:-1;5505:23:1;;5414:120;-1:-1:-1;5414:120:1:o;5539:257::-;5580:3;5618:5;5612:12;5645:6;5640:3;5633:19;5661:63;5717:6;5710:4;5705:3;5701:14;5694:4;5687:5;5683:16;5661:63;:::i;:::-;5778:2;5757:15;-1:-1:-1;;5753:29:1;5744:39;;;;5785:4;5740:50;;5588:208;-1:-1:-1;;5588:208:1:o;5801:185::-;5843:3;5881:5;5875:12;5896:52;5941:6;5936:3;5929:4;5922:5;5918:16;5896:52;:::i;:::-;5964:16;;;;;5851:135;-1:-1:-1;;5851:135:1:o;5991:1178::-;6167:3;6196;6231:6;6225:13;6261:3;6283:1;6311:9;6307:2;6303:18;6293:28;;6371:2;6360:9;6356:18;6393;6383:2;;6437:4;6429:6;6425:17;6415:27;;6383:2;6463;6511;6503:6;6500:14;6480:18;6477:38;6474:2;;;-1:-1:-1;;;6538:33:1;;6594:4;6591:1;6584:15;6624:4;6545:3;6612:17;6474:2;6655:18;6682:104;;;;6800:1;6795:322;;;;6648:469;;6682:104;-1:-1:-1;;6715:24:1;;6703:37;;6760:16;;;;-1:-1:-1;6682:104:1;;6795:322;15352:4;15371:17;;;15421:4;15405:21;;6890:3;6906:165;6920:6;6917:1;6914:13;6906:165;;;6998:14;;6985:11;;;6978:35;7041:16;;;;6935:10;;6906:165;;;6910:3;;7100:6;7095:3;7091:16;7084:23;;6648:469;;;;;;;7133:30;7159:3;7151:6;7133:30;:::i;:::-;7126:37;6175:994;-1:-1:-1;;;;;6175:994:1:o;7382:488::-;-1:-1:-1;;;;;7651:15:1;;;7633:34;;7703:15;;7698:2;7683:18;;7676:43;7750:2;7735:18;;7728:34;;;7798:3;7793:2;7778:18;;7771:31;;;7576:4;;7819:45;;7844:19;;7836:6;7819:45;:::i;:::-;7811:53;7585:285;-1:-1:-1;;;;;;7585:285:1:o;8067:219::-;8216:2;8205:9;8198:21;8179:4;8236:44;8276:2;8265:9;8261:18;8253:6;8236:44;:::i;8641:414::-;8843:2;8825:21;;;8882:2;8862:18;;;8855:30;8921:34;8916:2;8901:18;;8894:62;-1:-1:-1;;;8987:2:1;8972:18;;8965:48;9045:3;9030:19;;8815:240::o;14708:410::-;14910:2;14892:21;;;14949:2;14929:18;;;14922:30;14988:34;14983:2;14968:18;;14961:62;-1:-1:-1;;;15054:2:1;15039:18;;15032:44;15108:3;15093:19;;14882:236::o;15437:128::-;15477:3;15508:1;15504:6;15501:1;15498:13;15495:2;;;15514:18;;:::i;:::-;-1:-1:-1;15550:9:1;;15485:80::o;15570:120::-;15610:1;15636;15626:2;;15641:18;;:::i;:::-;-1:-1:-1;15675:9:1;;15616:74::o;15695:125::-;15735:4;15763:1;15760;15757:8;15754:2;;;15768:18;;:::i;:::-;-1:-1:-1;15805:9:1;;15744:76::o;15825:258::-;15897:1;15907:113;15921:6;15918:1;15915:13;15907:113;;;15997:11;;;15991:18;15978:11;;;15971:39;15943:2;15936:10;15907:113;;;16038:6;16035:1;16032:13;16029:2;;;-1:-1:-1;;16073:1:1;16055:16;;16048:27;15878:205::o;16088:380::-;16167:1;16163:12;;;;16210;;;16231:2;;16285:4;16277:6;16273:17;16263:27;;16231:2;16338;16330:6;16327:14;16307:18;16304:38;16301:2;;;16384:10;16379:3;16375:20;16372:1;16365:31;16419:4;16416:1;16409:15;16447:4;16444:1;16437:15;16301:2;;16143:325;;;:::o;16473:135::-;16512:3;-1:-1:-1;;16533:17:1;;16530:2;;;16553:18;;:::i;:::-;-1:-1:-1;16600:1:1;16589:13;;16520:88::o;16613:112::-;16645:1;16671;16661:2;;16676:18;;:::i;:::-;-1:-1:-1;16710:9:1;;16651:74::o;16730:127::-;16791:10;16786:3;16782:20;16779:1;16772:31;16822:4;16819:1;16812:15;16846:4;16843:1;16836:15;16862:127;16923:10;16918:3;16914:20;16911:1;16904:31;16954:4;16951:1;16944:15;16978:4;16975:1;16968:15;16994:127;17055:10;17050:3;17046:20;17043:1;17036:31;17086:4;17083:1;17076:15;17110:4;17107:1;17100:15;17126:131;-1:-1:-1;;;;;17201:31:1;;17191:42;;17181:2;;17247:1;17244;17237:12;17262:131;-1:-1:-1;;;;;;17336:32:1;;17326:43;;17316:2;;17383:1;17380;17373:12

Swarm Source

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