Contract 0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c9

Contract Overview

Balance:
0 FTM
Txn Hash Method
Block
From
To
Value [Txn Fee]
0xfe14153e9cba36956cdfe9f1f927cc4559e523cd60b6fb9fcbf3b7fe11a47a92Burn72514622022-02-05 4:41:03408 days 10 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c90 FTM0.008557170076
0x6dca4db6d0f49418098b8da0e80b91e1d76a9fe9aff5f80f764830bb95352d49Safe Mint72514082022-02-05 4:38:55408 days 10 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c90 FTM0.05025252232
0xca54154ba01b28d8e893fae647c8c82a50c715515d2a7aa4550ac55a43f6b223Burn72513632022-02-05 4:36:27408 days 10 hrs ago0x25dd7031b15c389ecbda1a0f402908c1003b7f79 IN  0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c90 FTM0.007967917048
0xebecb09902d5ab9d8844f85b01377fd929626d28c0f927e5af3aa9cf937d7b92Safe Transfer Fr...72513012022-02-05 4:34:16408 days 10 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c90 FTM0.012436519186
0x4d26a8b76bb6ea5a2844d4936acc30d136b5cecbe2be52aee044e867f1625240Safe Mint72510822022-02-05 4:24:45408 days 10 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0xa610c6f8e9fb3b54c3b555b0b7017d9b5db5a9c90 FTM0.04548509329
0xe93e46a0b44f8c174877d5032a35c8114b7fe62bc9c6db1d75279ac5fc6337b40x6080604072509532022-02-05 4:18:33408 days 10 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  Create: CryptoDachshund0 FTM0.368348348368
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0xe93e46a0b44f8c174877d5032a35c8114b7fe62bc9c6db1d75279ac5fc6337b472509532022-02-05 4:18:33408 days 10 hrs ago 0xd3acf352d27b64064857e916c5e78deccbb0716d  Contract Creation0 FTM
[ Download CSV Export 
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoDachshund

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at FtmScan.com on 2022-02-05
*/

// SPDX-License-Identifier: MIT
// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

// 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 v4.4.1 (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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly 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), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;



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

// File: contracts/cryptodachshund.sol


pragma solidity ^0.8.2;







/// @custom:security-contact [email protected]
contract CryptoDachshund is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    uint public constant MAX_SUPPLY = 500;

    constructor() ERC721("CryptoDachshund", "CDS") {}

    function safeMint(address to, string memory uri) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    // The following functions are overrides required by Solidity.

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

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

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_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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"},{"internalType":"string","name":"uri","type":"string"}],"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":"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"}]

60806040523480156200001157600080fd5b50604080518082018252600f81526e10dc9e5c1d1bd11858da1cda1d5b99608a1b60208083019182528351808501909452600384526243445360e81b9084015281519192916200006491600091620000f3565b5080516200007a906001906020840190620000f3565b50505062000097620000916200009d60201b60201c565b620000a1565b620001d6565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001019062000199565b90600052602060002090601f01602090048101928262000125576000855562000170565b82601f106200014057805160ff191683800117855562000170565b8280016001018555821562000170579182015b828111156200017057825182559160200191906001019062000153565b506200017e92915062000182565b5090565b5b808211156200017e576000815560010162000183565b600181811c90821680620001ae57607f821691505b60208210811415620001d057634e487b7160e01b600052602260045260246000fd5b50919050565b611efa80620001e66000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610285578063b88d4fde14610298578063c87b56dd146102ab578063d204c45e146102be578063e985e9c5146102d1578063f2fde38b1461030d57600080fd5b80636352211e1461023e57806370a0823114610251578063715018a6146102645780638da5cb5b1461026c57806395d89b411461027d57600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806332cb6b0c146101fc57806342842e0e1461020557806342966c68146102185780634f6ccce71461022b57600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611947565b610320565b60405190151581526020015b60405180910390f35b610177610331565b60405161016691906119bc565b6101976101923660046119cf565b6103c3565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611a04565b610450565b005b6008545b604051908152602001610166565b6101c26101e4366004611a2e565b610566565b6101c86101f7366004611a04565b610598565b6101c86101f481565b6101c2610213366004611a2e565b61062e565b6101c26102263660046119cf565b610649565b6101c86102393660046119cf565b6106c3565b61019761024c3660046119cf565b610756565b6101c861025f366004611a6a565b6107cd565b6101c2610854565b600b546001600160a01b0316610197565b61017761088a565b6101c2610293366004611a85565b610899565b6101c26102a6366004611b4d565b6108a8565b6101776102b93660046119cf565b6108e0565b6101c26102cc366004611bc9565b6108eb565b61015a6102df366004611c2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261031b366004611a6a565b610944565b600061032b826109dc565b92915050565b60606000805461034090611c5e565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90611c5e565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b60006103ce82610a01565b6104345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061045b82610756565b9050806001600160a01b0316836001600160a01b031614156104c95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161042b565b336001600160a01b03821614806104e557506104e581336102df565b6105575760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161042b565b6105618383610a1e565b505050565b610571335b82610a8c565b61058d5760405162461bcd60e51b815260040161042b90611c99565b610561838383610b76565b60006105a3836107cd565b82106106055760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161042b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610561838383604051806020016040528060008152506108a8565b6106523361056b565b6106b75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161042b565b6106c081610d21565b50565b60006106ce60085490565b82106107315760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161042b565b6008828154811061074457610744611cea565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061032b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161042b565b60006001600160a01b0382166108385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161042b565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461087e5760405162461bcd60e51b815260040161042b90611d00565b6108886000610d2a565b565b60606001805461034090611c5e565b6108a4338383610d7c565b5050565b6108b23383610a8c565b6108ce5760405162461bcd60e51b815260040161042b90611c99565b6108da84848484610e4b565b50505050565b606061032b82610e7e565b600b546001600160a01b031633146109155760405162461bcd60e51b815260040161042b90611d00565b6000610920600c5490565b9050610930600c80546001019055565b61093a8382610fed565b6105618183611007565b600b546001600160a01b0316331461096e5760405162461bcd60e51b815260040161042b90611d00565b6001600160a01b0381166109d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161042b565b6106c081610d2a565b60006001600160e01b0319821663780e9d6360e01b148061032b575061032b82611092565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a5382610756565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a9782610a01565b610af85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161042b565b6000610b0383610756565b9050806001600160a01b0316846001600160a01b03161480610b3e5750836001600160a01b0316610b33846103c3565b6001600160a01b0316145b80610b6e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b8982610756565b6001600160a01b031614610bf15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161042b565b6001600160a01b038216610c535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161042b565b610c5e8383836110e2565b610c69600082610a1e565b6001600160a01b0383166000908152600360205260408120805460019290610c92908490611d4b565b90915550506001600160a01b0382166000908152600360205260408120805460019290610cc0908490611d62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106c0816110ed565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610dde5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161042b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e56848484610b76565b610e628484848461112d565b6108da5760405162461bcd60e51b815260040161042b90611d7a565b6060610e8982610a01565b610eef5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161042b565b6000828152600a602052604081208054610f0890611c5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490611c5e565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b505050505090506000610f9f60408051602081019091526000815290565b9050805160001415610fb2575092915050565b815115610fe4578082604051602001610fcc929190611dcc565b60405160208183030381529060405292505050919050565b610b6e8461122b565b6108a4828260405180602001604052806000815250611303565b61101082610a01565b6110735760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161042b565b6000828152600a60209081526040909120825161056192840190611862565b60006001600160e01b031982166380ac58cd60e01b14806110c357506001600160e01b03198216635b5e139f60e01b145b8061032b57506301ffc9a760e01b6001600160e01b031983161461032b565b610561838383611336565b6110f6816113ee565b6000818152600a60205260409020805461110f90611c5e565b1590506106c0576000818152600a602052604081206106c0916118e6565b60006001600160a01b0384163b1561122057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611171903390899088908890600401611dfb565b6020604051808303816000875af19250505080156111ac575060408051601f3d908101601f191682019092526111a991810190611e38565b60015b611206573d8080156111da576040519150601f19603f3d011682016040523d82523d6000602084013e6111df565b606091505b5080516111fe5760405162461bcd60e51b815260040161042b90611d7a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b6e565b506001949350505050565b606061123682610a01565b61129a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161042b565b60006112b160408051602081019091526000815290565b905060008151116112d157604051806020016040528060008152506112fc565b806112db84611495565b6040516020016112ec929190611dcc565b6040516020818303038152906040525b9392505050565b61130d8383611593565b61131a600084848461112d565b6105615760405162461bcd60e51b815260040161042b90611d7a565b6001600160a01b0383166113915761138c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6113b4565b816001600160a01b0316836001600160a01b0316146113b4576113b483826116d2565b6001600160a01b0382166113cb576105618161176f565b826001600160a01b0316826001600160a01b03161461056157610561828261181e565b60006113f982610756565b9050611407816000846110e2565b611412600083610a1e565b6001600160a01b038116600090815260036020526040812080546001929061143b908490611d4b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060816114b95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114e357806114cd81611e55565b91506114dc9050600a83611e86565b91506114bd565b60008167ffffffffffffffff8111156114fe576114fe611ac1565b6040519080825280601f01601f191660200182016040528015611528576020820181803683370190505b5090505b8415610b6e5761153d600183611d4b565b915061154a600a86611e9a565b611555906030611d62565b60f81b81838151811061156a5761156a611cea565b60200101906001600160f81b031916908160001a90535061158c600a86611e86565b945061152c565b6001600160a01b0382166115e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161042b565b6115f281610a01565b1561163f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161042b565b61164b600083836110e2565b6001600160a01b0382166000908152600360205260408120805460019290611674908490611d62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016116df846107cd565b6116e99190611d4b565b60008381526007602052604090205490915080821461173c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061178190600190611d4b565b600083815260096020526040812054600880549394509092849081106117a9576117a9611cea565b9060005260206000200154905080600883815481106117ca576117ca611cea565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061180257611802611eae565b6001900381819060005260206000200160009055905550505050565b6000611829836107cd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461186e90611c5e565b90600052602060002090601f01602090048101928261189057600085556118d6565b82601f106118a957805160ff19168380011785556118d6565b828001600101855582156118d6579182015b828111156118d65782518255916020019190600101906118bb565b506118e292915061191c565b5090565b5080546118f290611c5e565b6000825580601f10611902575050565b601f0160209004906000526020600020908101906106c091905b5b808211156118e2576000815560010161191d565b6001600160e01b0319811681146106c057600080fd5b60006020828403121561195957600080fd5b81356112fc81611931565b60005b8381101561197f578181015183820152602001611967565b838111156108da5750506000910152565b600081518084526119a8816020860160208601611964565b601f01601f19169290920160200192915050565b6020815260006112fc6020830184611990565b6000602082840312156119e157600080fd5b5035919050565b80356001600160a01b03811681146119ff57600080fd5b919050565b60008060408385031215611a1757600080fd5b611a20836119e8565b946020939093013593505050565b600080600060608486031215611a4357600080fd5b611a4c846119e8565b9250611a5a602085016119e8565b9150604084013590509250925092565b600060208284031215611a7c57600080fd5b6112fc826119e8565b60008060408385031215611a9857600080fd5b611aa1836119e8565b915060208301358015158114611ab657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611af257611af2611ac1565b604051601f8501601f19908116603f01168101908282118183101715611b1a57611b1a611ac1565b81604052809350858152868686011115611b3357600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611b6357600080fd5b611b6c856119e8565b9350611b7a602086016119e8565b925060408501359150606085013567ffffffffffffffff811115611b9d57600080fd5b8501601f81018713611bae57600080fd5b611bbd87823560208401611ad7565b91505092959194509250565b60008060408385031215611bdc57600080fd5b611be5836119e8565b9150602083013567ffffffffffffffff811115611c0157600080fd5b8301601f81018513611c1257600080fd5b611c2185823560208401611ad7565b9150509250929050565b60008060408385031215611c3e57600080fd5b611c47836119e8565b9150611c55602084016119e8565b90509250929050565b600181811c90821680611c7257607f821691505b60208210811415611c9357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611d5d57611d5d611d35565b500390565b60008219821115611d7557611d75611d35565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611dde818460208801611964565b835190830190611df2818360208801611964565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2e90830184611990565b9695505050505050565b600060208284031215611e4a57600080fd5b81516112fc81611931565b6000600019821415611e6957611e69611d35565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e9557611e95611e70565b500490565b600082611ea957611ea9611e70565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c586d9720d049bf86f97f10679bbee04725c63a7b156fc85b6f3a70d6ea2228964736f6c634300080b0033

Deployed ByteCode Sourcemap

48844:1365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49994:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49994:212:0;;;;;;;;27258:100;;;:::i;:::-;;;;;;;:::i;28817:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28817:221:0;1528:203:1;28340:411:0;;;;;;:::i;:::-;;:::i;:::-;;43197:113;43285:10;:17;43197:113;;;2319:25:1;;;2307:2;2292:18;43197:113:0;2173:177:1;29567:339:0;;;;;;:::i;:::-;;:::i;42865:256::-;;;;;;:::i;:::-;;:::i;49038:37::-;;49072:3;49038:37;;29977:185;;;;;;:::i;:::-;;:::i;39289:245::-;;;;;;:::i;:::-;;:::i;43387:233::-;;;;;;:::i;:::-;;:::i;26952:239::-;;;;;;:::i;:::-;;:::i;26682:208::-;;;;;;:::i;:::-;;:::i;6228:103::-;;;:::i;5577:87::-;5650:6;;-1:-1:-1;;;;;5650:6:0;5577:87;;27427:104;;;:::i;29110:155::-;;;;;;:::i;:::-;;:::i;30233:328::-;;;;;;:::i;:::-;;:::i;49790:196::-;;;;;;:::i;:::-;;:::i;49141:236::-;;;;;;:::i;:::-;;:::i;29336:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29457:25:0;;;29433:4;29457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29336:164;6486:201;;;;;;:::i;:::-;;:::i;49994:212::-;50133:4;50162:36;50186:11;50162:23;:36::i;:::-;50155:43;49994:212;-1:-1:-1;;49994:212:0:o;27258:100::-;27312:13;27345:5;27338:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27258:100;:::o;28817:221::-;28893:7;28921:16;28929:7;28921;:16::i;:::-;28913:73;;;;-1:-1:-1;;;28913:73:0;;6051:2:1;28913:73:0;;;6033:21:1;6090:2;6070:18;;;6063:30;6129:34;6109:18;;;6102:62;-1:-1:-1;;;6180:18:1;;;6173:42;6232:19;;28913:73:0;;;;;;;;;-1:-1:-1;29006:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29006:24:0;;28817:221::o;28340:411::-;28421:13;28437:23;28452:7;28437:14;:23::i;:::-;28421:39;;28485:5;-1:-1:-1;;;;;28479:11:0;:2;-1:-1:-1;;;;;28479:11:0;;;28471:57;;;;-1:-1:-1;;;28471:57:0;;6464:2:1;28471:57:0;;;6446:21:1;6503:2;6483:18;;;6476:30;6542:34;6522:18;;;6515:62;-1:-1:-1;;;6593:18:1;;;6586:31;6634:19;;28471:57:0;6262:397:1;28471:57:0;4381:10;-1:-1:-1;;;;;28563:21:0;;;;:62;;-1:-1:-1;28588:37:0;28605:5;4381:10;29336:164;:::i;28588:37::-;28541:168;;;;-1:-1:-1;;;28541:168:0;;6866:2:1;28541:168:0;;;6848:21:1;6905:2;6885:18;;;6878:30;6944:34;6924:18;;;6917:62;7015:26;6995:18;;;6988:54;7059:19;;28541:168:0;6664:420:1;28541:168:0;28722:21;28731:2;28735:7;28722:8;:21::i;:::-;28410:341;28340:411;;:::o;29567:339::-;29762:41;4381:10;29781:12;29795:7;29762:18;:41::i;:::-;29754:103;;;;-1:-1:-1;;;29754:103:0;;;;;;;:::i;:::-;29870:28;29880:4;29886:2;29890:7;29870:9;:28::i;42865:256::-;42962:7;42998:23;43015:5;42998:16;:23::i;:::-;42990:5;:31;42982:87;;;;-1:-1:-1;;;42982:87:0;;7709:2:1;42982:87:0;;;7691:21:1;7748:2;7728:18;;;7721:30;7787:34;7767:18;;;7760:62;-1:-1:-1;;;7838:18:1;;;7831:41;7889:19;;42982:87:0;7507:407:1;42982:87:0;-1:-1:-1;;;;;;43087:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42865:256::o;29977:185::-;30115:39;30132:4;30138:2;30142:7;30115:39;;;;;;;;;;;;:16;:39::i;39289:245::-;39407:41;4381:10;39426:12;4301:98;39407:41;39399:102;;;;-1:-1:-1;;;39399:102:0;;8121:2:1;39399:102:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;-1:-1:-1;;;8250:18:1;;;8243:46;8306:19;;39399:102:0;7919:412:1;39399:102:0;39512:14;39518:7;39512:5;:14::i;:::-;39289:245;:::o;43387:233::-;43462:7;43498:30;43285:10;:17;;43197:113;43498:30;43490:5;:38;43482:95;;;;-1:-1:-1;;;43482:95:0;;8538:2:1;43482:95:0;;;8520:21:1;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:1;;;8660:42;8719:19;;43482:95:0;8336:408:1;43482:95:0;43595:10;43606:5;43595:17;;;;;;;;:::i;:::-;;;;;;;;;43588:24;;43387:233;;;:::o;26952:239::-;27024:7;27060:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27060:16:0;27095:19;27087:73;;;;-1:-1:-1;;;27087:73:0;;9083:2:1;27087:73:0;;;9065:21:1;9122:2;9102:18;;;9095:30;9161:34;9141:18;;;9134:62;-1:-1:-1;;;9212:18:1;;;9205:39;9261:19;;27087:73:0;8881:405:1;26682:208:0;26754:7;-1:-1:-1;;;;;26782:19:0;;26774:74;;;;-1:-1:-1;;;26774:74:0;;9493:2:1;26774:74:0;;;9475:21:1;9532:2;9512:18;;;9505:30;9571:34;9551:18;;;9544:62;-1:-1:-1;;;9622:18:1;;;9615:40;9672:19;;26774:74:0;9291:406:1;26774:74:0;-1:-1:-1;;;;;;26866:16:0;;;;;:9;:16;;;;;;;26682:208::o;6228:103::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;27427:104::-;27483:13;27516:7;27509:14;;;;;:::i;29110:155::-;29205:52;4381:10;29238:8;29248;29205:18;:52::i;:::-;29110:155;;:::o;30233:328::-;30408:41;4381:10;30441:7;30408:18;:41::i;:::-;30400:103;;;;-1:-1:-1;;;30400:103:0;;;;;;;:::i;:::-;30514:39;30528:4;30534:2;30538:7;30547:5;30514:13;:39::i;:::-;30233:328;;;;:::o;49790:196::-;49917:13;49955:23;49970:7;49955:14;:23::i;49141:236::-;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;49218:15:::1;49236:25;:15;997:14:::0;;905:114;49236:25:::1;49218:43;;49272:27;:15;1116:19:::0;;1134:1;1116:19;;;1027:127;49272:27:::1;49310:22;49320:2;49324:7;49310:9;:22::i;:::-;49343:26;49356:7;49365:3;49343:12;:26::i;6486:201::-:0;5650:6;;-1:-1:-1;;;;;5650:6:0;4381:10;5797:23;5789:68;;;;-1:-1:-1;;;5789:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6575:22:0;::::1;6567:73;;;::::0;-1:-1:-1;;;6567:73:0;;10265:2:1;6567:73:0::1;::::0;::::1;10247:21:1::0;10304:2;10284:18;;;10277:30;10343:34;10323:18;;;10316:62;-1:-1:-1;;;10394:18:1;;;10387:36;10440:19;;6567:73:0::1;10063:402:1::0;6567:73:0::1;6651:28;6670:8;6651:18;:28::i;42557:224::-:0;42659:4;-1:-1:-1;;;;;;42683:50:0;;-1:-1:-1;;;42683:50:0;;:90;;;42737:36;42761:11;42737:23;:36::i;32071:127::-;32136:4;32160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32160:16:0;:30;;;32071:127::o;36053:174::-;36128:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36128:29:0;-1:-1:-1;;;;;36128:29:0;;;;;;;;:24;;36182:23;36128:24;36182:14;:23::i;:::-;-1:-1:-1;;;;;36173:46:0;;;;;;;;;;;36053:174;;:::o;32365:348::-;32458:4;32483:16;32491:7;32483;:16::i;:::-;32475:73;;;;-1:-1:-1;;;32475:73:0;;10672:2:1;32475:73:0;;;10654:21:1;10711:2;10691:18;;;10684:30;10750:34;10730:18;;;10723:62;-1:-1:-1;;;10801:18:1;;;10794:42;10853:19;;32475:73:0;10470:408:1;32475:73:0;32559:13;32575:23;32590:7;32575:14;:23::i;:::-;32559:39;;32628:5;-1:-1:-1;;;;;32617:16:0;:7;-1:-1:-1;;;;;32617:16:0;;:51;;;;32661:7;-1:-1:-1;;;;;32637:31:0;:20;32649:7;32637:11;:20::i;:::-;-1:-1:-1;;;;;32637:31:0;;32617:51;:87;;;-1:-1:-1;;;;;;29457:25:0;;;29433:4;29457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32672:32;32609:96;32365:348;-1:-1:-1;;;;32365:348:0:o;35357:578::-;35516:4;-1:-1:-1;;;;;35489:31:0;:23;35504:7;35489:14;:23::i;:::-;-1:-1:-1;;;;;35489:31:0;;35481:85;;;;-1:-1:-1;;;35481:85:0;;11085:2:1;35481:85:0;;;11067:21:1;11124:2;11104:18;;;11097:30;11163:34;11143:18;;;11136:62;-1:-1:-1;;;11214:18:1;;;11207:39;11263:19;;35481:85:0;10883:405:1;35481:85:0;-1:-1:-1;;;;;35585:16:0;;35577:65;;;;-1:-1:-1;;;35577:65:0;;11495:2:1;35577:65:0;;;11477:21:1;11534:2;11514:18;;;11507:30;11573:34;11553:18;;;11546:62;-1:-1:-1;;;11624:18:1;;;11617:34;11668:19;;35577:65:0;11293:400:1;35577:65:0;35655:39;35676:4;35682:2;35686:7;35655:20;:39::i;:::-;35759:29;35776:1;35780:7;35759:8;:29::i;:::-;-1:-1:-1;;;;;35801:15:0;;;;;;:9;:15;;;;;:20;;35820:1;;35801:15;:20;;35820:1;;35801:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35832:13:0;;;;;;:9;:13;;;;;:18;;35849:1;;35832:13;:18;;35849:1;;35832:18;:::i;:::-;;;;-1:-1:-1;;35861:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35861:21:0;-1:-1:-1;;;;;35861:21:0;;;;;;;;;35900:27;;35861:16;;35900:27;;;;;;;35357:578;;;:::o;49667:115::-;49754:20;49766:7;49754:11;:20::i;6847:191::-;6940:6;;;-1:-1:-1;;;;;6957:17:0;;;-1:-1:-1;;;;;;6957:17:0;;;;;;;6990:40;;6940:6;;;6957:17;6940:6;;6990:40;;6921:16;;6990:40;6910:128;6847:191;:::o;36369:315::-;36524:8;-1:-1:-1;;;;;36515:17:0;:5;-1:-1:-1;;;;;36515:17:0;;;36507:55;;;;-1:-1:-1;;;36507:55:0;;12295:2:1;36507:55:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:27;12353:18;;;12346:55;12418:18;;36507:55:0;12093:349:1;36507:55:0;-1:-1:-1;;;;;36573:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36573:46:0;;;;;;;;;;36635:41;;540::1;;;36635::0;;513:18:1;36635:41:0;;;;;;;36369:315;;;:::o;31443:::-;31600:28;31610:4;31616:2;31620:7;31600:9;:28::i;:::-;31647:48;31670:4;31676:2;31680:7;31689:5;31647:22;:48::i;:::-;31639:111;;;;-1:-1:-1;;;31639:111:0;;;;;;;:::i;40052:679::-;40125:13;40159:16;40167:7;40159;:16::i;:::-;40151:78;;;;-1:-1:-1;;;40151:78:0;;13068:2:1;40151:78:0;;;13050:21:1;13107:2;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;-1:-1:-1;;;13197:18:1;;;13190:47;13254:19;;40151:78:0;12866:413:1;40151:78:0;40242:23;40268:19;;;:10;:19;;;;;40242:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40298:18;40319:10;28261:9;;;;;;;;;-1:-1:-1;28261:9:0;;;28184:94;40319:10;40298:31;;40411:4;40405:18;40427:1;40405:23;40401:72;;;-1:-1:-1;40452:9:0;40052:679;-1:-1:-1;;40052:679:0:o;40401:72::-;40577:23;;:27;40573:108;;40652:4;40658:9;40635:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40621:48;;;;40052:679;;;:::o;40573:108::-;40700:23;40715:7;40700:14;:23::i;33055:110::-;33131:26;33141:2;33145:7;33131:26;;;;;;;;;;;;:9;:26::i;40887:217::-;40987:16;40995:7;40987;:16::i;:::-;40979:75;;;;-1:-1:-1;;;40979:75:0;;13961:2:1;40979:75:0;;;13943:21:1;14000:2;13980:18;;;13973:30;14039:34;14019:18;;;14012:62;-1:-1:-1;;;14090:18:1;;;14083:44;14144:19;;40979:75:0;13759:410:1;40979:75:0;41065:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;26313:305::-;26415:4;-1:-1:-1;;;;;;26452:40:0;;-1:-1:-1;;;26452:40:0;;:105;;-1:-1:-1;;;;;;;26509:48:0;;-1:-1:-1;;;26509:48:0;26452:105;:158;;;-1:-1:-1;;;;;;;;;;18118:40:0;;;26574:36;18009:157;49455:204;49606:45;49633:4;49639:2;49643:7;49606:26;:45::i;41333:206::-;41402:20;41414:7;41402:11;:20::i;:::-;41445:19;;;;:10;:19;;;;;41439:33;;;;;:::i;:::-;:38;;-1:-1:-1;41435:97:0;;41501:19;;;;:10;:19;;;;;41494:26;;;:::i;37249:799::-;37404:4;-1:-1:-1;;;;;37425:13:0;;8188:20;8236:8;37421:620;;37461:72;;-1:-1:-1;;;37461:72:0;;-1:-1:-1;;;;;37461:36:0;;;;;:72;;4381:10;;37512:4;;37518:7;;37527:5;;37461:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37461:72:0;;;;;;;;-1:-1:-1;;37461:72:0;;;;;;;;;;;;:::i;:::-;;;37457:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37703:13:0;;37699:272;;37746:60;;-1:-1:-1;;;37746:60:0;;;;;;;:::i;37699:272::-;37921:6;37915:13;37906:6;37902:2;37898:15;37891:38;37457:529;-1:-1:-1;;;;;;37584:51:0;-1:-1:-1;;;37584:51:0;;-1:-1:-1;37577:58:0;;37421:620;-1:-1:-1;38025:4:0;37249:799;;;;;;:::o;27602:334::-;27675:13;27709:16;27717:7;27709;:16::i;:::-;27701:76;;;;-1:-1:-1;;;27701:76:0;;15124:2:1;27701:76:0;;;15106:21:1;15163:2;15143:18;;;15136:30;15202:34;15182:18;;;15175:62;-1:-1:-1;;;15253:18:1;;;15246:45;15308:19;;27701:76:0;14922:411:1;27701:76:0;27790:21;27814:10;28261:9;;;;;;;;;-1:-1:-1;28261:9:0;;;28184:94;27814:10;27790:34;;27866:1;27848:7;27842:21;:25;:86;;;;;;;;;;;;;;;;;27894:7;27903:18;:7;:16;:18::i;:::-;27877:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27842:86;27835:93;27602:334;-1:-1:-1;;;27602:334:0:o;33392:321::-;33522:18;33528:2;33532:7;33522:5;:18::i;:::-;33573:54;33604:1;33608:2;33612:7;33621:5;33573:22;:54::i;:::-;33551:154;;;;-1:-1:-1;;;33551:154:0;;;;;;;:::i;44233:589::-;-1:-1:-1;;;;;44439:18:0;;44435:187;;44474:40;44506:7;45649:10;:17;;45622:24;;;;:15;:24;;;;;:44;;;45677:24;;;;;;;;;;;;45545:164;44474:40;44435:187;;;44544:2;-1:-1:-1;;;;;44536:10:0;:4;-1:-1:-1;;;;;44536:10:0;;44532:90;;44563:47;44596:4;44602:7;44563:32;:47::i;:::-;-1:-1:-1;;;;;44636:16:0;;44632:183;;44669:45;44706:7;44669:36;:45::i;44632:183::-;44742:4;-1:-1:-1;;;;;44736:10:0;:2;-1:-1:-1;;;;;44736:10:0;;44732:83;;44763:40;44791:2;44795:7;44763:27;:40::i;34660:360::-;34720:13;34736:23;34751:7;34736:14;:23::i;:::-;34720:39;;34772:48;34793:5;34808:1;34812:7;34772:20;:48::i;:::-;34861:29;34878:1;34882:7;34861:8;:29::i;:::-;-1:-1:-1;;;;;34903:16:0;;;;;;:9;:16;;;;;:21;;34923:1;;34903:16;:21;;34923:1;;34903:21;:::i;:::-;;;;-1:-1:-1;;34942:16:0;;;;:7;:16;;;;;;34935:23;;-1:-1:-1;;;;;;34935:23:0;;;34976:36;34950:7;;34942:16;-1:-1:-1;;;;;34976:36:0;;;;;34942:16;;34976:36;34709:311;34660:360;:::o;1863:723::-;1919:13;2140:10;2136:53;;-1:-1:-1;;2167:10:0;;;;;;;;;;;;-1:-1:-1;;;2167:10:0;;;;;1863:723::o;2136:53::-;2214:5;2199:12;2255:78;2262:9;;2255:78;;2288:8;;;;:::i;:::-;;-1:-1:-1;2311:10:0;;-1:-1:-1;2319:2:0;2311:10;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2365:17:0;;2343:39;;2393:154;2400:10;;2393:154;;2427:11;2437:1;2427:11;;:::i;:::-;;-1:-1:-1;2496:10:0;2504:2;2496:5;:10;:::i;:::-;2483:24;;:2;:24;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2453:56:0;;;;;;;;-1:-1:-1;2524:11:0;2533:2;2524:11;;:::i;:::-;;;2393:154;;34049:382;-1:-1:-1;;;;;34129:16:0;;34121:61;;;;-1:-1:-1;;;34121:61:0;;16054:2:1;34121:61:0;;;16036:21:1;;;16073:18;;;16066:30;16132:34;16112:18;;;16105:62;16184:18;;34121:61:0;15852:356:1;34121:61:0;34202:16;34210:7;34202;:16::i;:::-;34201:17;34193:58;;;;-1:-1:-1;;;34193:58:0;;16415:2:1;34193:58:0;;;16397:21:1;16454:2;16434:18;;;16427:30;16493;16473:18;;;16466:58;16541:18;;34193:58:0;16213:352:1;34193:58:0;34264:45;34293:1;34297:2;34301:7;34264:20;:45::i;:::-;-1:-1:-1;;;;;34322:13:0;;;;;;:9;:13;;;;;:18;;34339:1;;34322:13;:18;;34339:1;;34322:18;:::i;:::-;;;;-1:-1:-1;;34351:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34351:21:0;-1:-1:-1;;;;;34351:21:0;;;;;;;;34390:33;;34351:16;;;34390:33;;34351:16;;34390:33;34049:382;;:::o;46336:988::-;46602:22;46652:1;46627:22;46644:4;46627:16;:22::i;:::-;:26;;;;:::i;:::-;46664:18;46685:26;;;:17;:26;;;;;;46602:51;;-1:-1:-1;46818:28:0;;;46814:328;;-1:-1:-1;;;;;46885:18:0;;46863:19;46885:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46936:30;;;;;;:44;;;47053:30;;:17;:30;;;;;:43;;;46814:328;-1:-1:-1;47238:26:0;;;;:17;:26;;;;;;;;47231:33;;;-1:-1:-1;;;;;47282:18:0;;;;;:12;:18;;;;;:34;;;;;;;47275:41;46336:988::o;47619:1079::-;47897:10;:17;47872:22;;47897:21;;47917:1;;47897:21;:::i;:::-;47929:18;47950:24;;;:15;:24;;;;;;48323:10;:26;;47872:46;;-1:-1:-1;47950:24:0;;47872:46;;48323:26;;;;;;:::i;:::-;;;;;;;;;48301:48;;48387:11;48362:10;48373;48362:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48467:28;;;:15;:28;;;;;;;:41;;;48639:24;;;;;48632:31;48674:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47690:1008;;;47619:1079;:::o;45123:221::-;45208:14;45225:20;45242:2;45225:16;:20::i;:::-;-1:-1:-1;;;;;45256:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45301:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45123:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:631;3427:5;3457:18;3498:2;3490:6;3487:14;3484:40;;;3504:18;;:::i;:::-;3579:2;3573:9;3547:2;3633:15;;-1:-1:-1;;3629:24:1;;;3655:2;3625:33;3621:42;3609:55;;;3679:18;;;3699:22;;;3676:46;3673:72;;;3725:18;;:::i;:::-;3765:10;3761:2;3754:22;3794:6;3785:15;;3824:6;3816;3809:22;3864:3;3855:6;3850:3;3846:16;3843:25;3840:45;;;3881:1;3878;3871:12;3840:45;3931:6;3926:3;3919:4;3911:6;3907:17;3894:44;3986:1;3979:4;3970:6;3962;3958:19;3954:30;3947:41;;;;3363:631;;;;;:::o;3999:666::-;4094:6;4102;4110;4118;4171:3;4159:9;4150:7;4146:23;4142:33;4139:53;;;4188:1;4185;4178:12;4139:53;4211:29;4230:9;4211:29;:::i;:::-;4201:39;;4259:38;4293:2;4282:9;4278:18;4259:38;:::i;:::-;4249:48;;4344:2;4333:9;4329:18;4316:32;4306:42;;4399:2;4388:9;4384:18;4371:32;4426:18;4418:6;4415:30;4412:50;;;4458:1;4455;4448:12;4412:50;4481:22;;4534:4;4526:13;;4522:27;-1:-1:-1;4512:55:1;;4563:1;4560;4553:12;4512:55;4586:73;4651:7;4646:2;4633:16;4628:2;4624;4620:11;4586:73;:::i;:::-;4576:83;;;3999:666;;;;;;;:::o;4670:524::-;4748:6;4756;4809:2;4797:9;4788:7;4784:23;4780:32;4777:52;;;4825:1;4822;4815:12;4777:52;4848:29;4867:9;4848:29;:::i;:::-;4838:39;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:73;5180:7;5175:2;5162:16;5157:2;5153;5149:11;5115:73;:::i;:::-;5105:83;;;4670:524;;;;;:::o;5199:260::-;5267:6;5275;5328:2;5316:9;5307:7;5303:23;5299:32;5296:52;;;5344:1;5341;5334:12;5296:52;5367:29;5386:9;5367:29;:::i;:::-;5357:39;;5415:38;5449:2;5438:9;5434:18;5415:38;:::i;:::-;5405:48;;5199:260;;;;;:::o;5464:380::-;5543:1;5539:12;;;;5586;;;5607:61;;5661:4;5653:6;5649:17;5639:27;;5607:61;5714:2;5706:6;5703:14;5683:18;5680:38;5677:161;;;5760:10;5755:3;5751:20;5748:1;5741:31;5795:4;5792:1;5785:15;5823:4;5820:1;5813:15;5677:161;;5464:380;;;:::o;7089:413::-;7291:2;7273:21;;;7330:2;7310:18;;;7303:30;7369:34;7364:2;7349:18;;7342:62;-1:-1:-1;;;7435:2:1;7420:18;;7413:47;7492:3;7477:19;;7089:413::o;8749:127::-;8810:10;8805:3;8801:20;8798:1;8791:31;8841:4;8838:1;8831:15;8865:4;8862:1;8855:15;9702:356;9904:2;9886:21;;;9923:18;;;9916:30;9982:34;9977:2;9962:18;;9955:62;10049:2;10034:18;;9702:356::o;11698:127::-;11759:10;11754:3;11750:20;11747:1;11740:31;11790:4;11787:1;11780:15;11814:4;11811:1;11804:15;11830:125;11870:4;11898:1;11895;11892:8;11889:34;;;11903:18;;:::i;:::-;-1:-1:-1;11940:9:1;;11830:125::o;11960:128::-;12000:3;12031:1;12027:6;12024:1;12021:13;12018:39;;;12037:18;;:::i;:::-;-1:-1:-1;12073:9:1;;11960:128::o;12447:414::-;12649:2;12631:21;;;12688:2;12668:18;;;12661:30;12727:34;12722:2;12707:18;;12700:62;-1:-1:-1;;;12793:2:1;12778:18;;12771:48;12851:3;12836:19;;12447:414::o;13284:470::-;13463:3;13501:6;13495:13;13517:53;13563:6;13558:3;13551:4;13543:6;13539:17;13517:53;:::i;:::-;13633:13;;13592:16;;;;13655:57;13633:13;13592:16;13689:4;13677:17;;13655:57;:::i;:::-;13728:20;;13284:470;-1:-1:-1;;;;13284:470:1:o;14174:489::-;-1:-1:-1;;;;;14443:15:1;;;14425:34;;14495:15;;14490:2;14475:18;;14468:43;14542:2;14527:18;;14520:34;;;14590:3;14585:2;14570:18;;14563:31;;;14368:4;;14611:46;;14637:19;;14629:6;14611:46;:::i;:::-;14603:54;14174:489;-1:-1:-1;;;;;;14174:489:1:o;14668:249::-;14737:6;14790:2;14778:9;14769:7;14765:23;14761:32;14758:52;;;14806:1;14803;14796:12;14758:52;14838:9;14832:16;14857:30;14881:5;14857:30;:::i;15338:135::-;15377:3;-1:-1:-1;;15398:17:1;;15395:43;;;15418:18;;:::i;:::-;-1:-1:-1;15465:1:1;15454:13;;15338:135::o;15478:127::-;15539:10;15534:3;15530:20;15527:1;15520:31;15570:4;15567:1;15560:15;15594:4;15591:1;15584:15;15610:120;15650:1;15676;15666:35;;15681:18;;:::i;:::-;-1:-1:-1;15715:9:1;;15610:120::o;15735:112::-;15767:1;15793;15783:35;;15798:18;;:::i;:::-;-1:-1:-1;15832:9:1;;15735:112::o;16570:127::-;16631:10;16626:3;16622:20;16619:1;16612:31;16662:4;16659:1;16652:15;16686:4;16683:1;16676:15

Swarm Source

ipfs://c586d9720d049bf86f97f10679bbee04725c63a7b156fc85b6f3a70d6ea22289
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Validator ID :
0 FTM

Amount Staked
0

Amount Delegated
0

Staking Total
0

Staking Start Epoch
0

Staking Start Time
0

Proof of Importance
0

Origination Score
0

Validation Score
0

Active
0

Online
0

Downtime
0 s
Address Amount claimed Rewards Created On Epoch Created On
Block Uncle Number Difficulty Gas Used Reward
Loading