ETH Price: $2,491.35 (+3.08%)

Token

WaldosJoint (WJ)
 

Overview

Max Total Supply

261 WJ

Holders

156

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
heroseven.eth
Balance
1 WJ
0x30876BC6a7c48Ff65B5cAbB409B385FfeC0EcfFe
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:
WaldosJoint

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

// File: contracts/WaldosJoint.sol

pragma solidity ^0.8.4;





contract WaldosJoint is ERC721, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint256 public constant MAX_JOINT = 420;
    string public baseURI;
    address private mutationContract;
    address private Crespix = 0xA80F4b0E958BB28BFE4b77770DFfcd95037a9989;
    address private Nelyo = 0x65AfD1bEaD7Bf5b1289Cf0862b8d8854fA61faBc;
    address private Avida = 0x16F0d5304B15045f219c3C8B651A7932E1E1BDb4;

    constructor() ERC721("WaldosJoint", "WJ") {
        baseURI = "https://thewaldoslegend.mypinata.cloud/ipfs/QmV8Rrw6tR5YCBwuTDAb1pmC7jkD987q7JbFnZeMN6mt1b";
    }

    function safeMint(address to) public {
        require(_tokenIdCounter.current() +1 <= MAX_JOINT,"Max supply");
        require( _msgSender() == owner() || _msgSender() == Nelyo || _msgSender() == Crespix || _msgSender() == Avida,"Not allowed");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    
    }

    function withdraw(address payable receiver) public onlyOwner {
        uint balance = address(this).balance;
        receiver.transfer(balance);
    }
    function setNewbasURI(string memory newBaseURI) public onlyOwner returns (string memory) {
        baseURI = newBaseURI;
        return baseURI;
    }

     function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
        {
           return baseURI;
        }

   function totalSupply() public view virtual returns (uint256) {
        return _tokenIdCounter.current();
    }

     function setMutationContractAddress(address mutationContractAddress)
        external
        onlyOwner
    {
        mutationContract = mutationContractAddress;
    }

    function burnSerumForAddress(uint256 id, address burnTokenAddress)
        external
    {
        require(msg.sender == mutationContract, "Invalid burner address");
        _burn(id);
    }
}

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":[],"name":"MAX_JOINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"burnSerumForAddress","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":"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":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"address","name":"mutationContractAddress","type":"address"}],"name":"setMutationContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setNewbasURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a80546001600160a01b031990811673a80f4b0e958bb28bfe4b77770dffcd95037a998917909155600b805482167365afd1bead7bf5b1289cf0862b8d8854fa61fabc179055600c80549091167316f0d5304b15045f219c3c8b651a7932e1e1bdb41790553480156200007757600080fd5b50604080518082018252600b81526a15d85b191bdcd29bda5b9d60aa1b6020808301918252835180850190945260028452612ba560f11b908401528151919291620000c59160009162000185565b508051620000db90600190602084019062000185565b505050620000f8620000f26200012f60201b60201c565b62000133565b6040518060800160405280605a815260200162001add605a91398051620001289160089160209091019062000185565b5062000268565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000193906200022b565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b600181811c908216806200024057607f821691505b602082108114156200026257634e487b7160e01b600052602260045260246000fd5b50919050565b61186580620002786000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461030e578063d6b7795814610321578063e985e9c514610334578063f2fde38b1461037057600080fd5b806395d89b41146102e0578063a22cb465146102e8578063b88d4fde146102fb57600080fd5b80636352211e146102865780636c0360eb1461029957806370a08231146102a157806370ff9ea3146102b4578063715018a6146102c75780638da5cb5b146102cf57600080fd5b806323b872dd1161013057806323b872dd1461021e57806340d097c31461023157806342842e0e1461024457806342966c68146102575780634643fc511461026a57806351cff8d91461027357600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f55780631f5bfd111461020b575b600080fd5b61018b610186366004611579565b610383565b60405190151581526020015b60405180910390f35b6101a86103d5565b60405161019791906116bb565b6101c86101c33660046115f7565b610467565b6040516001600160a01b039091168152602001610197565b6101f36101ee36600461154e565b61048e565b005b6101fd6105a9565b604051908152602001610197565b6101f3610219366004611405565b6105b9565b6101f361022c366004611460565b6105e3565b6101f361023f366004611405565b610615565b6101f3610252366004611460565b610732565b6101f36102653660046115f7565b61074d565b6101fd6101a481565b6101f3610281366004611405565b61077e565b6101c86102943660046115f7565b6107be565b6101a861081e565b6101fd6102af366004611405565b6108ac565b6101f36102c236600461160f565b610932565b6101f361098e565b6006546001600160a01b03166101c8565b6101a86109a2565b6101f36102f636600461151d565b6109b1565b6101f36103093660046114a0565b6109bc565b6101a861031c3660046115f7565b6109f4565b6101a861032f3660046115b1565b610a88565b61018b610342366004611428565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361037e366004611405565b610ab3565b60006001600160e01b031982166380ac58cd60e01b14806103b457506001600160e01b03198216635b5e139f60e01b145b806103cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103e49061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546104109061179d565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610b29565b506000908152600460205260409020546001600160a01b031690565b6000610499826107be565b9050806001600160a01b0316836001600160a01b0316141561050c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061052857506105288133610342565b61059a5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610503565b6105a48383610b88565b505050565b60006105b460075490565b905090565b6105c1610bf6565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6105ee335b82610c50565b61060a5760405162461bcd60e51b815260040161050390611720565b6105a4838383610ccf565b6101a461062160075490565b61062c90600161176e565b11156106675760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b6044820152606401610503565b6006546001600160a01b03163314806106935750600b546001600160a01b0316336001600160a01b0316145b806106b15750600a546001600160a01b0316336001600160a01b0316145b806106cf5750600c546001600160a01b0316336001600160a01b0316145b6107095760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610503565b600061071460075490565b9050610724600780546001019055565b61072e8282610e6b565b5050565b6105a4838383604051806020016040528060008152506109bc565b610756336105e8565b6107725760405162461bcd60e51b815260040161050390611720565b61077b81610e85565b50565b610786610bf6565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156105a4573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806103cf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610503565b6008805461082b9061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546108579061179d565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b505050505081565b60006001600160a01b0382166109165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610503565b506001600160a01b031660009081526003602052604090205490565b6009546001600160a01b031633146109855760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206275726e6572206164647265737360501b6044820152606401610503565b61072e82610e85565b610996610bf6565b6109a06000610f20565b565b6060600180546103e49061179d565b61072e338383610f72565b6109c63383610c50565b6109e25760405162461bcd60e51b815260040161050390611720565b6109ee84848484611041565b50505050565b606060088054610a039061179d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2f9061179d565b8015610a7c5780601f10610a5157610100808354040283529160200191610a7c565b820191906000526020600020905b815481529060010190602001808311610a5f57829003601f168201915b50505050509050919050565b6060610a92610bf6565b8151610aa59060089060208501906112f6565b5060088054610a039061179d565b610abb610bf6565b6001600160a01b038116610b205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610503565b61077b81610f20565b6000818152600260205260409020546001600160a01b031661077b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610503565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bbd826107be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146109a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610503565b600080610c5c836107be565b9050806001600160a01b0316846001600160a01b03161480610ca357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610cc75750836001600160a01b0316610cbc84610467565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ce2826107be565b6001600160a01b031614610d465760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610503565b6001600160a01b038216610da85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610503565b610db3600082610b88565b6001600160a01b0383166000908152600360205260408120805460019290610ddc908490611786565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e0a90849061176e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61072e828260405180602001604052806000815250611074565b6000610e90826107be565b9050610e9d600083610b88565b6001600160a01b0381166000908152600360205260408120805460019290610ec6908490611786565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610503565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61104c848484610ccf565b611058848484846110a7565b6109ee5760405162461bcd60e51b8152600401610503906116ce565b61107e83836111b4565b61108b60008484846110a7565b6105a45760405162461bcd60e51b8152600401610503906116ce565b60006001600160a01b0384163b156111a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110eb90339089908890889060040161167e565b602060405180830381600087803b15801561110557600080fd5b505af1925050508015611135575060408051601f3d908101601f1916820190925261113291810190611595565b60015b61118f573d808015611163576040519150601f19603f3d011682016040523d82523d6000602084013e611168565b606091505b5080516111875760405162461bcd60e51b8152600401610503906116ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cc7565b506001949350505050565b6001600160a01b03821661120a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610503565b6000818152600260205260409020546001600160a01b03161561126f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610503565b6001600160a01b038216600090815260036020526040812080546001929061129890849061176e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546113029061179d565b90600052602060002090601f016020900481019282611324576000855561136a565b82601f1061133d57805160ff191683800117855561136a565b8280016001018555821561136a579182015b8281111561136a57825182559160200191906001019061134f565b5061137692915061137a565b5090565b5b80821115611376576000815560010161137b565b600067ffffffffffffffff808411156113aa576113aa6117ee565b604051601f8501601f19908116603f011681019082821181831017156113d2576113d26117ee565b816040528093508581528686860111156113eb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611416578081fd5b813561142181611804565b9392505050565b6000806040838503121561143a578081fd5b823561144581611804565b9150602083013561145581611804565b809150509250929050565b600080600060608486031215611474578081fd5b833561147f81611804565b9250602084013561148f81611804565b929592945050506040919091013590565b600080600080608085870312156114b5578081fd5b84356114c081611804565b935060208501356114d081611804565b925060408501359150606085013567ffffffffffffffff8111156114f2578182fd5b8501601f81018713611502578182fd5b6115118782356020840161138f565b91505092959194509250565b6000806040838503121561152f578182fd5b823561153a81611804565b915060208301358015158114611455578182fd5b60008060408385031215611560578182fd5b823561156b81611804565b946020939093013593505050565b60006020828403121561158a578081fd5b813561142181611819565b6000602082840312156115a6578081fd5b815161142181611819565b6000602082840312156115c2578081fd5b813567ffffffffffffffff8111156115d8578182fd5b8201601f810184136115e8578182fd5b610cc78482356020840161138f565b600060208284031215611608578081fd5b5035919050565b60008060408385031215611621578182fd5b82359150602083013561145581611804565b60008151808452815b818110156116585760208185018101518683018201520161163c565b818111156116695782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b190830184611633565b9695505050505050565b6020815260006114216020830184611633565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115611781576117816117d8565b500190565b600082821015611798576117986117d8565b500390565b600181811c908216806117b157607f821691505b602082108114156117d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461077b57600080fd5b6001600160e01b03198116811461077b57600080fdfea26469706673582212203b758c2a6c6e4f1b423c18dc577846ab2c679a6548823846b7bbf9b659dff79064736f6c6343000804003368747470733a2f2f74686577616c646f736c6567656e642e6d7970696e6174612e636c6f75642f697066732f516d56385272773674523559434277755444416231706d43376a6b4439383771374a62466e5a654d4e366d743162

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461030e578063d6b7795814610321578063e985e9c514610334578063f2fde38b1461037057600080fd5b806395d89b41146102e0578063a22cb465146102e8578063b88d4fde146102fb57600080fd5b80636352211e146102865780636c0360eb1461029957806370a08231146102a157806370ff9ea3146102b4578063715018a6146102c75780638da5cb5b146102cf57600080fd5b806323b872dd1161013057806323b872dd1461021e57806340d097c31461023157806342842e0e1461024457806342966c68146102575780634643fc511461026a57806351cff8d91461027357600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e057806318160ddd146101f55780631f5bfd111461020b575b600080fd5b61018b610186366004611579565b610383565b60405190151581526020015b60405180910390f35b6101a86103d5565b60405161019791906116bb565b6101c86101c33660046115f7565b610467565b6040516001600160a01b039091168152602001610197565b6101f36101ee36600461154e565b61048e565b005b6101fd6105a9565b604051908152602001610197565b6101f3610219366004611405565b6105b9565b6101f361022c366004611460565b6105e3565b6101f361023f366004611405565b610615565b6101f3610252366004611460565b610732565b6101f36102653660046115f7565b61074d565b6101fd6101a481565b6101f3610281366004611405565b61077e565b6101c86102943660046115f7565b6107be565b6101a861081e565b6101fd6102af366004611405565b6108ac565b6101f36102c236600461160f565b610932565b6101f361098e565b6006546001600160a01b03166101c8565b6101a86109a2565b6101f36102f636600461151d565b6109b1565b6101f36103093660046114a0565b6109bc565b6101a861031c3660046115f7565b6109f4565b6101a861032f3660046115b1565b610a88565b61018b610342366004611428565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f361037e366004611405565b610ab3565b60006001600160e01b031982166380ac58cd60e01b14806103b457506001600160e01b03198216635b5e139f60e01b145b806103cf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546103e49061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546104109061179d565b801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b5050505050905090565b600061047282610b29565b506000908152600460205260409020546001600160a01b031690565b6000610499826107be565b9050806001600160a01b0316836001600160a01b0316141561050c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061052857506105288133610342565b61059a5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610503565b6105a48383610b88565b505050565b60006105b460075490565b905090565b6105c1610bf6565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6105ee335b82610c50565b61060a5760405162461bcd60e51b815260040161050390611720565b6105a4838383610ccf565b6101a461062160075490565b61062c90600161176e565b11156106675760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b6044820152606401610503565b6006546001600160a01b03163314806106935750600b546001600160a01b0316336001600160a01b0316145b806106b15750600a546001600160a01b0316336001600160a01b0316145b806106cf5750600c546001600160a01b0316336001600160a01b0316145b6107095760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610503565b600061071460075490565b9050610724600780546001019055565b61072e8282610e6b565b5050565b6105a4838383604051806020016040528060008152506109bc565b610756336105e8565b6107725760405162461bcd60e51b815260040161050390611720565b61077b81610e85565b50565b610786610bf6565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156105a4573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806103cf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610503565b6008805461082b9061179d565b80601f01602080910402602001604051908101604052809291908181526020018280546108579061179d565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b505050505081565b60006001600160a01b0382166109165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610503565b506001600160a01b031660009081526003602052604090205490565b6009546001600160a01b031633146109855760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206275726e6572206164647265737360501b6044820152606401610503565b61072e82610e85565b610996610bf6565b6109a06000610f20565b565b6060600180546103e49061179d565b61072e338383610f72565b6109c63383610c50565b6109e25760405162461bcd60e51b815260040161050390611720565b6109ee84848484611041565b50505050565b606060088054610a039061179d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2f9061179d565b8015610a7c5780601f10610a5157610100808354040283529160200191610a7c565b820191906000526020600020905b815481529060010190602001808311610a5f57829003601f168201915b50505050509050919050565b6060610a92610bf6565b8151610aa59060089060208501906112f6565b5060088054610a039061179d565b610abb610bf6565b6001600160a01b038116610b205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610503565b61077b81610f20565b6000818152600260205260409020546001600160a01b031661077b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610503565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bbd826107be565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146109a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610503565b600080610c5c836107be565b9050806001600160a01b0316846001600160a01b03161480610ca357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610cc75750836001600160a01b0316610cbc84610467565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ce2826107be565b6001600160a01b031614610d465760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610503565b6001600160a01b038216610da85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610503565b610db3600082610b88565b6001600160a01b0383166000908152600360205260408120805460019290610ddc908490611786565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e0a90849061176e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61072e828260405180602001604052806000815250611074565b6000610e90826107be565b9050610e9d600083610b88565b6001600160a01b0381166000908152600360205260408120805460019290610ec6908490611786565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610fd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610503565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61104c848484610ccf565b611058848484846110a7565b6109ee5760405162461bcd60e51b8152600401610503906116ce565b61107e83836111b4565b61108b60008484846110a7565b6105a45760405162461bcd60e51b8152600401610503906116ce565b60006001600160a01b0384163b156111a957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110eb90339089908890889060040161167e565b602060405180830381600087803b15801561110557600080fd5b505af1925050508015611135575060408051601f3d908101601f1916820190925261113291810190611595565b60015b61118f573d808015611163576040519150601f19603f3d011682016040523d82523d6000602084013e611168565b606091505b5080516111875760405162461bcd60e51b8152600401610503906116ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610cc7565b506001949350505050565b6001600160a01b03821661120a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610503565b6000818152600260205260409020546001600160a01b03161561126f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610503565b6001600160a01b038216600090815260036020526040812080546001929061129890849061176e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546113029061179d565b90600052602060002090601f016020900481019282611324576000855561136a565b82601f1061133d57805160ff191683800117855561136a565b8280016001018555821561136a579182015b8281111561136a57825182559160200191906001019061134f565b5061137692915061137a565b5090565b5b80821115611376576000815560010161137b565b600067ffffffffffffffff808411156113aa576113aa6117ee565b604051601f8501601f19908116603f011681019082821181831017156113d2576113d26117ee565b816040528093508581528686860111156113eb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611416578081fd5b813561142181611804565b9392505050565b6000806040838503121561143a578081fd5b823561144581611804565b9150602083013561145581611804565b809150509250929050565b600080600060608486031215611474578081fd5b833561147f81611804565b9250602084013561148f81611804565b929592945050506040919091013590565b600080600080608085870312156114b5578081fd5b84356114c081611804565b935060208501356114d081611804565b925060408501359150606085013567ffffffffffffffff8111156114f2578182fd5b8501601f81018713611502578182fd5b6115118782356020840161138f565b91505092959194509250565b6000806040838503121561152f578182fd5b823561153a81611804565b915060208301358015158114611455578182fd5b60008060408385031215611560578182fd5b823561156b81611804565b946020939093013593505050565b60006020828403121561158a578081fd5b813561142181611819565b6000602082840312156115a6578081fd5b815161142181611819565b6000602082840312156115c2578081fd5b813567ffffffffffffffff8111156115d8578182fd5b8201601f810184136115e8578182fd5b610cc78482356020840161138f565b600060208284031215611608578081fd5b5035919050565b60008060408385031215611621578182fd5b82359150602083013561145581611804565b60008151808452815b818110156116585760208185018101518683018201520161163c565b818111156116695782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b190830184611633565b9695505050505050565b6020815260006114216020830184611633565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115611781576117816117d8565b500190565b600082821015611798576117986117d8565b500390565b600181811c908216806117b157607f821691505b602082108114156117d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461077b57600080fd5b6001600160e01b03198116811461077b57600080fdfea26469706673582212203b758c2a6c6e4f1b423c18dc577846ab2c679a6548823846b7bbf9b659dff79064736f6c63430008040033

Deployed Bytecode Sourcemap

40245:2017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:305;;;;;;:::i;:::-;;:::i;:::-;;;6536:14:1;;6529:22;6511:41;;6499:2;6484:18;26202:305:0;;;;;;;;27129:100;;;:::i;:::-;;;;;;;:::i;28642:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5834:32:1;;;5816:51;;5804:2;5789:18;28642:171:0;5771:102:1;28159:417:0;;;;;;:::i;:::-;;:::i;:::-;;41764:112;;;:::i;:::-;;;13044:25:1;;;13032:2;13017:18;41764:112:0;12999:76:1;41885:172:0;;;;;;:::i;:::-;;:::i;29342:336::-;;;;;;:::i;:::-;;:::i;40906:385::-;;;;;;:::i;:::-;;:::i;29749:185::-;;;;;;:::i;:::-;;:::i;39922:243::-;;;;;;:::i;:::-;;:::i;40399:39::-;;40435:3;40399:39;;41299:153;;;;;;:::i;:::-;;:::i;26840:222::-;;;;;;:::i;:::-;;:::i;40445:21::-;;;:::i;26571:207::-;;;;;;:::i;:::-;;:::i;42065:194::-;;;;;;:::i;:::-;;:::i;6738:103::-;;;:::i;6090:87::-;6163:6;;-1:-1:-1;;;;;6163:6:0;6090:87;;27298:104;;;:::i;28885:155::-;;;;;;:::i;:::-;;:::i;30005:323::-;;;;;;:::i;:::-;;:::i;41620:137::-;;;;;;:::i;:::-;;:::i;41458:153::-;;;;;;:::i;:::-;;:::i;29111:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29232:25:0;;;29208:4;29232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29111:164;6996:201;;;;;;:::i;:::-;;:::i;26202:305::-;26304:4;-1:-1:-1;;;;;;26341:40:0;;-1:-1:-1;;;26341:40:0;;:105;;-1:-1:-1;;;;;;;26398:48:0;;-1:-1:-1;;;26398:48:0;26341:105;:158;;;-1:-1:-1;;;;;;;;;;19053:40:0;;;26463:36;26321:178;26202:305;-1:-1:-1;;26202:305:0:o;27129:100::-;27183:13;27216:5;27209:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27129:100;:::o;28642:171::-;28718:7;28738:23;28753:7;28738:14;:23::i;:::-;-1:-1:-1;28781:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28781:24:0;;28642:171::o;28159:417::-;28240:13;28256:23;28271:7;28256:14;:23::i;:::-;28240:39;;28304:5;-1:-1:-1;;;;;28298:11:0;:2;-1:-1:-1;;;;;28298:11:0;;;28290:57;;;;-1:-1:-1;;;28290:57:0;;11932:2:1;28290:57:0;;;11914:21:1;11971:2;11951:18;;;11944:30;12010:34;11990:18;;;11983:62;-1:-1:-1;;;12061:18:1;;;12054:31;12102:19;;28290:57:0;;;;;;;;;4721:10;-1:-1:-1;;;;;28382:21:0;;;;:62;;-1:-1:-1;28407:37:0;28424:5;4721:10;29111:164;:::i;28407:37::-;28360:174;;;;-1:-1:-1;;;28360:174:0;;10086:2:1;28360:174:0;;;10068:21:1;10125:2;10105:18;;;10098:30;10164:34;10144:18;;;10137:62;10235:32;10215:18;;;10208:60;10285:19;;28360:174:0;10058:252:1;28360:174:0;28547:21;28556:2;28560:7;28547:8;:21::i;:::-;28159:417;;;:::o;41764:112::-;41816:7;41843:25;:15;964:14;;872:114;41843:25;41836:32;;41764:112;:::o;41885:172::-;5976:13;:11;:13::i;:::-;42007:16:::1;:42:::0;;-1:-1:-1;;;;;;42007:42:0::1;-1:-1:-1::0;;;;;42007:42:0;;;::::1;::::0;;;::::1;::::0;;41885:172::o;29342:336::-;29537:41;4721:10;29556:12;29570:7;29537:18;:41::i;:::-;29529:100;;;;-1:-1:-1;;;29529:100:0;;;;;;;:::i;:::-;29642:28;29652:4;29658:2;29662:7;29642:9;:28::i;40906:385::-;40435:3;40962:25;:15;964:14;;872:114;40962:25;:28;;40989:1;40962:28;:::i;:::-;:41;;40954:63;;;;-1:-1:-1;;;40954:63:0;;9337:2:1;40954:63:0;;;9319:21:1;9376:2;9356:18;;;9349:30;-1:-1:-1;;;9395:18:1;;;9388:40;9445:18;;40954:63:0;9309:160:1;40954:63:0;6163:6;;-1:-1:-1;;;;;6163:6:0;4721:10;41037:23;;:48;;-1:-1:-1;41080:5:0;;-1:-1:-1;;;;;41080:5:0;4721:10;-1:-1:-1;;;;;41064:21:0;;41037:48;:75;;;-1:-1:-1;41105:7:0;;-1:-1:-1;;;;;41105:7:0;4721:10;-1:-1:-1;;;;;41089:23:0;;41037:75;:100;;;-1:-1:-1;41132:5:0;;-1:-1:-1;;;;;41132:5:0;4721:10;-1:-1:-1;;;;;41116:21:0;;41037:100;41028:124;;;;-1:-1:-1;;;41028:124:0;;10878:2:1;41028:124:0;;;10860:21:1;10917:2;10897:18;;;10890:30;-1:-1:-1;;;10936:18:1;;;10929:41;10987:18;;41028:124:0;10850:161:1;41028:124:0;41163:15;41181:25;:15;964:14;;872:114;41181:25;41163:43;;41217:27;:15;1083:19;;1101:1;1083:19;;;994:127;41217:27;41255:22;41265:2;41269:7;41255:9;:22::i;:::-;40906:385;;:::o;29749:185::-;29887:39;29904:4;29910:2;29914:7;29887:39;;;;;;;;;;;;:16;:39::i;39922:243::-;40040:41;4721:10;40059:12;4641:98;40040:41;40032:100;;;;-1:-1:-1;;;40032:100:0;;;;;;;:::i;:::-;40143:14;40149:7;40143:5;:14::i;:::-;39922:243;:::o;41299:153::-;5976:13;:11;:13::i;:::-;41418:26:::1;::::0;41386:21:::1;::::0;-1:-1:-1;;;;;41418:17:0;::::1;::::0;:26;::::1;;;::::0;41386:21;;41371:12:::1;41418:26:::0;41371:12;41418:26;41386:21;41418:17;:26;::::1;;;;;;;;;;;;;::::0;::::1;;;;26840:222:::0;26912:7;26948:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26948:16:0;26983:19;26975:56;;;;-1:-1:-1;;;26975:56:0;;11579:2:1;26975:56:0;;;11561:21:1;11618:2;11598:18;;;11591:30;-1:-1:-1;;;11637:18:1;;;11630:54;11701:18;;26975:56:0;11551:174:1;40445:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26571:207::-;26643:7;-1:-1:-1;;;;;26671:19:0;;26663:73;;;;-1:-1:-1;;;26663:73:0;;9676:2:1;26663:73:0;;;9658:21:1;9715:2;9695:18;;;9688:30;9754:34;9734:18;;;9727:62;-1:-1:-1;;;9805:18:1;;;9798:39;9854:19;;26663:73:0;9648:231:1;26663:73:0;-1:-1:-1;;;;;;26754:16:0;;;;;:9;:16;;;;;;;26571:207::o;42065:194::-;42188:16;;-1:-1:-1;;;;;42188:16:0;42174:10;:30;42166:65;;;;-1:-1:-1;;;42166:65:0;;12334:2:1;42166:65:0;;;12316:21:1;12373:2;12353:18;;;12346:30;-1:-1:-1;;;12392:18:1;;;12385:52;12454:18;;42166:65:0;12306:172:1;42166:65:0;42242:9;42248:2;42242:5;:9::i;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;27298:104::-;27354:13;27387:7;27380:14;;;;;:::i;28885:155::-;28980:52;4721:10;29013:8;29023;28980:18;:52::i;30005:323::-;30179:41;4721:10;30212:7;30179:18;:41::i;:::-;30171:100;;;;-1:-1:-1;;;30171:100:0;;;;;;;:::i;:::-;30282:38;30296:4;30302:2;30306:7;30315:4;30282:13;:38::i;:::-;30005:323;;;;:::o;41620:137::-;41693:13;41738:7;41731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41620:137;;;:::o;41458:153::-;41532:13;5976;:11;:13::i;:::-;41558:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41596:7;41589:14;;;;;:::i;6996:201::-:0;5976:13;:11;:13::i;:::-;-1:-1:-1;;;;;7085:22:0;::::1;7077:73;;;::::0;-1:-1:-1;;;7077:73:0;;7408:2:1;7077:73:0::1;::::0;::::1;7390:21:1::0;7447:2;7427:18;;;7420:30;7486:34;7466:18;;;7459:62;-1:-1:-1;;;7537:18:1;;;7530:36;7583:19;;7077:73:0::1;7380:228:1::0;7077:73:0::1;7161:28;7180:8;7161:18;:28::i;36617:135::-:0;31900:4;31924:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31924:16:0;36691:53;;;;-1:-1:-1;;;36691:53:0;;11579:2:1;36691:53:0;;;11561:21:1;11618:2;11598:18;;;11591:30;-1:-1:-1;;;11637:18:1;;;11630:54;11701:18;;36691:53:0;11551:174:1;35896::0;35971:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35971:29:0;-1:-1:-1;;;;;35971:29:0;;;;;;;;:24;;36025:23;35971:24;36025:14;:23::i;:::-;-1:-1:-1;;;;;36016:46:0;;;;;;;;;;;35896:174;;:::o;6255:132::-;6163:6;;-1:-1:-1;;;;;6163:6:0;4721:10;6319:23;6311:68;;;;-1:-1:-1;;;6311:68:0;;11218:2:1;6311:68:0;;;11200:21:1;;;11237:18;;;11230:30;11296:34;11276:18;;;11269:62;11348:18;;6311:68:0;11190:182:1;32129:264:0;32222:4;32239:13;32255:23;32270:7;32255:14;:23::i;:::-;32239:39;;32308:5;-1:-1:-1;;;;;32297:16:0;:7;-1:-1:-1;;;;;32297:16:0;;:52;;;-1:-1:-1;;;;;;29232:25:0;;;29208:4;29232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32317:32;32297:87;;;;32377:7;-1:-1:-1;;;;;32353:31:0;:20;32365:7;32353:11;:20::i;:::-;-1:-1:-1;;;;;32353:31:0;;32297:87;32289:96;32129:264;-1:-1:-1;;;;32129:264:0:o;35152:625::-;35311:4;-1:-1:-1;;;;;35284:31:0;:23;35299:7;35284:14;:23::i;:::-;-1:-1:-1;;;;;35284:31:0;;35276:81;;;;-1:-1:-1;;;35276:81:0;;7815:2:1;35276:81:0;;;7797:21:1;7854:2;7834:18;;;7827:30;7893:34;7873:18;;;7866:62;-1:-1:-1;;;7944:18:1;;;7937:35;7989:19;;35276:81:0;7787:227:1;35276:81:0;-1:-1:-1;;;;;35376:16:0;;35368:65;;;;-1:-1:-1;;;35368:65:0;;8578:2:1;35368:65:0;;;8560:21:1;8617:2;8597:18;;;8590:30;8656:34;8636:18;;;8629:62;-1:-1:-1;;;8707:18:1;;;8700:34;8751:19;;35368:65:0;8550:226:1;35368:65:0;35550:29;35567:1;35571:7;35550:8;:29::i;:::-;-1:-1:-1;;;;;35592:15:0;;;;;;:9;:15;;;;;:20;;35611:1;;35592:15;:20;;35611:1;;35592:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35623:13:0;;;;;;:9;:13;;;;;:18;;35640:1;;35623:13;:18;;35640:1;;35623:18;:::i;:::-;;;;-1:-1:-1;;35652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35652:21:0;-1:-1:-1;;;;;35652:21:0;;;;;;;;;35691:27;;35652:16;;35691:27;;;;;;;28159:417;;;:::o;32735:110::-;32811:26;32821:2;32825:7;32811:26;;;;;;;;;;;;:9;:26::i;34395:420::-;34455:13;34471:23;34486:7;34471:14;:23::i;:::-;34455:39;;34596:29;34613:1;34617:7;34596:8;:29::i;:::-;-1:-1:-1;;;;;34638:16:0;;;;;;:9;:16;;;;;:21;;34658:1;;34638:16;:21;;34658:1;;34638:21;:::i;:::-;;;;-1:-1:-1;;34677:16:0;;;;:7;:16;;;;;;34670:23;;-1:-1:-1;;;;;;34670:23:0;;;34711:36;34685:7;;34677:16;-1:-1:-1;;;;;34711:36:0;;;;;34677:16;;34711:36;40906:385;;:::o;7357:191::-;7450:6;;;-1:-1:-1;;;;;7467:17:0;;;-1:-1:-1;;;;;;7467:17:0;;;;;;;7500:40;;7450:6;;;7467:17;7450:6;;7500:40;;7431:16;;7500:40;7357:191;;:::o;36213:315::-;36368:8;-1:-1:-1;;;;;36359:17:0;:5;-1:-1:-1;;;;;36359:17:0;;;36351:55;;;;-1:-1:-1;;;36351:55:0;;8983:2:1;36351:55:0;;;8965:21:1;9022:2;9002:18;;;8995:30;9061:27;9041:18;;;9034:55;9106:18;;36351:55:0;8955:175:1;36351:55:0;-1:-1:-1;;;;;36417:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36417:46:0;;;;;;;;;;36479:41;;6511::1;;;36479::0;;6484:18:1;36479:41:0;;;;;;;36213:315;;;:::o;31209:313::-;31365:28;31375:4;31381:2;31385:7;31365:9;:28::i;:::-;31412:47;31435:4;31441:2;31445:7;31454:4;31412:22;:47::i;:::-;31404:110;;;;-1:-1:-1;;;31404:110:0;;;;;;;:::i;33072:319::-;33201:18;33207:2;33211:7;33201:5;:18::i;:::-;33252:53;33283:1;33287:2;33291:7;33300:4;33252:22;:53::i;:::-;33230:153;;;;-1:-1:-1;;;33230:153:0;;;;;;;:::i;37316:853::-;37470:4;-1:-1:-1;;;;;37491:13:0;;9083:19;:23;37487:675;;37527:71;;-1:-1:-1;;;37527:71:0;;-1:-1:-1;;;;;37527:36:0;;;;;:71;;4721:10;;37578:4;;37584:7;;37593:4;;37527:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37527:71:0;;;;;;;;-1:-1:-1;;37527:71:0;;;;;;;;;;;;:::i;:::-;;;37523:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37768:13:0;;37764:328;;37811:60;;-1:-1:-1;;;37811:60:0;;;;;;;:::i;37764:328::-;38042:6;38036:13;38027:6;38023:2;38019:15;38012:38;37523:584;-1:-1:-1;;;;;;37649:51:0;-1:-1:-1;;;37649:51:0;;-1:-1:-1;37642:58:0;;37487:675;-1:-1:-1;38146:4:0;37316:853;;;;;;:::o;33727:439::-;-1:-1:-1;;;;;33807:16:0;;33799:61;;;;-1:-1:-1;;;33799:61:0;;10517:2:1;33799:61:0;;;10499:21:1;;;10536:18;;;10529:30;10595:34;10575:18;;;10568:62;10647:18;;33799:61:0;10489:182:1;33799:61:0;31900:4;31924:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31924:16:0;:30;33871:58;;;;-1:-1:-1;;;33871:58:0;;8221:2:1;33871:58:0;;;8203:21:1;8260:2;8240:18;;;8233:30;8299;8279:18;;;8272:58;8347:18;;33871:58:0;8193:178:1;33871:58:0;-1:-1:-1;;;;;34000:13:0;;;;;;:9;:13;;;;;:18;;34017:1;;34000:13;:18;;34017:1;;34000:18;:::i;:::-;;;;-1:-1:-1;;34029:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34029:21:0;-1:-1:-1;;;;;34029:21:0;;;;;;;;34068:33;;34029:16;;;34068:33;;34029:16;;34068:33;40906:385;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;:::-;896:5;720:187;-1:-1:-1;;;720:187:1:o;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:436::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3244:15;;3237:23;3225:36;;3215:2;;3280:6;3272;3265:22;3326:325;3394:6;3402;3455:2;3443:9;3434:7;3430:23;3426:32;3423:2;;;3476:6;3468;3461:22;3423:2;3520:9;3507:23;3539:31;3564:5;3539:31;:::i;:::-;3589:5;3641:2;3626:18;;;;3613:32;;-1:-1:-1;;;3413:238:1:o;3656:255::-;3714:6;3767:2;3755:9;3746:7;3742:23;3738:32;3735:2;;;3788:6;3780;3773:22;3735:2;3832:9;3819:23;3851:30;3875:5;3851:30;:::i;3916:259::-;3985:6;4038:2;4026:9;4017:7;4013:23;4009:32;4006:2;;;4059:6;4051;4044:22;4006:2;4096:9;4090:16;4115:30;4139:5;4115:30;:::i;4180:480::-;4249:6;4302:2;4290:9;4281:7;4277:23;4273:32;4270:2;;;4323:6;4315;4308:22;4270:2;4368:9;4355:23;4401:18;4393:6;4390:30;4387:2;;;4438:6;4430;4423:22;4387:2;4466:22;;4519:4;4511:13;;4507:27;-1:-1:-1;4497:2:1;;4553:6;4545;4538:22;4497:2;4581:73;4646:7;4641:2;4628:16;4623:2;4619;4615:11;4581:73;:::i;4665:190::-;4724:6;4777:2;4765:9;4756:7;4752:23;4748:32;4745:2;;;4798:6;4790;4783:22;4745:2;-1:-1:-1;4826:23:1;;4735:120;-1:-1:-1;4735:120:1:o;4860:325::-;4928:6;4936;4989:2;4977:9;4968:7;4964:23;4960:32;4957:2;;;5010:6;5002;4995:22;4957:2;5051:9;5038:23;5028:33;;5111:2;5100:9;5096:18;5083:32;5124:31;5149:5;5124:31;:::i;5190:475::-;5231:3;5269:5;5263:12;5296:6;5291:3;5284:19;5321:3;5333:162;5347:6;5344:1;5341:13;5333:162;;;5409:4;5465:13;;;5461:22;;5455:29;5437:11;;;5433:20;;5426:59;5362:12;5333:162;;;5513:6;5510:1;5507:13;5504:2;;;5579:3;5572:4;5563:6;5558:3;5554:16;5550:27;5543:40;5504:2;-1:-1:-1;5647:2:1;5626:15;-1:-1:-1;;5622:29:1;5613:39;;;;5654:4;5609:50;;5239:426;-1:-1:-1;;5239:426:1:o;5878:488::-;-1:-1:-1;;;;;6147:15:1;;;6129:34;;6199:15;;6194:2;6179:18;;6172:43;6246:2;6231:18;;6224:34;;;6294:3;6289:2;6274:18;;6267:31;;;6072:4;;6315:45;;6340:19;;6332:6;6315:45;:::i;:::-;6307:53;6081:285;-1:-1:-1;;;;;;6081:285:1:o;6563:219::-;6712:2;6701:9;6694:21;6675:4;6732:44;6772:2;6761:9;6757:18;6749:6;6732:44;:::i;6787:414::-;6989:2;6971:21;;;7028:2;7008:18;;;7001:30;7067:34;7062:2;7047:18;;7040:62;-1:-1:-1;;;7133:2:1;7118:18;;7111:48;7191:3;7176:19;;6961:240::o;12483:410::-;12685:2;12667:21;;;12724:2;12704:18;;;12697:30;12763:34;12758:2;12743:18;;12736:62;-1:-1:-1;;;12829:2:1;12814:18;;12807:44;12883:3;12868:19;;12657:236::o;13080:128::-;13120:3;13151:1;13147:6;13144:1;13141:13;13138:2;;;13157:18;;:::i;:::-;-1:-1:-1;13193:9:1;;13128:80::o;13213:125::-;13253:4;13281:1;13278;13275:8;13272:2;;;13286:18;;:::i;:::-;-1:-1:-1;13323:9:1;;13262:76::o;13343:380::-;13422:1;13418:12;;;;13465;;;13486:2;;13540:4;13532:6;13528:17;13518:27;;13486:2;13593;13585:6;13582:14;13562:18;13559:38;13556:2;;;13639:10;13634:3;13630:20;13627:1;13620:31;13674:4;13671:1;13664:15;13702:4;13699:1;13692:15;13556:2;;13398:325;;;:::o;13728:127::-;13789:10;13784:3;13780:20;13777:1;13770:31;13820:4;13817:1;13810:15;13844:4;13841:1;13834:15;13860:127;13921:10;13916:3;13912:20;13909:1;13902:31;13952:4;13949:1;13942:15;13976:4;13973:1;13966:15;13992:131;-1:-1:-1;;;;;14067:31:1;;14057:42;;14047:2;;14113:1;14110;14103:12;14128:131;-1:-1:-1;;;;;;14202:32:1;;14192:43;;14182:2;;14249:1;14246;14239:12

Swarm Source

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