ETH Price: $2,516.98 (+1.95%)

Token

pixloc (PIXLOC)
 

Overview

Max Total Supply

58 PIXLOC

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 PIXLOC
0x75a70b3f24eb6f32e75b53fbe9315111d05851d0
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:
Pixels

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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




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




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









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

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

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

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

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

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

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

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





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}














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







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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







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

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

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


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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


contract Pixels is ERC721Enumerable, ReentrancyGuard, Ownable {

    uint8 private N = 100; //box size
    uint16 private root = 773; //primitive root used for shuffling
    uint16 private P = 9973;  //largest prime number below N*N
    uint16 private tokensMinted = 200; //keeps track of minted tokens
    mapping(uint16 => uint8) private reservedTokens;
    
    constructor() ERC721("pixloc", "PIXLOC") Ownable() {
        reservedTokens[2406] = 1;
        reservedTokens[3776] = 1;
        reservedTokens[8007] = 1;
        reservedTokens[9636] = 1;
    }
    
    function power(uint16 x, uint256 n, uint16 m) internal pure returns (uint256 result) {
        result = 1;
        for (uint16 j = 1; j <= n; j += 1) {
            result = result * x % m;         
        }
    }
    
    function random(uint256 input) internal view returns (uint256) {
        uint16 _root = root;
        uint16 _P = P;
        return power(_root, input, _P);
    }
    
    function getCoordinates(uint256 tokenId) public view returns (uint256 X, uint256 Y) {
        uint256 rnd = random(tokenId);
        uint8 _N = N;
        X = rnd / _N;
        Y = rnd % _N;
    }
    
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[5] memory parts;
        uint _X;
        uint _Y;
        (_X, _Y) = getCoordinates(tokenId);
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 100 100" style="background-color:black"><rect x="';
        parts[1] = toString(_X);
        parts[2] = '" y="';
        parts[3] = toString(_Y);
        parts[4] = '" width="1" height="1" fill="white"></rect></svg>';
        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4]));
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "pixloc #',
                        toString(tokenId),
                        '", "description": "the pixels are exactly what they seem", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '"}'
                    )
                )
            )
        );
        output = string(abi.encodePacked("data:application/json;base64,", json));
        return output;
    }

    function claim() public nonReentrant {
        uint16 _tokensMinted = tokensMinted;
        if (reservedTokens[_tokensMinted] == 1) {
            _tokensMinted += 1;
        }
        require(_tokensMinted < P-1, "Total supply reached");
        _safeMint(_msgSender(), _tokensMinted);
        _tokensMinted += 1;
        tokensMinted = _tokensMinted;
    }
    
    function bulkClaim(uint256 amount) public nonReentrant {
        require(amount <= 10, "Amount must be less than or equal to 10");
        uint16 _tokensMinted = tokensMinted;
        for (uint16 j = 1; j <= amount; j += 1) {
            if (reservedTokens[_tokensMinted] == 1) {
                _tokensMinted += 1;
            }
            require(_tokensMinted < P-1, "Total supply reached");
            _safeMint(_msgSender(), _tokensMinted);
            _tokensMinted += 1;        
        }
        tokensMinted = _tokensMinted;
    }
    
    function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
        require(tokensMinted < P-1, "Total supply reached");
        _safeMint(owner(), tokenId);
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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":"amount","type":"uint256"}],"name":"bulkClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCoordinates","outputs":[{"internalType":"uint256","name":"X","type":"uint256"},{"internalType":"uint256","name":"Y","type":"uint256"}],"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":"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805466ffffffffffffff60a01b1916653209bd40c15960a21b1790553480156200002f57600080fd5b50604051806040016040528060068152602001657069786c6f6360d01b815250604051806040016040528060068152602001655049584c4f4360d01b815250816000908051906020019062000086929190620001bf565b5080516200009c906001906020840190620001bf565b50506001600a5550620000af336200016d565b600c6020527f9c9b443bc0b6771f6279f6ed128fee9cf42cf16c63d2326b60b790a567a7953e8054600160ff1991821681179092557f3c895b457acc91694d802784a311bf225d6aa623b4dfcd9da5e3d850af0517a680548216831790557f3fbcaf5c5e326e1f830349be25ce69e7b50e4d22be5eb1c93bfa19ec6904b87b80548216831790556125a46000527ffb403c81e4e0ba38bf06b00c41f9e31715dfdc641fb32993e68c02446f01daaa80549091169091179055620002a2565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cd9062000265565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b600181811c908216806200027a57607f821691505b602082108114156200029c57634e487b7160e01b600052602260045260246000fd5b50919050565b6122df80620002b26000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80634f6ccce7116100c357806395d89b411161007c57806395d89b41146102c2578063a22cb465146102ca578063b88d4fde146102dd578063c87b56dd146102f0578063e985e9c514610303578063f2fde38b1461033f57600080fd5b80634f6ccce71461025d5780636352211e146102705780636763d8451461028357806370a0823114610296578063715018a6146102a95780638da5cb5b146102b157600080fd5b806318160ddd1161011557806318160ddd146101f757806323b872dd146102095780632f745c591461021c57806342842e0e1461022f578063434f48c4146102425780634e71d92d1461025557600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba5780630bf37818146101cf575b600080fd5b610165610160366004611c5b565b610352565b60405190151581526020015b60405180910390f35b61018261037d565b6040516101719190611e99565b6101a261019d366004611c95565b61040f565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611c31565b6104a9565b005b6101e26101dd366004611c95565b6105bf565b60408051928352602083019190915201610171565b6008545b604051908152602001610171565b6101cd610217366004611add565b6105ff565b6101fb61022a366004611c31565b610630565b6101cd61023d366004611add565b6106c6565b6101cd610250366004611c95565b6106e1565b6101cd6107a1565b6101fb61026b366004611c95565b610881565b6101a261027e366004611c95565b610914565b6101cd610291366004611c95565b61098b565b6101fb6102a4366004611a88565b610af3565b6101cd610b7a565b600b546001600160a01b03166101a2565b610182610bb0565b6101cd6102d8366004611bf5565b610bbf565b6101cd6102eb366004611b19565b610c84565b6101826102fe366004611c95565b610cbc565b610165610311366004611aaa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd61034d366004611a88565b610df9565b60006001600160e01b0319821663780e9d6360e01b1480610377575061037782610e94565b92915050565b60606000805461038c906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546103b8906120c0565b80156104055780601f106103da57610100808354040283529160200191610405565b820191906000526020600020905b8154815290600101906020018083116103e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661048d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104b482610914565b9050806001600160a01b0316836001600160a01b031614156105225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610484565b336001600160a01b038216148061053e575061053e8133610311565b6105b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610484565b6105ba8383610ee4565b505050565b60008060006105cd84610f52565b600b54909150600160a01b900460ff166105e78183612027565b93506105f660ff821683612116565b92505050915091565b6106093382610f80565b6106255760405162461bcd60e51b815260040161048490611f61565b6105ba838383611073565b600061063b83610af3565b821061069d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610484565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105ba83838360405180602001604052806000815250610c84565b6002600a5414156107045760405162461bcd60e51b815260040161048490611fb2565b6002600a55600b546001600160a01b031633146107335760405162461bcd60e51b815260040161048490611f2c565b600b5461074d90600190600160b81b900461ffff1661205a565b600b5461ffff918216600160c81b9091049091161061077e5760405162461bcd60e51b815260040161048490611efe565b610799610793600b546001600160a01b031690565b8261121e565b506001600a55565b6002600a5414156107c45760405162461bcd60e51b815260040161048490611fb2565b6002600a55600b5461ffff600160c81b909104166000818152600c602052604090205460ff1660011415610800576107fd600182611fe9565b90505b600b5461081a90600190600160b81b900461ffff1661205a565b61ffff168161ffff16106108405760405162461bcd60e51b815260040161048490611efe565b61084e338261ffff1661121e565b610859600182611fe9565b600b805461ffff909216600160c81b0261ffff60c81b19909216919091179055506001600a55565b600061088c60085490565b82106108ef5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610484565b600882815481106109025761090261216c565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610484565b6002600a5414156109ae5760405162461bcd60e51b815260040161048490611fb2565b6002600a908155811115610a145760405162461bcd60e51b815260206004820152602760248201527f416d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526606c20746f2031360cc1b6064820152608401610484565b600b54600160c81b900461ffff1660015b828161ffff1611610aca5761ffff82166000908152600c602052604090205460ff1660011415610a5d57610a5a600183611fe9565b91505b600b54610a7790600190600160b81b900461ffff1661205a565b61ffff168261ffff1610610a9d5760405162461bcd60e51b815260040161048490611efe565b610aab338361ffff1661121e565b610ab6600183611fe9565b9150610ac3600182611fe9565b9050610a25565b50600b805461ffff909216600160c81b0261ffff60c81b19909216919091179055506001600a55565b60006001600160a01b038216610b5e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610484565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ba45760405162461bcd60e51b815260040161048490611f2c565b610bae600061123c565b565b60606001805461038c906120c0565b6001600160a01b038216331415610c185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610484565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8e3383610f80565b610caa5760405162461bcd60e51b815260040161048490611f61565b610cb68484848461128e565b50505050565b6060610cc6611a45565b600080610cd2856105bf565b80925081935050506040518060c00160405280608a81526020016121ef608a91398352610cfe826112c1565b602084810191909152604080518082018252600581526411103c9e9160d91b92810192909252840152610d30816112c1565b6060808501919091526040805191820190526031808252612279602083013960808401819052835160208086015160408088015160608901519151600096610d7e9695929392909101611cda565b60405160208183030381529060405290506000610dcb610d9d886112c1565b610da6846113bf565b604051602001610db7929190611d45565b6040516020818303038152906040526113bf565b905080604051602001610dde9190611e17565b60408051601f19818403018152919052979650505050505050565b600b546001600160a01b03163314610e235760405162461bcd60e51b815260040161048490611f2c565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610484565b610e918161123c565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ec557506001600160e01b03198216635b5e139f60e01b145b8061037757506301ffc9a760e01b6001600160e01b0319831614610377565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f1982610914565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b5460009061ffff600160a81b8204811691600160b81b900416610f78828583611525565b949350505050565b6000818152600260205260408120546001600160a01b0316610ff95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610484565b600061100483610914565b9050806001600160a01b0316846001600160a01b0316148061103f5750836001600160a01b03166110348461040f565b6001600160a01b0316145b80610f7857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f78565b826001600160a01b031661108682610914565b6001600160a01b0316146110ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610484565b6001600160a01b0382166111505760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610484565b61115b83838361156f565b611166600082610ee4565b6001600160a01b038316600090815260036020526040812080546001929061118f90849061207d565b90915550506001600160a01b03821660009081526003602052604081208054600192906111bd90849061200f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611238828260405180602001604052806000815250611627565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611299848484611073565b6112a58484848461165a565b610cb65760405162461bcd60e51b815260040161048490611eac565b6060816112e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561130f57806112f9816120fb565b91506113089050600a83612027565b91506112e9565b60008167ffffffffffffffff81111561132a5761132a612182565b6040519080825280601f01601f191660200182016040528015611354576020820181803683370190505b5090505b8415610f785761136960018361207d565b9150611376600a86612116565b61138190603061200f565b60f81b8183815181106113965761139661216c565b60200101906001600160f81b031916908160001a9053506113b8600a86612027565b9450611358565b8051606090806113df575050604080516020810190915260008152919050565b600060036113ee83600261200f565b6113f89190612027565b61140390600461203b565b9050600061141282602061200f565b67ffffffffffffffff81111561142a5761142a612182565b6040519080825280601f01601f191660200182016040528015611454576020820181803683370190505b50905060006040518060600160405280604081526020016121af604091399050600181016020830160005b868110156114e0576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161147f565b5060038606600181146114fa576002811461150b57611517565b613d3d60f01b600119830152611517565b603d60f81b6000198301525b505050918152949350505050565b6001805b838161ffff1611611567578261ffff168561ffff1683611549919061203b565b6115539190612116565b9150611560600182611fe9565b9050611529565b509392505050565b6001600160a01b0383166115ca576115c581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115ed565b816001600160a01b0316836001600160a01b0316146115ed576115ed8382611767565b6001600160a01b038216611604576105ba81611804565b826001600160a01b0316826001600160a01b0316146105ba576105ba82826118b3565b61163183836118f7565b61163e600084848461165a565b6105ba5760405162461bcd60e51b815260040161048490611eac565b60006001600160a01b0384163b1561175c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061169e903390899088908890600401611e5c565b602060405180830381600087803b1580156116b857600080fd5b505af19250505080156116e8575060408051601f3d908101601f191682019092526116e591810190611c78565b60015b611742573d808015611716576040519150601f19603f3d011682016040523d82523d6000602084013e61171b565b606091505b50805161173a5760405162461bcd60e51b815260040161048490611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f78565b506001949350505050565b6000600161177484610af3565b61177e919061207d565b6000838152600760205260409020549091508082146117d1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118169060019061207d565b6000838152600960205260408120546008805493945090928490811061183e5761183e61216c565b90600052602060002001549050806008838154811061185f5761185f61216c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061189757611897612156565b6001900381819060005260206000200160009055905550505050565b60006118be83610af3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661194d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610484565b6000818152600260205260409020546001600160a01b0316156119b25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610484565b6119be6000838361156f565b6001600160a01b03821660009081526003602052604081208054600192906119e790849061200f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060a001604052806005905b6060815260200190600190039081611a545790505090565b80356001600160a01b0381168114611a8357600080fd5b919050565b600060208284031215611a9a57600080fd5b611aa382611a6c565b9392505050565b60008060408385031215611abd57600080fd5b611ac683611a6c565b9150611ad460208401611a6c565b90509250929050565b600080600060608486031215611af257600080fd5b611afb84611a6c565b9250611b0960208501611a6c565b9150604084013590509250925092565b60008060008060808587031215611b2f57600080fd5b611b3885611a6c565b9350611b4660208601611a6c565b925060408501359150606085013567ffffffffffffffff80821115611b6a57600080fd5b818701915087601f830112611b7e57600080fd5b813581811115611b9057611b90612182565b604051601f8201601f19908116603f01168101908382118183101715611bb857611bb8612182565b816040528281528a6020848701011115611bd157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0857600080fd5b611c1183611a6c565b915060208301358015158114611c2657600080fd5b809150509250929050565b60008060408385031215611c4457600080fd5b611c4d83611a6c565b946020939093013593505050565b600060208284031215611c6d57600080fd5b8135611aa381612198565b600060208284031215611c8a57600080fd5b8151611aa381612198565b600060208284031215611ca757600080fd5b5035919050565b60008151808452611cc6816020860160208601612094565b601f01601f19169290920160200192915050565b60008651611cec818460208b01612094565b865190830190611d00818360208b01612094565b8651910190611d13818360208a01612094565b8551910190611d26818360208901612094565b8451910190611d39818360208801612094565b01979650505050505050565b717b226e616d65223a20227069786c6f63202360701b81528251600090611d73816012850160208801612094565b7f222c20226465736372697074696f6e223a202274686520706978656c732061726012918401918201527f652065786163746c7920776861742074686579207365656d222c2022696d616760328201527f65223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c0060528201528351611dfc816071840160208801612094565b61227d60f01b60719290910191820152607301949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611e4f81601d850160208701612094565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e8f90830184611cae565b9695505050505050565b602081526000611aa36020830184611cae565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273151bdd185b081cdd5c1c1b1e481c995858da195960621b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600061ffff8083168185168083038211156120065761200661212a565b01949350505050565b600082198211156120225761202261212a565b500190565b60008261203657612036612140565b500490565b60008160001904831182151516156120555761205561212a565b500290565b600061ffff838116908316818110156120755761207561212a565b039392505050565b60008282101561208f5761208f61212a565b500390565b60005b838110156120af578181015183820152602001612097565b83811115610cb65750506000910152565b600181811c908216806120d457607f821691505b602082108114156120f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210f5761210f61212a565b5060010190565b60008261212557612125612140565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9157600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d22302030203130302031303022207374796c653d226261636b67726f756e642d636f6c6f723a626c61636b223e3c7265637420783d22222077696474683d223122206865696768743d2231222066696c6c3d227768697465223e3c2f726563743e3c2f7376673ea26469706673582212206f65c2744dbc9a1183606608b8e3c6d01763436a5b83e3114b7665c612e3987d64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80634f6ccce7116100c357806395d89b411161007c57806395d89b41146102c2578063a22cb465146102ca578063b88d4fde146102dd578063c87b56dd146102f0578063e985e9c514610303578063f2fde38b1461033f57600080fd5b80634f6ccce71461025d5780636352211e146102705780636763d8451461028357806370a0823114610296578063715018a6146102a95780638da5cb5b146102b157600080fd5b806318160ddd1161011557806318160ddd146101f757806323b872dd146102095780632f745c591461021c57806342842e0e1461022f578063434f48c4146102425780634e71d92d1461025557600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba5780630bf37818146101cf575b600080fd5b610165610160366004611c5b565b610352565b60405190151581526020015b60405180910390f35b61018261037d565b6040516101719190611e99565b6101a261019d366004611c95565b61040f565b6040516001600160a01b039091168152602001610171565b6101cd6101c8366004611c31565b6104a9565b005b6101e26101dd366004611c95565b6105bf565b60408051928352602083019190915201610171565b6008545b604051908152602001610171565b6101cd610217366004611add565b6105ff565b6101fb61022a366004611c31565b610630565b6101cd61023d366004611add565b6106c6565b6101cd610250366004611c95565b6106e1565b6101cd6107a1565b6101fb61026b366004611c95565b610881565b6101a261027e366004611c95565b610914565b6101cd610291366004611c95565b61098b565b6101fb6102a4366004611a88565b610af3565b6101cd610b7a565b600b546001600160a01b03166101a2565b610182610bb0565b6101cd6102d8366004611bf5565b610bbf565b6101cd6102eb366004611b19565b610c84565b6101826102fe366004611c95565b610cbc565b610165610311366004611aaa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101cd61034d366004611a88565b610df9565b60006001600160e01b0319821663780e9d6360e01b1480610377575061037782610e94565b92915050565b60606000805461038c906120c0565b80601f01602080910402602001604051908101604052809291908181526020018280546103b8906120c0565b80156104055780601f106103da57610100808354040283529160200191610405565b820191906000526020600020905b8154815290600101906020018083116103e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661048d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104b482610914565b9050806001600160a01b0316836001600160a01b031614156105225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610484565b336001600160a01b038216148061053e575061053e8133610311565b6105b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610484565b6105ba8383610ee4565b505050565b60008060006105cd84610f52565b600b54909150600160a01b900460ff166105e78183612027565b93506105f660ff821683612116565b92505050915091565b6106093382610f80565b6106255760405162461bcd60e51b815260040161048490611f61565b6105ba838383611073565b600061063b83610af3565b821061069d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610484565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105ba83838360405180602001604052806000815250610c84565b6002600a5414156107045760405162461bcd60e51b815260040161048490611fb2565b6002600a55600b546001600160a01b031633146107335760405162461bcd60e51b815260040161048490611f2c565b600b5461074d90600190600160b81b900461ffff1661205a565b600b5461ffff918216600160c81b9091049091161061077e5760405162461bcd60e51b815260040161048490611efe565b610799610793600b546001600160a01b031690565b8261121e565b506001600a55565b6002600a5414156107c45760405162461bcd60e51b815260040161048490611fb2565b6002600a55600b5461ffff600160c81b909104166000818152600c602052604090205460ff1660011415610800576107fd600182611fe9565b90505b600b5461081a90600190600160b81b900461ffff1661205a565b61ffff168161ffff16106108405760405162461bcd60e51b815260040161048490611efe565b61084e338261ffff1661121e565b610859600182611fe9565b600b805461ffff909216600160c81b0261ffff60c81b19909216919091179055506001600a55565b600061088c60085490565b82106108ef5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610484565b600882815481106109025761090261216c565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610484565b6002600a5414156109ae5760405162461bcd60e51b815260040161048490611fb2565b6002600a908155811115610a145760405162461bcd60e51b815260206004820152602760248201527f416d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526606c20746f2031360cc1b6064820152608401610484565b600b54600160c81b900461ffff1660015b828161ffff1611610aca5761ffff82166000908152600c602052604090205460ff1660011415610a5d57610a5a600183611fe9565b91505b600b54610a7790600190600160b81b900461ffff1661205a565b61ffff168261ffff1610610a9d5760405162461bcd60e51b815260040161048490611efe565b610aab338361ffff1661121e565b610ab6600183611fe9565b9150610ac3600182611fe9565b9050610a25565b50600b805461ffff909216600160c81b0261ffff60c81b19909216919091179055506001600a55565b60006001600160a01b038216610b5e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610484565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ba45760405162461bcd60e51b815260040161048490611f2c565b610bae600061123c565b565b60606001805461038c906120c0565b6001600160a01b038216331415610c185760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610484565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c8e3383610f80565b610caa5760405162461bcd60e51b815260040161048490611f61565b610cb68484848461128e565b50505050565b6060610cc6611a45565b600080610cd2856105bf565b80925081935050506040518060c00160405280608a81526020016121ef608a91398352610cfe826112c1565b602084810191909152604080518082018252600581526411103c9e9160d91b92810192909252840152610d30816112c1565b6060808501919091526040805191820190526031808252612279602083013960808401819052835160208086015160408088015160608901519151600096610d7e9695929392909101611cda565b60405160208183030381529060405290506000610dcb610d9d886112c1565b610da6846113bf565b604051602001610db7929190611d45565b6040516020818303038152906040526113bf565b905080604051602001610dde9190611e17565b60408051601f19818403018152919052979650505050505050565b600b546001600160a01b03163314610e235760405162461bcd60e51b815260040161048490611f2c565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610484565b610e918161123c565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ec557506001600160e01b03198216635b5e139f60e01b145b8061037757506301ffc9a760e01b6001600160e01b0319831614610377565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f1982610914565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b5460009061ffff600160a81b8204811691600160b81b900416610f78828583611525565b949350505050565b6000818152600260205260408120546001600160a01b0316610ff95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610484565b600061100483610914565b9050806001600160a01b0316846001600160a01b0316148061103f5750836001600160a01b03166110348461040f565b6001600160a01b0316145b80610f7857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f78565b826001600160a01b031661108682610914565b6001600160a01b0316146110ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610484565b6001600160a01b0382166111505760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610484565b61115b83838361156f565b611166600082610ee4565b6001600160a01b038316600090815260036020526040812080546001929061118f90849061207d565b90915550506001600160a01b03821660009081526003602052604081208054600192906111bd90849061200f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611238828260405180602001604052806000815250611627565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611299848484611073565b6112a58484848461165a565b610cb65760405162461bcd60e51b815260040161048490611eac565b6060816112e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561130f57806112f9816120fb565b91506113089050600a83612027565b91506112e9565b60008167ffffffffffffffff81111561132a5761132a612182565b6040519080825280601f01601f191660200182016040528015611354576020820181803683370190505b5090505b8415610f785761136960018361207d565b9150611376600a86612116565b61138190603061200f565b60f81b8183815181106113965761139661216c565b60200101906001600160f81b031916908160001a9053506113b8600a86612027565b9450611358565b8051606090806113df575050604080516020810190915260008152919050565b600060036113ee83600261200f565b6113f89190612027565b61140390600461203b565b9050600061141282602061200f565b67ffffffffffffffff81111561142a5761142a612182565b6040519080825280601f01601f191660200182016040528015611454576020820181803683370190505b50905060006040518060600160405280604081526020016121af604091399050600181016020830160005b868110156114e0576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161147f565b5060038606600181146114fa576002811461150b57611517565b613d3d60f01b600119830152611517565b603d60f81b6000198301525b505050918152949350505050565b6001805b838161ffff1611611567578261ffff168561ffff1683611549919061203b565b6115539190612116565b9150611560600182611fe9565b9050611529565b509392505050565b6001600160a01b0383166115ca576115c581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6115ed565b816001600160a01b0316836001600160a01b0316146115ed576115ed8382611767565b6001600160a01b038216611604576105ba81611804565b826001600160a01b0316826001600160a01b0316146105ba576105ba82826118b3565b61163183836118f7565b61163e600084848461165a565b6105ba5760405162461bcd60e51b815260040161048490611eac565b60006001600160a01b0384163b1561175c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061169e903390899088908890600401611e5c565b602060405180830381600087803b1580156116b857600080fd5b505af19250505080156116e8575060408051601f3d908101601f191682019092526116e591810190611c78565b60015b611742573d808015611716576040519150601f19603f3d011682016040523d82523d6000602084013e61171b565b606091505b50805161173a5760405162461bcd60e51b815260040161048490611eac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f78565b506001949350505050565b6000600161177484610af3565b61177e919061207d565b6000838152600760205260409020549091508082146117d1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118169060019061207d565b6000838152600960205260408120546008805493945090928490811061183e5761183e61216c565b90600052602060002001549050806008838154811061185f5761185f61216c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061189757611897612156565b6001900381819060005260206000200160009055905550505050565b60006118be83610af3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661194d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610484565b6000818152600260205260409020546001600160a01b0316156119b25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610484565b6119be6000838361156f565b6001600160a01b03821660009081526003602052604081208054600192906119e790849061200f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518060a001604052806005905b6060815260200190600190039081611a545790505090565b80356001600160a01b0381168114611a8357600080fd5b919050565b600060208284031215611a9a57600080fd5b611aa382611a6c565b9392505050565b60008060408385031215611abd57600080fd5b611ac683611a6c565b9150611ad460208401611a6c565b90509250929050565b600080600060608486031215611af257600080fd5b611afb84611a6c565b9250611b0960208501611a6c565b9150604084013590509250925092565b60008060008060808587031215611b2f57600080fd5b611b3885611a6c565b9350611b4660208601611a6c565b925060408501359150606085013567ffffffffffffffff80821115611b6a57600080fd5b818701915087601f830112611b7e57600080fd5b813581811115611b9057611b90612182565b604051601f8201601f19908116603f01168101908382118183101715611bb857611bb8612182565b816040528281528a6020848701011115611bd157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0857600080fd5b611c1183611a6c565b915060208301358015158114611c2657600080fd5b809150509250929050565b60008060408385031215611c4457600080fd5b611c4d83611a6c565b946020939093013593505050565b600060208284031215611c6d57600080fd5b8135611aa381612198565b600060208284031215611c8a57600080fd5b8151611aa381612198565b600060208284031215611ca757600080fd5b5035919050565b60008151808452611cc6816020860160208601612094565b601f01601f19169290920160200192915050565b60008651611cec818460208b01612094565b865190830190611d00818360208b01612094565b8651910190611d13818360208a01612094565b8551910190611d26818360208901612094565b8451910190611d39818360208801612094565b01979650505050505050565b717b226e616d65223a20227069786c6f63202360701b81528251600090611d73816012850160208801612094565b7f222c20226465736372697074696f6e223a202274686520706978656c732061726012918401918201527f652065786163746c7920776861742074686579207365656d222c2022696d616760328201527f65223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c0060528201528351611dfc816071840160208801612094565b61227d60f01b60719290910191820152607301949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611e4f81601d850160208701612094565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e8f90830184611cae565b9695505050505050565b602081526000611aa36020830184611cae565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273151bdd185b081cdd5c1c1b1e481c995858da195960621b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600061ffff8083168185168083038211156120065761200661212a565b01949350505050565b600082198211156120225761202261212a565b500190565b60008261203657612036612140565b500490565b60008160001904831182151516156120555761205561212a565b500290565b600061ffff838116908316818110156120755761207561212a565b039392505050565b60008282101561208f5761208f61212a565b500390565b60005b838110156120af578181015183820152602001612097565b83811115610cb65750506000910152565b600181811c908216806120d457607f821691505b602082108114156120f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210f5761210f61212a565b5060010190565b60008261212557612125612140565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9157600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d22302030203130302031303022207374796c653d226261636b67726f756e642d636f6c6f723a626c61636b223e3c7265637420783d22222077696474683d223122206865696768743d2231222066696c6c3d227768697465223e3c2f726563743e3c2f7376673ea26469706673582212206f65c2744dbc9a1183606608b8e3c6d01763436a5b83e3114b7665c612e3987d64736f6c63430008070033

Deployed Bytecode Sourcemap

44571:4314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38421:224;;;;;;:::i;:::-;;:::i;:::-;;;7284:14:1;;7277:22;7259:41;;7247:2;7232:18;38421:224:0;;;;;;;;25535:100;;;:::i;:::-;;;;;;;:::i;27094:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6582:32:1;;;6564:51;;6552:2;6537:18;27094:221:0;6418:203:1;26617:411:0;;;;;;:::i;:::-;;:::i;:::-;;45563:201;;;;;;:::i;:::-;;:::i;:::-;;;;15799:25:1;;;15855:2;15840:18;;15833:34;;;;15772:18;45563:201:0;15625:248:1;39061:113:0;39149:10;:17;39061:113;;;15589:25:1;;;15577:2;15562:18;39061:113:0;15443:177:1;27984:339:0;;;;;;:::i;:::-;;:::i;38729:256::-;;;;;;:::i;:::-;;:::i;28394:185::-;;;;;;:::i;:::-;;:::i;47974:175::-;;;;;;:::i;:::-;;:::i;47031:366::-;;;:::i;39251:233::-;;;;;;:::i;:::-;;:::i;25229:239::-;;;;;;:::i;:::-;;:::i;47409:553::-;;;;;;:::i;:::-;;:::i;24959:208::-;;;;;;:::i;:::-;;:::i;9927:94::-;;;:::i;9276:87::-;9349:6;;-1:-1:-1;;;;;9349:6:0;9276:87;;25704:104;;;:::i;27387:295::-;;;;;;:::i;:::-;;:::i;28650:328::-;;;;;;:::i;:::-;;:::i;45776:1247::-;;;;;;:::i;:::-;;:::i;27753:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27753:164;10176:192;;;;;;:::i;:::-;;:::i;38421:224::-;38523:4;-1:-1:-1;;;;;;38547:50:0;;-1:-1:-1;;;38547:50:0;;:90;;;38601:36;38625:11;38601:23;:36::i;:::-;38540:97;38421:224;-1:-1:-1;;38421:224:0:o;25535:100::-;25589:13;25622:5;25615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:100;:::o;27094:221::-;27170:7;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;27190:73;;;;-1:-1:-1;;;27190:73:0;;12460:2:1;27190:73:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:42;12641:19;;27190:73:0;;;;;;;;;-1:-1:-1;27283:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27283:24:0;;27094:221::o;26617:411::-;26698:13;26714:23;26729:7;26714:14;:23::i;:::-;26698:39;;26762:5;-1:-1:-1;;;;;26756:11:0;:2;-1:-1:-1;;;;;26756:11:0;;;26748:57;;;;-1:-1:-1;;;26748:57:0;;13644:2:1;26748:57:0;;;13626:21:1;13683:2;13663:18;;;13656:30;13722:34;13702:18;;;13695:62;-1:-1:-1;;;13773:18:1;;;13766:31;13814:19;;26748:57:0;13442:397:1;26748:57:0;8216:10;-1:-1:-1;;;;;26840:21:0;;;;:62;;-1:-1:-1;26865:37:0;26882:5;8216:10;27753:164;:::i;26865:37::-;26818:168;;;;-1:-1:-1;;;26818:168:0;;10853:2:1;26818:168:0;;;10835:21:1;10892:2;10872:18;;;10865:30;10931:34;10911:18;;;10904:62;11002:26;10982:18;;;10975:54;11046:19;;26818:168:0;10651:420:1;26818:168:0;26999:21;27008:2;27012:7;26999:8;:21::i;:::-;26687:341;26617:411;;:::o;45563:201::-;45625:9;45636;45658:11;45672:15;45679:7;45672:6;:15::i;:::-;45709:1;;45658:29;;-1:-1:-1;;;;45709:1:0;;;;45725:8;45709:1;45658:29;45725:8;:::i;:::-;45721:12;-1:-1:-1;45748:8:0;;;;:3;:8;:::i;:::-;45744:12;;45647:117;;45563:201;;;:::o;27984:339::-;28179:41;8216:10;28212:7;28179:18;:41::i;:::-;28171:103;;;;-1:-1:-1;;;28171:103:0;;;;;;;:::i;:::-;28287:28;28297:4;28303:2;28307:7;28287:9;:28::i;38729:256::-;38826:7;38862:23;38879:5;38862:16;:23::i;:::-;38854:5;:31;38846:87;;;;-1:-1:-1;;;38846:87:0;;7737:2:1;38846:87:0;;;7719:21:1;7776:2;7756:18;;;7749:30;7815:34;7795:18;;;7788:62;-1:-1:-1;;;7866:18:1;;;7859:41;7917:19;;38846:87:0;7535:407:1;38846:87:0;-1:-1:-1;;;;;;38951:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38729:256::o;28394:185::-;28532:39;28549:4;28555:2;28559:7;28532:39;;;;;;;;;;;;:16;:39::i;47974:175::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;;;;;;:::i;:::-;12215:1;12944:7;:18;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23:::1;9488:68;;;;-1:-1:-1::0;;;9488:68:0::1;;;;;;;:::i;:::-;48075:1:::2;::::0;:3:::2;::::0;48077:1:::2;::::0;-1:-1:-1;;;48075:1:0;::::2;;;:3;:::i;:::-;48060:12;::::0;:18:::2;::::0;;::::2;-1:-1:-1::0;;;48060:12:0;;::::2;::::0;;::::2;:18;48052:51;;;;-1:-1:-1::0;;;48052:51:0::2;;;;;;;:::i;:::-;48114:27;48124:7;9349:6:::0;;-1:-1:-1;;;;;9349:6:0;;9276:87;48124:7:::2;48133;48114:9;:27::i;:::-;-1:-1:-1::0;12171:1:0;13123:7;:22;47974:175::o;47031:366::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;;;;;;:::i;:::-;12215:1;12944:7;:18;47102:12:::1;::::0;::::1;-1:-1:-1::0;;;47102:12:0;;::::1;;47079:20;47129:29:::0;;;:14:::1;:29;::::0;;;;;::::1;;::::0;:34:::1;47125:85;;;47180:18;47197:1;47180:18:::0;::::1;:::i;:::-;;;47125:85;47244:1;::::0;:3:::1;::::0;47246:1:::1;::::0;-1:-1:-1;;;47244:1:0;::::1;;;:3;:::i;:::-;47228:19;;:13;:19;;;47220:52;;;;-1:-1:-1::0;;;47220:52:0::1;;;;;;;:::i;:::-;47283:38;8216:10:::0;47307:13:::1;47283:38;;:9;:38::i;:::-;47332:18;47349:1;47332:18:::0;::::1;:::i;:::-;47361:12;:28:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;47361:28:0::1;-1:-1:-1::0;;;;47361:28:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;13123:7:0;:22;47031:366::o;39251:233::-;39326:7;39362:30;39149:10;:17;;39061:113;39362:30;39354:5;:38;39346:95;;;;-1:-1:-1;;;39346:95:0;;14464:2:1;39346:95:0;;;14446:21:1;14503:2;14483:18;;;14476:30;14542:34;14522:18;;;14515:62;-1:-1:-1;;;14593:18:1;;;14586:42;14645:19;;39346:95:0;14262:408:1;39346:95:0;39459:10;39470:5;39459:17;;;;;;;;:::i;:::-;;;;;;;;;39452:24;;39251:233;;;:::o;25229:239::-;25301:7;25337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25337:16:0;25372:19;25364:73;;;;-1:-1:-1;;;25364:73:0;;11689:2:1;25364:73:0;;;11671:21:1;11728:2;11708:18;;;11701:30;11767:34;11747:18;;;11740:62;-1:-1:-1;;;11818:18:1;;;11811:39;11867:19;;25364:73:0;11487:405:1;47409:553:0;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;;;;;;:::i;:::-;12215:1;12944:7;:18;;;47483:12;::::1;;47475:64;;;::::0;-1:-1:-1;;;47475:64:0;;15237:2:1;47475:64:0::1;::::0;::::1;15219:21:1::0;15276:2;15256:18;;;15249:30;15315:34;15295:18;;;15288:62;-1:-1:-1;;;15366:18:1;;;15359:37;15413:19;;47475:64:0::1;15035:403:1::0;47475:64:0::1;47573:12;::::0;-1:-1:-1;;;47573:12:0;::::1;;;47612:1;47596:320;47620:6;47615:1;:11;;;47596:320;;47655:29;::::0;::::1;;::::0;;;:14:::1;:29;::::0;;;;;::::1;;::::0;:34:::1;47651:93;;;47710:18;47727:1;47710:18:::0;::::1;:::i;:::-;;;47651:93;47782:1;::::0;:3:::1;::::0;47784:1:::1;::::0;-1:-1:-1;;;47782:1:0;::::1;;;:3;:::i;:::-;47766:19;;:13;:19;;;47758:52;;;;-1:-1:-1::0;;;47758:52:0::1;;;;;;;:::i;:::-;47825:38;8216:10:::0;47849:13:::1;47825:38;;:9;:38::i;:::-;47878:18;47895:1;47878:18:::0;::::1;:::i;:::-;::::0;-1:-1:-1;47628:6:0::1;47633:1;47628:6:::0;::::1;:::i;:::-;;;47596:320;;;-1:-1:-1::0;47926:12:0::1;:28:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;47926:28:0::1;-1:-1:-1::0;;;;47926:28:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;13123:7:0;:22;47409:553::o;24959:208::-;25031:7;-1:-1:-1;;;;;25059:19:0;;25051:74;;;;-1:-1:-1;;;25051:74:0;;11278:2:1;25051:74:0;;;11260:21:1;11317:2;11297:18;;;11290:30;11356:34;11336:18;;;11329:62;-1:-1:-1;;;11407:18:1;;;11400:40;11457:19;;25051:74:0;11076:406:1;25051:74:0;-1:-1:-1;;;;;;25143:16:0;;;;;:9;:16;;;;;;;24959:208::o;9927:94::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;9992:21:::1;10010:1;9992:9;:21::i;:::-;9927:94::o:0;25704:104::-;25760:13;25793:7;25786:14;;;;;:::i;27387:295::-;-1:-1:-1;;;;;27490:24:0;;8216:10;27490:24;;27482:62;;;;-1:-1:-1;;;27482:62:0;;10086:2:1;27482:62:0;;;10068:21:1;10125:2;10105:18;;;10098:30;10164:27;10144:18;;;10137:55;10209:18;;27482:62:0;9884:349:1;27482:62:0;8216:10;27557:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27557:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27557:53:0;;;;;;;;;;27626:48;;7259:41:1;;;27557:42:0;;8216:10;27626:48;;7232:18:1;27626:48:0;;;;;;;27387:295;;:::o;28650:328::-;28825:41;8216:10;28858:7;28825:18;:41::i;:::-;28817:103;;;;-1:-1:-1;;;28817:103:0;;;;;;;:::i;:::-;28931:39;28945:4;28951:2;28955:7;28964:5;28931:13;:39::i;:::-;28650:328;;;;:::o;45776:1247::-;45841:13;45867:22;;:::i;:::-;45900:7;45918;45947:23;45962:7;45947:14;:23::i;:::-;45936:34;;;;;;;;45981:151;;;;;;;;;;;;;;;;;;;46154:12;46163:2;46154:8;:12::i;:::-;46143:8;;;;:23;;;;46177:18;;;;;;;;;;;-1:-1:-1;;;46177:18:0;;;;;;;:8;;:18;46217:12;46226:2;46217:8;:12::i;:::-;46206:8;;;;:23;;;;46240:62;;;;;;;;;;;;;46206:8;46240:62;;;:8;;;:62;;;46360:8;;46240;46370;;;;46380;;;;;46390;;;;46343:66;;46313:20;;46343:66;;46360:8;46380;;46390;46240:62;;46343:66;;:::i;:::-;;;;;;;;;;;;;46313:97;;46421:18;46442:466;46613:17;46622:7;46613:8;:17::i;:::-;46781:28;46801:6;46781:13;:28::i;:::-;46523:340;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46442:13;:466::i;:::-;46421:487;;46985:4;46935:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46935:55:0;;;;;;;;;;45776:1247;-1:-1:-1;;;;;;;45776:1247:0:o;10176:192::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10265:22:0;::::1;10257:73;;;::::0;-1:-1:-1;;;10257:73:0;;8568:2:1;10257:73:0::1;::::0;::::1;8550:21:1::0;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;-1:-1:-1;;;8697:18:1;;;8690:36;8743:19;;10257:73:0::1;8366:402:1::0;10257:73:0::1;10341:19;10351:8;10341:9;:19::i;:::-;10176:192:::0;:::o;24590:305::-;24692:4;-1:-1:-1;;;;;;24729:40:0;;-1:-1:-1;;;24729:40:0;;:105;;-1:-1:-1;;;;;;;24786:48:0;;-1:-1:-1;;;24786:48:0;24729:105;:158;;;-1:-1:-1;;;;;;;;;;23306:40:0;;;24851:36;23197:157;34470:174;34545:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34545:29:0;-1:-1:-1;;;;;34545:29:0;;;;;;;;:24;;34599:23;34545:24;34599:14;:23::i;:::-;-1:-1:-1;;;;;34590:46:0;;;;;;;;;;;34470:174;;:::o;45385:166::-;45474:4;;45439:7;;45474:4;-1:-1:-1;;;45474:4:0;;;;;-1:-1:-1;;;45501:1:0;;;45520:23;45474:4;45533:5;45501:1;45520:5;:23::i;:::-;45513:30;45385:166;-1:-1:-1;;;;45385:166:0:o;30782:348::-;30875:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;30892:73;;;;-1:-1:-1;;;30892:73:0;;10440:2:1;30892:73:0;;;10422:21:1;10479:2;10459:18;;;10452:30;10518:34;10498:18;;;10491:62;-1:-1:-1;;;10569:18:1;;;10562:42;10621:19;;30892:73:0;10238:408:1;30892:73:0;30976:13;30992:23;31007:7;30992:14;:23::i;:::-;30976:39;;31045:5;-1:-1:-1;;;;;31034:16:0;:7;-1:-1:-1;;;;;31034:16:0;;:51;;;;31078:7;-1:-1:-1;;;;;31054:31:0;:20;31066:7;31054:11;:20::i;:::-;-1:-1:-1;;;;;31054:31:0;;31034:51;:87;;;-1:-1:-1;;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31089:32;27753:164;33774:578;33933:4;-1:-1:-1;;;;;33906:31:0;:23;33921:7;33906:14;:23::i;:::-;-1:-1:-1;;;;;33906:31:0;;33898:85;;;;-1:-1:-1;;;33898:85:0;;13234:2:1;33898:85:0;;;13216:21:1;13273:2;13253:18;;;13246:30;13312:34;13292:18;;;13285:62;-1:-1:-1;;;13363:18:1;;;13356:39;13412:19;;33898:85:0;13032:405:1;33898:85:0;-1:-1:-1;;;;;34002:16:0;;33994:65;;;;-1:-1:-1;;;33994:65:0;;9681:2:1;33994:65:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:34;9739:18;;;9732:62;-1:-1:-1;;;9810:18:1;;;9803:34;9854:19;;33994:65:0;9479:400:1;33994:65:0;34072:39;34093:4;34099:2;34103:7;34072:20;:39::i;:::-;34176:29;34193:1;34197:7;34176:8;:29::i;:::-;-1:-1:-1;;;;;34218:15:0;;;;;;:9;:15;;;;;:20;;34237:1;;34218:15;:20;;34237:1;;34218:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34249:13:0;;;;;;:9;:13;;;;;:18;;34266:1;;34249:13;:18;;34266:1;;34249:18;:::i;:::-;;;;-1:-1:-1;;34278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34278:21:0;-1:-1:-1;;;;;34278:21:0;;;;;;;;;34317:27;;34278:16;;34317:27;;;;;;;33774:578;;;:::o;31472:110::-;31548:26;31558:2;31562:7;31548:26;;;;;;;;;;;;:9;:26::i;:::-;31472:110;;:::o;10376:173::-;10451:6;;;-1:-1:-1;;;;;10468:17:0;;;-1:-1:-1;;;;;;10468:17:0;;;;;;;10501:40;;10451:6;;;10468:17;10451:6;;10501:40;;10432:16;;10501:40;10421:128;10376:173;:::o;29860:315::-;30017:28;30027:4;30033:2;30037:7;30017:9;:28::i;:::-;30064:48;30087:4;30093:2;30097:7;30106:5;30064:22;:48::i;:::-;30056:111;;;;-1:-1:-1;;;30056:111:0;;;;;;;:::i;48161:715::-;48217:13;48430:10;48426:53;;-1:-1:-1;;48457:10:0;;;;;;;;;;;;-1:-1:-1;;;48457:10:0;;;;;48161:715::o;48426:53::-;48504:5;48489:12;48545:78;48552:9;;48545:78;;48578:8;;;;:::i;:::-;;-1:-1:-1;48601:10:0;;-1:-1:-1;48609:2:0;48601:10;;:::i;:::-;;;48545:78;;;48633:19;48665:6;48655:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48655:17:0;;48633:39;;48683:154;48690:10;;48683:154;;48717:11;48727:1;48717:11;;:::i;:::-;;-1:-1:-1;48786:10:0;48794:2;48786:5;:10;:::i;:::-;48773:24;;:2;:24;:::i;:::-;48760:39;;48743:6;48750;48743:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;48743:56:0;;;;;;;;-1:-1:-1;48814:11:0;48823:2;48814:11;;:::i;:::-;;;48683:154;;49236:1607;49334:11;;49294:13;;49360:8;49356:23;;-1:-1:-1;;49370:9:0;;;;;;;;;-1:-1:-1;49370:9:0;;;49236:1607;-1:-1:-1;49236:1607:0:o;49356:23::-;49431:18;49469:1;49458:7;:3;49464:1;49458:7;:::i;:::-;49457:13;;;;:::i;:::-;49452:19;;:1;:19;:::i;:::-;49431:40;-1:-1:-1;49529:19:0;49561:15;49431:40;49574:2;49561:15;:::i;:::-;49551:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49551:26:0;;49529:48;;49590:18;49611:5;;;;;;;;;;;;;;;;;49590:26;;49680:1;49673:5;49669:13;49725:2;49717:6;49713:15;49776:1;49744:777;49799:3;49796:1;49793:10;49744:777;;;49854:1;49897:12;;;;;49891:19;49992:4;49980:2;49976:14;;;;;49958:40;;49952:47;50101:2;50097:14;;;50093:25;;50079:40;;50073:47;50230:1;50226:13;;;50222:24;;50208:39;;50202:46;50350:16;;;;50336:31;;50330:38;50028:1;50024:11;;;50122:4;50069:58;;;50060:68;50153:11;;50198:57;;;50189:67;;;;50281:11;;50326:49;;50317:59;50405:3;50401:13;50434:22;;50504:1;50489:17;;;;49847:9;49744:777;;;49748:44;50553:1;50548:3;50544:11;50574:1;50569:84;;;;50672:1;50667:82;;;;50537:212;;50569:84;-1:-1:-1;;;;;50602:17:0;;50595:43;50569:84;;50667:82;-1:-1:-1;;;;;50700:17:0;;50693:41;50537:212;-1:-1:-1;;;50765:26:0;;;50772:6;49236:1607;-1:-1:-1;;;;49236:1607:0:o;45155:218::-;45260:1;;45272:94;45296:1;45291;:6;;;45272:94;;45344:1;45331:14;;45340:1;45331:10;;:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;45322:23;-1:-1:-1;45299:6:0;45304:1;45299:6;;:::i;:::-;;;45272:94;;;;45155:218;;;;;:::o;40097:589::-;-1:-1:-1;;;;;40303:18:0;;40299:187;;40338:40;40370:7;41513:10;:17;;41486:24;;;;:15;:24;;;;;:44;;;41541:24;;;;;;;;;;;;41409:164;40338:40;40299:187;;;40408:2;-1:-1:-1;;;;;40400:10:0;:4;-1:-1:-1;;;;;40400:10:0;;40396:90;;40427:47;40460:4;40466:7;40427:32;:47::i;:::-;-1:-1:-1;;;;;40500:16:0;;40496:183;;40533:45;40570:7;40533:36;:45::i;40496:183::-;40606:4;-1:-1:-1;;;;;40600:10:0;:2;-1:-1:-1;;;;;40600:10:0;;40596:83;;40627:40;40655:2;40659:7;40627:27;:40::i;31809:321::-;31939:18;31945:2;31949:7;31939:5;:18::i;:::-;31990:54;32021:1;32025:2;32029:7;32038:5;31990:22;:54::i;:::-;31968:154;;;;-1:-1:-1;;;31968:154:0;;;;;;;:::i;35209:803::-;35364:4;-1:-1:-1;;;;;35385:13:0;;15692:20;15740:8;35381:624;;35421:72;;-1:-1:-1;;;35421:72:0;;-1:-1:-1;;;;;35421:36:0;;;;;:72;;8216:10;;35472:4;;35478:7;;35487:5;;35421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35421:72:0;;;;;;;;-1:-1:-1;;35421:72:0;;;;;;;;;;;;:::i;:::-;;;35417:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35667:13:0;;35663:272;;35710:60;;-1:-1:-1;;;35710:60:0;;;;;;;:::i;35663:272::-;35885:6;35879:13;35870:6;35866:2;35862:15;35855:38;35417:533;-1:-1:-1;;;;;;35544:55:0;-1:-1:-1;;;35544:55:0;;-1:-1:-1;35537:62:0;;35381:624;-1:-1:-1;35989:4:0;35209:803;;;;;;:::o;42200:988::-;42466:22;42516:1;42491:22;42508:4;42491:16;:22::i;:::-;:26;;;;:::i;:::-;42528:18;42549:26;;;:17;:26;;;;;;42466:51;;-1:-1:-1;42682:28:0;;;42678:328;;-1:-1:-1;;;;;42749:18:0;;42727:19;42749:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42800:30;;;;;;:44;;;42917:30;;:17;:30;;;;;:43;;;42678:328;-1:-1:-1;43102:26:0;;;;:17;:26;;;;;;;;43095:33;;;-1:-1:-1;;;;;43146:18:0;;;;;:12;:18;;;;;:34;;;;;;;43139:41;42200:988::o;43483:1079::-;43761:10;:17;43736:22;;43761:21;;43781:1;;43761:21;:::i;:::-;43793:18;43814:24;;;:15;:24;;;;;;44187:10;:26;;43736:46;;-1:-1:-1;43814:24:0;;43736:46;;44187:26;;;;;;:::i;:::-;;;;;;;;;44165:48;;44251:11;44226:10;44237;44226:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44331:28;;;:15;:28;;;;;;;:41;;;44503:24;;;;;44496:31;44538:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43554:1008;;;43483:1079;:::o;40987:221::-;41072:14;41089:20;41106:2;41089:16;:20::i;:::-;-1:-1:-1;;;;;41120:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41165:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40987:221:0:o;32466:382::-;-1:-1:-1;;;;;32546:16:0;;32538:61;;;;-1:-1:-1;;;32538:61:0;;12099:2:1;32538:61:0;;;12081:21:1;;;12118:18;;;12111:30;12177:34;12157:18;;;12150:62;12229:18;;32538:61:0;11897:356:1;32538:61:0;30553:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;:30;32610:58;;;;-1:-1:-1;;;32610:58:0;;8975:2:1;32610:58:0;;;8957:21:1;9014:2;8994:18;;;8987:30;9053;9033:18;;;9026:58;9101:18;;32610:58:0;8773:352:1;32610:58:0;32681:45;32710:1;32714:2;32718:7;32681:20;:45::i;:::-;-1:-1:-1;;;;;32739:13:0;;;;;;:9;:13;;;;;:18;;32756:1;;32739:13;:18;;32756:1;;32739:18;:::i;:::-;;;;-1:-1:-1;;32768:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32768:21:0;-1:-1:-1;;;;;32768:21:0;;;;;;;;32807:33;;32768:16;;;32807:33;;32768:16;;32807:33;32466:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:1052::-;4009:3;4047:6;4041:13;4063:53;4109:6;4104:3;4097:4;4089:6;4085:17;4063:53;:::i;:::-;4179:13;;4138:16;;;;4201:57;4179:13;4138:16;4235:4;4223:17;;4201:57;:::i;:::-;4325:13;;4280:20;;;4347:57;4325:13;4280:20;4381:4;4369:17;;4347:57;:::i;:::-;4471:13;;4426:20;;;4493:57;4471:13;4426:20;4527:4;4515:17;;4493:57;:::i;:::-;4617:13;;4572:20;;;4639:57;4617:13;4572:20;4673:4;4661:17;;4639:57;:::i;:::-;4712:20;;3686:1052;-1:-1:-1;;;;;;;3686:1052:1:o;4743:1217::-;-1:-1:-1;;;5243:61:1;;5327:13;;5225:3;;5349:62;5327:13;5399:2;5390:12;;5383:4;5371:17;;5349:62;:::i;:::-;5475:66;5470:2;5430:16;;;5462:11;;;5455:87;5571:66;5566:2;5558:11;;5551:87;5667:66;5662:2;5654:11;;5647:87;5759:13;;5781:64;5759:13;5830:3;5822:12;;5815:4;5803:17;;5781:64;:::i;:::-;-1:-1:-1;;;5905:3:1;5864:17;;;;5897:12;;;5890:36;5950:3;5942:12;;4743:1217;-1:-1:-1;;;;4743:1217:1:o;5965:448::-;6227:31;6222:3;6215:44;6197:3;6288:6;6282:13;6304:62;6359:6;6354:2;6349:3;6345:12;6338:4;6330:6;6326:17;6304:62;:::i;:::-;6386:16;;;;6404:2;6382:25;;5965:448;-1:-1:-1;;5965:448:1:o;6626:488::-;-1:-1:-1;;;;;6895:15:1;;;6877:34;;6947:15;;6942:2;6927:18;;6920:43;6994:2;6979:18;;6972:34;;;7042:3;7037:2;7022:18;;7015:31;;;6820:4;;7063:45;;7088:19;;7080:6;7063:45;:::i;:::-;7055:53;6626:488;-1:-1:-1;;;;;;6626:488:1:o;7311:219::-;7460:2;7449:9;7442:21;7423:4;7480:44;7520:2;7509:9;7505:18;7497:6;7480:44;:::i;7947:414::-;8149:2;8131:21;;;8188:2;8168:18;;;8161:30;8227:34;8222:2;8207:18;;8200:62;-1:-1:-1;;;8293:2:1;8278:18;;8271:48;8351:3;8336:19;;7947:414::o;9130:344::-;9332:2;9314:21;;;9371:2;9351:18;;;9344:30;-1:-1:-1;;;9405:2:1;9390:18;;9383:50;9465:2;9450:18;;9130:344::o;12671:356::-;12873:2;12855:21;;;12892:18;;;12885:30;12951:34;12946:2;12931:18;;12924:62;13018:2;13003:18;;12671:356::o;13844:413::-;14046:2;14028:21;;;14085:2;14065:18;;;14058:30;14124:34;14119:2;14104:18;;14097:62;-1:-1:-1;;;14190:2:1;14175:18;;14168:47;14247:3;14232:19;;13844:413::o;14675:355::-;14877:2;14859:21;;;14916:2;14896:18;;;14889:30;14955:33;14950:2;14935:18;;14928:61;15021:2;15006:18;;14675:355::o;15878:224::-;15917:3;15945:6;15978:2;15975:1;15971:10;16008:2;16005:1;16001:10;16039:3;16035:2;16031:12;16026:3;16023:21;16020:47;;;16047:18;;:::i;:::-;16083:13;;15878:224;-1:-1:-1;;;;15878:224:1:o;16107:128::-;16147:3;16178:1;16174:6;16171:1;16168:13;16165:39;;;16184:18;;:::i;:::-;-1:-1:-1;16220:9:1;;16107:128::o;16240:120::-;16280:1;16306;16296:35;;16311:18;;:::i;:::-;-1:-1:-1;16345:9:1;;16240:120::o;16365:168::-;16405:7;16471:1;16467;16463:6;16459:14;16456:1;16453:21;16448:1;16441:9;16434:17;16430:45;16427:71;;;16478:18;;:::i;:::-;-1:-1:-1;16518:9:1;;16365:168::o;16538:217::-;16577:4;16606:6;16662:10;;;;16632;;16684:12;;;16681:38;;;16699:18;;:::i;:::-;16736:13;;16538:217;-1:-1:-1;;;16538:217:1:o;16760:125::-;16800:4;16828:1;16825;16822:8;16819:34;;;16833:18;;:::i;:::-;-1:-1:-1;16870:9:1;;16760:125::o;16890:258::-;16962:1;16972:113;16986:6;16983:1;16980:13;16972:113;;;17062:11;;;17056:18;17043:11;;;17036:39;17008:2;17001:10;16972:113;;;17103:6;17100:1;17097:13;17094:48;;;-1:-1:-1;;17138:1:1;17120:16;;17113:27;16890:258::o;17153:380::-;17232:1;17228:12;;;;17275;;;17296:61;;17350:4;17342:6;17338:17;17328:27;;17296:61;17403:2;17395:6;17392:14;17372:18;17369:38;17366:161;;;17449:10;17444:3;17440:20;17437:1;17430:31;17484:4;17481:1;17474:15;17512:4;17509:1;17502:15;17366:161;;17153:380;;;:::o;17538:135::-;17577:3;-1:-1:-1;;17598:17:1;;17595:43;;;17618:18;;:::i;:::-;-1:-1:-1;17665:1:1;17654:13;;17538:135::o;17678:112::-;17710:1;17736;17726:35;;17741:18;;:::i;:::-;-1:-1:-1;17775:9:1;;17678:112::o;17795:127::-;17856:10;17851:3;17847:20;17844:1;17837:31;17887:4;17884:1;17877:15;17911:4;17908:1;17901:15;17927:127;17988:10;17983:3;17979:20;17976:1;17969:31;18019:4;18016:1;18009:15;18043:4;18040:1;18033:15;18059:127;18120:10;18115:3;18111:20;18108:1;18101:31;18151:4;18148:1;18141:15;18175:4;18172:1;18165:15;18191:127;18252:10;18247:3;18243:20;18240:1;18233:31;18283:4;18280:1;18273:15;18307:4;18304:1;18297:15;18323:127;18384:10;18379:3;18375:20;18372:1;18365:31;18415:4;18412:1;18405:15;18439:4;18436:1;18429:15;18455:131;-1:-1:-1;;;;;;18529:32:1;;18519:43;;18509:71;;18576:1;18573;18566:12

Swarm Source

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