ETH Price: $3,246.17 (+2.37%)
Gas: 2 Gwei

Token

TrapDogs (TRAPDOG)
 

Overview

Max Total Supply

103 TRAPDOG

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TRAPDOG
0x055c419f4841f6a3153e64a4e174a242a4ffa6f0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TrapDogs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/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/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/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


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/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/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


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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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

pragma solidity ^0.8.0;




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: @openzeppelin/contracts/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/security/Pausable.sol


pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/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/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/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: @openzeppelin/contracts/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/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


// File: @openzeppelin/contracts/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: testnft.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;









/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract TrapDogs is Context,  AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage{
  using Counters for Counters.Counter;
  Counters.Counter public _tokenIdTracker;

  string private _baseTokenURI;
  uint private _price;
  address private _admin;

  mapping (uint256 => address ) public creator;

  /**
    * @dev Grants `DEFAULT_ADMIN_ROLE` to the
    * account that deploys the contract.
    *
    * Token URIs will be autogenerated based on `baseURI` and their token IDs.
    * See {ERC721-tokenURI}.
    */
  constructor(string memory name, string memory symbol, string memory baseTokenURI, uint mintPrice, address admin) ERC721(name, symbol) {
      _baseTokenURI = baseTokenURI;
      _price = mintPrice;
      _admin = admin;

      _setupRole(DEFAULT_ADMIN_ROLE, admin);
  }

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

  function setBaseURI(string memory baseURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "TrapDogs: must have admin role to change base URI");
    _baseTokenURI = baseURI;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "TrapDogs: must have admin role to change token URI");
    _setTokenURI(tokenId, _tokenURI);
  }

  function setPrice(uint mintPrice) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "TrapDogs: must have admin role to change price");
    _price = mintPrice;
  }

  function price() public view returns (uint) {
    return _price;
  }

  function mint() public payable {
    require(msg.value == _price, "TrapDogs: must send correct price");
    require(_tokenIdTracker.current() < 9996, "TrapDogs: all TrapDogs have been minted");

    _mint(msg.sender, _tokenIdTracker.current());
    creator[_tokenIdTracker.current()] = msg.sender;
    _tokenIdTracker.increment();
    payable(_admin).transfer(msg.value);
  }
  
  function mintMultiple(uint256 number) public payable {
    require(msg.value == _price*number, "TrapDogs: must send correct price");
	require(_tokenIdTracker.current() < (9996 - number), "TrapDogs: all TrapDogs have been minted");
	
	for(uint i=0; i < number; i++){
        _mint(msg.sender, _tokenIdTracker.current());
		creator[_tokenIdTracker.current()] = msg.sender;
		_tokenIdTracker.increment();
    }
	payable(_admin).transfer(msg.value);
  }
  
  function teamMint(uint256 number) public{
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "TrapDogs: must have admin role to change base URI");
    //require(_tokenIdTracker.current() < (9996 - number), "TrapDogs: all TrapDogs have been minted");
	
    for(uint i=0; i < number; i++){
        _mint(msg.sender, _tokenIdTracker.current());
		creator[_tokenIdTracker.current()] = msg.sender;
		_tokenIdTracker.increment();
    }
  }

  function dogCreator(uint256 tokenId) public view returns(address){
    return creator[tokenId];
  }

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

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return ERC721URIStorage.tokenURI(tokenId);
  }
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"address","name":"admin","type":"address"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","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":"","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"dogCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","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":"number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b506040516200319f3803806200319f833981016040819052620000349162000396565b8451859085906200004d90600290602085019062000245565b5080516200006390600390602084019062000245565b505083516200007b9150600e90602086019062000245565b50600f829055601080546001600160a01b0319166001600160a01b038316179055620000a9600082620000b4565b5050505050620004a3565b620000cb8282620000f760201b62000eb31760201c565b6000828152600160209081526040909120620000f291839062000ebd62000107821b17901c565b505050565b62000103828262000127565b5050565b60006200011e836001600160a01b038416620001b1565b90505b92915050565b62000133828262000200565b62000103576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200016d62000229565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620001bf83836200022d565b620001f75750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000121565b50600062000121565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b60009081526001919091016020526040902054151590565b828054620002539062000450565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b600082601f830112620002fc578081fd5b81516001600160401b03808211156200031957620003196200048d565b6040516020601f8401601f19168201810183811183821017156200034157620003416200048d565b604052838252858401810187101562000358578485fd5b8492505b838310156200037b57858301810151828401820152918201916200035c565b838311156200038c57848185840101525b5095945050505050565b600080600080600060a08688031215620003ae578081fd5b85516001600160401b0380821115620003c5578283fd5b620003d389838a01620002eb565b96506020880151915080821115620003e9578283fd5b620003f789838a01620002eb565b955060408801519150808211156200040d578283fd5b506200041c88828901620002eb565b60608801516080890151919550935090506001600160a01b038116811462000442578182fd5b809150509295509295909350565b6002810460018216806200046557607f821691505b602082108114156200048757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612cec80620004b36000396000f3fe6080604052600436106101f95760003560e01c806355f804b31161010d578063a035b1fe116100a0578063b88d4fde1161006f578063b88d4fde14610576578063c87b56dd14610596578063ca15c873146105b6578063d547741f146105d6578063e985e9c5146105f6576101f9565b8063a035b1fe14610519578063a217fddf1461052e578063a22cb46514610543578063abbb5a5514610563576101f9565b806391b7f5ed116100dc57806391b7f5ed146104af57806391d14854146104cf57806395d89b41146104ef57806398bcede914610504576101f9565b806355f804b31461042f5780636352211e1461044f57806370a082311461046f5780639010d07c1461048f576101f9565b8063248a9ca3116101905780633355d6b31161015f5780633355d6b31461038f57806336568abe146103af57806342842e0e146103cf5780634f6ccce7146103ef578063510b51581461040f576101f9565b8063248a9ca31461030f5780632f2ff15d1461032f5780632f745c591461034f5780632fbba1151461036f576101f9565b80631249c58b116101cc5780631249c58b146102a5578063162094c4146102ad57806318160ddd146102cd57806323b872dd146102ef576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004612239565b610616565b60405161022b919061240a565b60405180910390f35b34801561024057600080fd5b50610249610629565b60405161022b919061241e565b34801561026257600080fd5b506102766102713660046121de565b6106bb565b60405161022b91906123b9565b34801561028f57600080fd5b506102a361029e3660046121b5565b610707565b005b6102a361079f565b3480156102b957600080fd5b506102a36102c83660046122a4565b610884565b3480156102d957600080fd5b506102e26108bb565b60405161022b9190612415565b3480156102fb57600080fd5b506102a361030a3660046120c7565b6108c1565b34801561031b57600080fd5b506102e261032a3660046121de565b6108f9565b34801561033b57600080fd5b506102a361034a3660046121f6565b61090e565b34801561035b57600080fd5b506102e261036a3660046121b5565b610930565b34801561037b57600080fd5b506102a361038a3660046121de565b610985565b34801561039b57600080fd5b506102766103aa3660046121de565b610a24565b3480156103bb57600080fd5b506102a36103ca3660046121f6565b610a3f565b3480156103db57600080fd5b506102a36103ea3660046120c7565b610a61565b3480156103fb57600080fd5b506102e261040a3660046121de565b610a7c565b34801561041b57600080fd5b5061027661042a3660046121de565b610ad7565b34801561043b57600080fd5b506102a361044a366004612271565b610af2565b34801561045b57600080fd5b5061027661046a3660046121de565b610b2e565b34801561047b57600080fd5b506102e261048a36600461207b565b610b63565b34801561049b57600080fd5b506102766104aa366004612218565b610ba7565b3480156104bb57600080fd5b506102a36104ca3660046121de565b610bc6565b3480156104db57600080fd5b5061021e6104ea3660046121f6565b610bf4565b3480156104fb57600080fd5b50610249610c1d565b34801561051057600080fd5b506102e2610c2c565b34801561052557600080fd5b506102e2610c32565b34801561053a57600080fd5b506102e2610c38565b34801561054f57600080fd5b506102a361055e36600461217b565b610c3d565b6102a36105713660046121de565b610d0b565b34801561058257600080fd5b506102a3610591366004612102565b610e1a565b3480156105a257600080fd5b506102496105b13660046121de565b610e59565b3480156105c257600080fd5b506102e26105d13660046121de565b610e64565b3480156105e257600080fd5b506102a36105f13660046121f6565b610e7b565b34801561060257600080fd5b5061021e610611366004612095565b610e85565b600061062182610ed2565b90505b919050565b60606002805461063890612bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461066490612bf4565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c682610ef7565b6106eb5760405162461bcd60e51b81526004016106e29061289f565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071282610b2e565b9050806001600160a01b0316836001600160a01b031614156107465760405162461bcd60e51b81526004016106e290612983565b806001600160a01b0316610758610f14565b6001600160a01b03161480610774575061077481610611610f14565b6107905760405162461bcd60e51b81526004016106e29061269a565b61079a8383610f18565b505050565b600f5434146107c05760405162461bcd60e51b81526004016106e2906127d8565b61270c6107cd600d610f86565b106107ea5760405162461bcd60e51b81526004016106e290612555565b6107fd336107f8600d610f86565b610f8a565b336011600061080c600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610848600d611069565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610881573d6000803e3d6000fd5b50565b61089160006104ea610f14565b6108ad5760405162461bcd60e51b81526004016106e290612466565b6108b78282611072565b5050565b600a5490565b6108d26108cc610f14565b826110b6565b6108ee5760405162461bcd60e51b81526004016106e290612a15565b61079a83838361113b565b60009081526020819052604090206001015490565b6109188282611268565b600082815260016020526040902061079a9082610ebd565b600061093b83610b63565b82106109595760405162461bcd60e51b81526004016106e2906124b8565b506001600160a01b03821660009081526008602090815260408083208484529091529020545b92915050565b61099260006104ea610f14565b6109ae5760405162461bcd60e51b81526004016106e2906129c4565b60005b818110156108b7576109c7336107f8600d610f86565b33601160006109d6600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610a12600d611069565b80610a1c81612c2f565b9150506109b1565b6000908152601160205260409020546001600160a01b031690565b610a49828261128c565b600082815260016020526040902061079a90826112ce565b61079a83838360405180602001604052806000815250610e1a565b6000610a866108bb565b8210610aa45760405162461bcd60e51b81526004016106e290612a66565b600a8281548110610ac557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6011602052600090815260409020546001600160a01b031681565b610aff60006104ea610f14565b610b1b5760405162461bcd60e51b81526004016106e2906129c4565b80516108b790600e906020840190611f3c565b6000818152600460205260408120546001600160a01b0316806106215760405162461bcd60e51b81526004016106e290612741565b60006001600160a01b038216610b8b5760405162461bcd60e51b81526004016106e2906126f7565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120610bbf90836112e3565b9392505050565b610bd360006104ea610f14565b610bef5760405162461bcd60e51b81526004016106e290612ab2565b600f55565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606003805461063890612bf4565b600d5481565b600f5490565b600081565b610c45610f14565b6001600160a01b0316826001600160a01b03161415610c765760405162461bcd60e51b81526004016106e290612617565b8060076000610c83610f14565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cc7610f14565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cff919061240a565b60405180910390a35050565b80600f54610d199190612b7b565b3414610d375760405162461bcd60e51b81526004016106e2906127d8565b610d438161270c612b9a565b610d4d600d610f86565b10610d6a5760405162461bcd60e51b81526004016106e290612555565b60005b81811015610de057610d83336107f8600d610f86565b3360116000610d92600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610dce600d611069565b80610dd881612c2f565b915050610d6d565b506010546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156108b7573d6000803e3d6000fd5b610e2b610e25610f14565b836110b6565b610e475760405162461bcd60e51b81526004016106e290612a15565b610e53848484846112ef565b50505050565b606061062182611322565b60008181526001602052604081206106219061143b565b610a498282611446565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6108b78282611465565b6000610bbf836001600160a01b0384166114ea565b60006001600160e01b0319821663780e9d6360e01b1480610621575061062182611534565b6000908152600460205260409020546001600160a01b0316151590565b3390565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4d82610b2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6001600160a01b038216610fb05760405162461bcd60e51b81526004016106e290612819565b610fb981610ef7565b15610fd65760405162461bcd60e51b81526004016106e29061259c565b610fe260008383611574565b6001600160a01b038216600090815260056020526040812080546001929061100b908490612b4f565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b61107b82610ef7565b6110975760405162461bcd60e51b81526004016106e29061278a565b6000828152600c60209081526040909120825161079a92840190611f3c565b60006110c182610ef7565b6110dd5760405162461bcd60e51b81526004016106e29061264e565b60006110e883610b2e565b9050806001600160a01b0316846001600160a01b031614806111235750836001600160a01b0316611118846106bb565b6001600160a01b0316145b8061113357506111338185610e85565b949350505050565b826001600160a01b031661114e82610b2e565b6001600160a01b0316146111745760405162461bcd60e51b81526004016106e2906128eb565b6001600160a01b03821661119a5760405162461bcd60e51b81526004016106e2906125d3565b6111a5838383611574565b6111b0600082610f18565b6001600160a01b03831660009081526005602052604081208054600192906111d9908490612b9a565b90915550506001600160a01b0382166000908152600560205260408120805460019290611207908490612b4f565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611271826108f9565b6112828161127d610f14565b61157f565b61079a8383611465565b611294610f14565b6001600160a01b0316816001600160a01b0316146112c45760405162461bcd60e51b81526004016106e290612b00565b6108b782826115e3565b6000610bbf836001600160a01b038416611666565b6000610bbf8383611783565b6112fa84848461113b565b611306848484846117bb565b610e535760405162461bcd60e51b81526004016106e290612503565b606061132d82610ef7565b6113495760405162461bcd60e51b81526004016106e29061284e565b6000828152600c60205260408120805461136290612bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90612bf4565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905060006113ec6118d6565b905080516000141561140057509050610624565b81511561143257808260405160200161141a929190612315565b60405160208183030381529060405292505050610624565b611133846118e5565b600061062182610f86565b61144f826108f9565b61145b8161127d610f14565b61079a83836115e3565b61146f8282610bf4565b6108b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556114a6610f14565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006114f68383611967565b61152c5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561097f565b50600061097f565b60006001600160e01b031982166380ac58cd60e01b148061156557506001600160e01b03198216635b5e139f60e01b145b8061062157506106218261197f565b61079a8383836119a4565b6115898282610bf4565b6108b7576115a1816001600160a01b03166014611a2d565b6115ac836020611a2d565b6040516020016115bd929190612344565b60408051601f198184030181529082905262461bcd60e51b82526106e29160040161241e565b6115ed8282610bf4565b156108b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055611622610f14565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000818152600183016020526040812054801561177957600061168a600183612b9a565b855490915060009061169e90600190612b9a565b905081811461171f5760008660000182815481106116cc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106116fd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061173e57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061097f565b600091505061097f565b60008260000182815481106117a857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006117cf846001600160a01b0316611bdf565b156118cb57836001600160a01b031663150b7a026117eb610f14565b8786866040518563ffffffff1660e01b815260040161180d94939291906123cd565b602060405180830381600087803b15801561182757600080fd5b505af1925050508015611857575060408051601f3d908101601f1916820190925261185491810190612255565b60015b6118b1573d808015611885576040519150601f19603f3d011682016040523d82523d6000602084013e61188a565b606091505b5080516118a95760405162461bcd60e51b81526004016106e290612503565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611133565b506001949350505050565b6060600e805461063890612bf4565b60606118f082610ef7565b61190c5760405162461bcd60e51b81526004016106e290612934565b60006119166118d6565b905060008151116119365760405180602001604052806000815250610bbf565b8061194084611be5565b604051602001611951929190612315565b6040516020818303038152906040529392505050565b60009081526001919091016020526040902054151590565b60006001600160e01b03198216635a05180f60e01b1480610621575061062182611d00565b6119af83838361079a565b6001600160a01b0383166119cb576119c681611d25565b6119ee565b816001600160a01b0316836001600160a01b0316146119ee576119ee8382611d69565b6001600160a01b038216611a0a57611a0581611e06565b61079a565b826001600160a01b0316826001600160a01b03161461079a5761079a8282611edf565b60606000611a3c836002612b7b565b611a47906002612b4f565b67ffffffffffffffff811115611a6d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a97576020820181803683370190505b509050600360fc1b81600081518110611ac057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611afd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611b21846002612b7b565b611b2c906001612b4f565b90505b6001811115611bc0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b6e57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b9257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611bb981612bdd565b9050611b2f565b508315610bbf5760405162461bcd60e51b81526004016106e290612431565b3b151590565b606081611c0a57506040805180820190915260018152600360fc1b6020820152610624565b8160005b8115611c345780611c1e81612c2f565b9150611c2d9050600a83612b67565b9150611c0e565b60008167ffffffffffffffff811115611c5d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c87576020820181803683370190505b5090505b841561113357611c9c600183612b9a565b9150611ca9600a86612c4a565b611cb4906030612b4f565b60f81b818381518110611cd757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cf9600a86612b67565b9450611c8b565b60006001600160e01b03198216637965db0b60e01b1480610621575061062182611f23565b600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b60006001611d7684610b63565b611d809190612b9a565b600083815260096020526040902054909150808214611dd3576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090611e1890600190612b9a565b6000838152600b6020526040812054600a8054939450909284908110611e4e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a8381548110611e7d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480611ec357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eea83610b63565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611f4890612bf4565b90600052602060002090601f016020900481019282611f6a5760008555611fb0565b82601f10611f8357805160ff1916838001178555611fb0565b82800160010185558215611fb0579182015b82811115611fb0578251825591602001919060010190611f95565b50611fbc929150611fc0565b5090565b5b80821115611fbc5760008155600101611fc1565b600067ffffffffffffffff80841115611ff057611ff0612c8a565b604051601f8501601f19168101602001828111828210171561201457612014612c8a565b60405284815291508183850186101561202c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062457600080fd5b600082601f83011261206c578081fd5b610bbf83833560208501611fd5565b60006020828403121561208c578081fd5b610bbf82612045565b600080604083850312156120a7578081fd5b6120b083612045565b91506120be60208401612045565b90509250929050565b6000806000606084860312156120db578081fd5b6120e484612045565b92506120f260208501612045565b9150604084013590509250925092565b60008060008060808587031215612117578081fd5b61212085612045565b935061212e60208601612045565b925060408501359150606085013567ffffffffffffffff811115612150578182fd5b8501601f81018713612160578182fd5b61216f87823560208401611fd5565b91505092959194509250565b6000806040838503121561218d578182fd5b61219683612045565b9150602083013580151581146121aa578182fd5b809150509250929050565b600080604083850312156121c7578182fd5b6121d083612045565b946020939093013593505050565b6000602082840312156121ef578081fd5b5035919050565b60008060408385031215612208578182fd5b823591506120be60208401612045565b6000806040838503121561222a578182fd5b50508035926020909101359150565b60006020828403121561224a578081fd5b8135610bbf81612ca0565b600060208284031215612266578081fd5b8151610bbf81612ca0565b600060208284031215612282578081fd5b813567ffffffffffffffff811115612298578182fd5b6111338482850161205c565b600080604083850312156122b6578182fd5b82359150602083013567ffffffffffffffff8111156122d3578182fd5b6122df8582860161205c565b9150509250929050565b60008151808452612301816020860160208601612bb1565b601f01601f19169290920160200192915050565b60008351612327818460208801612bb1565b83519083019061233b818360208801612bb1565b01949350505050565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161237c816017850160208801612bb1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516123ad816028840160208801612bb1565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612400908301846122e9565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610bbf60208301846122e9565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526032908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c6520746040820152716f206368616e676520746f6b656e2055524960701b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f54726170446f67733a20616c6c2054726170446f67732068617665206265656e604082015266081b5a5b9d195960ca1b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526021908201527f54726170446f67733a206d7573742073656e6420636f727265637420707269636040820152606560f81b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c6520746040820152706f206368616e676520626173652055524960781b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602e908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c65207460408201526d6f206368616e676520707269636560901b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60008219821115612b6257612b62612c5e565b500190565b600082612b7657612b76612c74565b500490565b6000816000190483118215151615612b9557612b95612c5e565b500290565b600082821015612bac57612bac612c5e565b500390565b60005b83811015612bcc578181015183820152602001612bb4565b83811115610e535750506000910152565b600081612bec57612bec612c5e565b506000190190565b600281046001821680612c0857607f821691505b60208210811415612c2957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c4357612c43612c5e565b5060010190565b600082612c5957612c59612c74565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461088157600080fdfea2646970667358221220b1d7a604f9bc0a66e863957d47ffdb16396fa649570d0a67eb759ac166f4c91364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000003357108865c03e6d5166d5fb57a788a17db5ee2000000000000000000000000000000000000000000000000000000000000000854726170446f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754524150444f4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f6563322d31382d3131392d3131342d3235312e75732d656173742d322e636f6d707574652e616d617a6f6e6177732e636f6d2f74726170446f674d6574613f696e6465783d00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806355f804b31161010d578063a035b1fe116100a0578063b88d4fde1161006f578063b88d4fde14610576578063c87b56dd14610596578063ca15c873146105b6578063d547741f146105d6578063e985e9c5146105f6576101f9565b8063a035b1fe14610519578063a217fddf1461052e578063a22cb46514610543578063abbb5a5514610563576101f9565b806391b7f5ed116100dc57806391b7f5ed146104af57806391d14854146104cf57806395d89b41146104ef57806398bcede914610504576101f9565b806355f804b31461042f5780636352211e1461044f57806370a082311461046f5780639010d07c1461048f576101f9565b8063248a9ca3116101905780633355d6b31161015f5780633355d6b31461038f57806336568abe146103af57806342842e0e146103cf5780634f6ccce7146103ef578063510b51581461040f576101f9565b8063248a9ca31461030f5780632f2ff15d1461032f5780632f745c591461034f5780632fbba1151461036f576101f9565b80631249c58b116101cc5780631249c58b146102a5578063162094c4146102ad57806318160ddd146102cd57806323b872dd146102ef576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004612239565b610616565b60405161022b919061240a565b60405180910390f35b34801561024057600080fd5b50610249610629565b60405161022b919061241e565b34801561026257600080fd5b506102766102713660046121de565b6106bb565b60405161022b91906123b9565b34801561028f57600080fd5b506102a361029e3660046121b5565b610707565b005b6102a361079f565b3480156102b957600080fd5b506102a36102c83660046122a4565b610884565b3480156102d957600080fd5b506102e26108bb565b60405161022b9190612415565b3480156102fb57600080fd5b506102a361030a3660046120c7565b6108c1565b34801561031b57600080fd5b506102e261032a3660046121de565b6108f9565b34801561033b57600080fd5b506102a361034a3660046121f6565b61090e565b34801561035b57600080fd5b506102e261036a3660046121b5565b610930565b34801561037b57600080fd5b506102a361038a3660046121de565b610985565b34801561039b57600080fd5b506102766103aa3660046121de565b610a24565b3480156103bb57600080fd5b506102a36103ca3660046121f6565b610a3f565b3480156103db57600080fd5b506102a36103ea3660046120c7565b610a61565b3480156103fb57600080fd5b506102e261040a3660046121de565b610a7c565b34801561041b57600080fd5b5061027661042a3660046121de565b610ad7565b34801561043b57600080fd5b506102a361044a366004612271565b610af2565b34801561045b57600080fd5b5061027661046a3660046121de565b610b2e565b34801561047b57600080fd5b506102e261048a36600461207b565b610b63565b34801561049b57600080fd5b506102766104aa366004612218565b610ba7565b3480156104bb57600080fd5b506102a36104ca3660046121de565b610bc6565b3480156104db57600080fd5b5061021e6104ea3660046121f6565b610bf4565b3480156104fb57600080fd5b50610249610c1d565b34801561051057600080fd5b506102e2610c2c565b34801561052557600080fd5b506102e2610c32565b34801561053a57600080fd5b506102e2610c38565b34801561054f57600080fd5b506102a361055e36600461217b565b610c3d565b6102a36105713660046121de565b610d0b565b34801561058257600080fd5b506102a3610591366004612102565b610e1a565b3480156105a257600080fd5b506102496105b13660046121de565b610e59565b3480156105c257600080fd5b506102e26105d13660046121de565b610e64565b3480156105e257600080fd5b506102a36105f13660046121f6565b610e7b565b34801561060257600080fd5b5061021e610611366004612095565b610e85565b600061062182610ed2565b90505b919050565b60606002805461063890612bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461066490612bf4565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c682610ef7565b6106eb5760405162461bcd60e51b81526004016106e29061289f565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071282610b2e565b9050806001600160a01b0316836001600160a01b031614156107465760405162461bcd60e51b81526004016106e290612983565b806001600160a01b0316610758610f14565b6001600160a01b03161480610774575061077481610611610f14565b6107905760405162461bcd60e51b81526004016106e29061269a565b61079a8383610f18565b505050565b600f5434146107c05760405162461bcd60e51b81526004016106e2906127d8565b61270c6107cd600d610f86565b106107ea5760405162461bcd60e51b81526004016106e290612555565b6107fd336107f8600d610f86565b610f8a565b336011600061080c600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610848600d611069565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610881573d6000803e3d6000fd5b50565b61089160006104ea610f14565b6108ad5760405162461bcd60e51b81526004016106e290612466565b6108b78282611072565b5050565b600a5490565b6108d26108cc610f14565b826110b6565b6108ee5760405162461bcd60e51b81526004016106e290612a15565b61079a83838361113b565b60009081526020819052604090206001015490565b6109188282611268565b600082815260016020526040902061079a9082610ebd565b600061093b83610b63565b82106109595760405162461bcd60e51b81526004016106e2906124b8565b506001600160a01b03821660009081526008602090815260408083208484529091529020545b92915050565b61099260006104ea610f14565b6109ae5760405162461bcd60e51b81526004016106e2906129c4565b60005b818110156108b7576109c7336107f8600d610f86565b33601160006109d6600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610a12600d611069565b80610a1c81612c2f565b9150506109b1565b6000908152601160205260409020546001600160a01b031690565b610a49828261128c565b600082815260016020526040902061079a90826112ce565b61079a83838360405180602001604052806000815250610e1a565b6000610a866108bb565b8210610aa45760405162461bcd60e51b81526004016106e290612a66565b600a8281548110610ac557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6011602052600090815260409020546001600160a01b031681565b610aff60006104ea610f14565b610b1b5760405162461bcd60e51b81526004016106e2906129c4565b80516108b790600e906020840190611f3c565b6000818152600460205260408120546001600160a01b0316806106215760405162461bcd60e51b81526004016106e290612741565b60006001600160a01b038216610b8b5760405162461bcd60e51b81526004016106e2906126f7565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120610bbf90836112e3565b9392505050565b610bd360006104ea610f14565b610bef5760405162461bcd60e51b81526004016106e290612ab2565b600f55565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606003805461063890612bf4565b600d5481565b600f5490565b600081565b610c45610f14565b6001600160a01b0316826001600160a01b03161415610c765760405162461bcd60e51b81526004016106e290612617565b8060076000610c83610f14565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cc7610f14565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cff919061240a565b60405180910390a35050565b80600f54610d199190612b7b565b3414610d375760405162461bcd60e51b81526004016106e2906127d8565b610d438161270c612b9a565b610d4d600d610f86565b10610d6a5760405162461bcd60e51b81526004016106e290612555565b60005b81811015610de057610d83336107f8600d610f86565b3360116000610d92600d610f86565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610dce600d611069565b80610dd881612c2f565b915050610d6d565b506010546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156108b7573d6000803e3d6000fd5b610e2b610e25610f14565b836110b6565b610e475760405162461bcd60e51b81526004016106e290612a15565b610e53848484846112ef565b50505050565b606061062182611322565b60008181526001602052604081206106219061143b565b610a498282611446565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6108b78282611465565b6000610bbf836001600160a01b0384166114ea565b60006001600160e01b0319821663780e9d6360e01b1480610621575061062182611534565b6000908152600460205260409020546001600160a01b0316151590565b3390565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f4d82610b2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6001600160a01b038216610fb05760405162461bcd60e51b81526004016106e290612819565b610fb981610ef7565b15610fd65760405162461bcd60e51b81526004016106e29061259c565b610fe260008383611574565b6001600160a01b038216600090815260056020526040812080546001929061100b908490612b4f565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b61107b82610ef7565b6110975760405162461bcd60e51b81526004016106e29061278a565b6000828152600c60209081526040909120825161079a92840190611f3c565b60006110c182610ef7565b6110dd5760405162461bcd60e51b81526004016106e29061264e565b60006110e883610b2e565b9050806001600160a01b0316846001600160a01b031614806111235750836001600160a01b0316611118846106bb565b6001600160a01b0316145b8061113357506111338185610e85565b949350505050565b826001600160a01b031661114e82610b2e565b6001600160a01b0316146111745760405162461bcd60e51b81526004016106e2906128eb565b6001600160a01b03821661119a5760405162461bcd60e51b81526004016106e2906125d3565b6111a5838383611574565b6111b0600082610f18565b6001600160a01b03831660009081526005602052604081208054600192906111d9908490612b9a565b90915550506001600160a01b0382166000908152600560205260408120805460019290611207908490612b4f565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611271826108f9565b6112828161127d610f14565b61157f565b61079a8383611465565b611294610f14565b6001600160a01b0316816001600160a01b0316146112c45760405162461bcd60e51b81526004016106e290612b00565b6108b782826115e3565b6000610bbf836001600160a01b038416611666565b6000610bbf8383611783565b6112fa84848461113b565b611306848484846117bb565b610e535760405162461bcd60e51b81526004016106e290612503565b606061132d82610ef7565b6113495760405162461bcd60e51b81526004016106e29061284e565b6000828152600c60205260408120805461136290612bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90612bf4565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905060006113ec6118d6565b905080516000141561140057509050610624565b81511561143257808260405160200161141a929190612315565b60405160208183030381529060405292505050610624565b611133846118e5565b600061062182610f86565b61144f826108f9565b61145b8161127d610f14565b61079a83836115e3565b61146f8282610bf4565b6108b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556114a6610f14565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006114f68383611967565b61152c5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561097f565b50600061097f565b60006001600160e01b031982166380ac58cd60e01b148061156557506001600160e01b03198216635b5e139f60e01b145b8061062157506106218261197f565b61079a8383836119a4565b6115898282610bf4565b6108b7576115a1816001600160a01b03166014611a2d565b6115ac836020611a2d565b6040516020016115bd929190612344565b60408051601f198184030181529082905262461bcd60e51b82526106e29160040161241e565b6115ed8282610bf4565b156108b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055611622610f14565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000818152600183016020526040812054801561177957600061168a600183612b9a565b855490915060009061169e90600190612b9a565b905081811461171f5760008660000182815481106116cc57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106116fd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061173e57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061097f565b600091505061097f565b60008260000182815481106117a857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006117cf846001600160a01b0316611bdf565b156118cb57836001600160a01b031663150b7a026117eb610f14565b8786866040518563ffffffff1660e01b815260040161180d94939291906123cd565b602060405180830381600087803b15801561182757600080fd5b505af1925050508015611857575060408051601f3d908101601f1916820190925261185491810190612255565b60015b6118b1573d808015611885576040519150601f19603f3d011682016040523d82523d6000602084013e61188a565b606091505b5080516118a95760405162461bcd60e51b81526004016106e290612503565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611133565b506001949350505050565b6060600e805461063890612bf4565b60606118f082610ef7565b61190c5760405162461bcd60e51b81526004016106e290612934565b60006119166118d6565b905060008151116119365760405180602001604052806000815250610bbf565b8061194084611be5565b604051602001611951929190612315565b6040516020818303038152906040529392505050565b60009081526001919091016020526040902054151590565b60006001600160e01b03198216635a05180f60e01b1480610621575061062182611d00565b6119af83838361079a565b6001600160a01b0383166119cb576119c681611d25565b6119ee565b816001600160a01b0316836001600160a01b0316146119ee576119ee8382611d69565b6001600160a01b038216611a0a57611a0581611e06565b61079a565b826001600160a01b0316826001600160a01b03161461079a5761079a8282611edf565b60606000611a3c836002612b7b565b611a47906002612b4f565b67ffffffffffffffff811115611a6d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a97576020820181803683370190505b509050600360fc1b81600081518110611ac057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611afd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611b21846002612b7b565b611b2c906001612b4f565b90505b6001811115611bc0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b6e57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611b9257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611bb981612bdd565b9050611b2f565b508315610bbf5760405162461bcd60e51b81526004016106e290612431565b3b151590565b606081611c0a57506040805180820190915260018152600360fc1b6020820152610624565b8160005b8115611c345780611c1e81612c2f565b9150611c2d9050600a83612b67565b9150611c0e565b60008167ffffffffffffffff811115611c5d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c87576020820181803683370190505b5090505b841561113357611c9c600183612b9a565b9150611ca9600a86612c4a565b611cb4906030612b4f565b60f81b818381518110611cd757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611cf9600a86612b67565b9450611c8b565b60006001600160e01b03198216637965db0b60e01b1480610621575061062182611f23565b600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b60006001611d7684610b63565b611d809190612b9a565b600083815260096020526040902054909150808214611dd3576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090611e1890600190612b9a565b6000838152600b6020526040812054600a8054939450909284908110611e4e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a8381548110611e7d57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480611ec357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eea83610b63565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611f4890612bf4565b90600052602060002090601f016020900481019282611f6a5760008555611fb0565b82601f10611f8357805160ff1916838001178555611fb0565b82800160010185558215611fb0579182015b82811115611fb0578251825591602001919060010190611f95565b50611fbc929150611fc0565b5090565b5b80821115611fbc5760008155600101611fc1565b600067ffffffffffffffff80841115611ff057611ff0612c8a565b604051601f8501601f19168101602001828111828210171561201457612014612c8a565b60405284815291508183850186101561202c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062457600080fd5b600082601f83011261206c578081fd5b610bbf83833560208501611fd5565b60006020828403121561208c578081fd5b610bbf82612045565b600080604083850312156120a7578081fd5b6120b083612045565b91506120be60208401612045565b90509250929050565b6000806000606084860312156120db578081fd5b6120e484612045565b92506120f260208501612045565b9150604084013590509250925092565b60008060008060808587031215612117578081fd5b61212085612045565b935061212e60208601612045565b925060408501359150606085013567ffffffffffffffff811115612150578182fd5b8501601f81018713612160578182fd5b61216f87823560208401611fd5565b91505092959194509250565b6000806040838503121561218d578182fd5b61219683612045565b9150602083013580151581146121aa578182fd5b809150509250929050565b600080604083850312156121c7578182fd5b6121d083612045565b946020939093013593505050565b6000602082840312156121ef578081fd5b5035919050565b60008060408385031215612208578182fd5b823591506120be60208401612045565b6000806040838503121561222a578182fd5b50508035926020909101359150565b60006020828403121561224a578081fd5b8135610bbf81612ca0565b600060208284031215612266578081fd5b8151610bbf81612ca0565b600060208284031215612282578081fd5b813567ffffffffffffffff811115612298578182fd5b6111338482850161205c565b600080604083850312156122b6578182fd5b82359150602083013567ffffffffffffffff8111156122d3578182fd5b6122df8582860161205c565b9150509250929050565b60008151808452612301816020860160208601612bb1565b601f01601f19169290920160200192915050565b60008351612327818460208801612bb1565b83519083019061233b818360208801612bb1565b01949350505050565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161237c816017850160208801612bb1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516123ad816028840160208801612bb1565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612400908301846122e9565b9695505050505050565b901515815260200190565b90815260200190565b600060208252610bbf60208301846122e9565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526032908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c6520746040820152716f206368616e676520746f6b656e2055524960701b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f54726170446f67733a20616c6c2054726170446f67732068617665206265656e604082015266081b5a5b9d195960ca1b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b60208082526021908201527f54726170446f67733a206d7573742073656e6420636f727265637420707269636040820152606560f81b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c6520746040820152706f206368616e676520626173652055524960781b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602e908201527f54726170446f67733a206d75737420686176652061646d696e20726f6c65207460408201526d6f206368616e676520707269636560901b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60008219821115612b6257612b62612c5e565b500190565b600082612b7657612b76612c74565b500490565b6000816000190483118215151615612b9557612b95612c5e565b500290565b600082821015612bac57612bac612c5e565b500390565b60005b83811015612bcc578181015183820152602001612bb4565b83811115610e535750506000910152565b600081612bec57612bec612c5e565b506000190190565b600281046001821680612c0857607f821691505b60208210811415612c2957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c4357612c43612c5e565b5060010190565b600082612c5957612c59612c74565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461088157600080fdfea2646970667358221220b1d7a604f9bc0a66e863957d47ffdb16396fa649570d0a67eb759ac166f4c91364736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000003357108865c03e6d5166d5fb57a788a17db5ee2000000000000000000000000000000000000000000000000000000000000000854726170446f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000754524150444f4700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f6563322d31382d3131392d3131342d3235312e75732d656173742d322e636f6d707574652e616d617a6f6e6177732e636f6d2f74726170446f674d6574613f696e6465783d00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): TrapDogs
Arg [1] : symbol (string): TRAPDOG
Arg [2] : baseTokenURI (string): https://ec2-18-119-114-251.us-east-2.compute.amazonaws.com/trapDogMeta?index=
Arg [3] : mintPrice (uint256): 30000000000000000
Arg [4] : admin (address): 0x03357108865c03e6d5166D5fb57A788A17Db5eE2

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [4] : 00000000000000000000000003357108865c03e6d5166d5fb57a788a17db5ee2
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 54726170446f6773000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 54524150444f4700000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [10] : 68747470733a2f2f6563322d31382d3131392d3131342d3235312e75732d6561
Arg [11] : 73742d322e636f6d707574652e616d617a6f6e6177732e636f6d2f7472617044
Arg [12] : 6f674d6574613f696e6465783d00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69810:3813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73422:198;;;;;;;;;;-1:-1:-1;73422:198:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11868:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13427:221::-;;;;;;;;;;-1:-1:-1;13427:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12950:411::-;;;;;;;;;;-1:-1:-1;12950:411:0;;;;;:::i;:::-;;:::i;:::-;;71447:383;;;:::i;70950:228::-;;;;;;;;;;-1:-1:-1;70950:228:0;;;;;:::i;:::-;;:::i;52725:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14317:339::-;;;;;;;;;;-1:-1:-1;14317:339:0;;;;;:::i;:::-;;:::i;38118:123::-;;;;;;;;;;-1:-1:-1;38118:123:0;;;;;:::i;:::-;;:::i;43438:165::-;;;;;;;;;;-1:-1:-1;43438:165:0;;;;;:::i;:::-;;:::i;52393:256::-;;;;;;;;;;-1:-1:-1;52393:256:0;;;;;:::i;:::-;;:::i;72305:446::-;;;;;;;;;;-1:-1:-1;72305:446:0;;;;;:::i;:::-;;:::i;72757:101::-;;;;;;;;;;-1:-1:-1;72757:101:0;;;;;:::i;:::-;;:::i;43961:174::-;;;;;;;;;;-1:-1:-1;43961:174:0;;;;;:::i;:::-;;:::i;14727:185::-;;;;;;;;;;-1:-1:-1;14727:185:0;;;;;:::i;:::-;;:::i;52915:233::-;;;;;;;;;;-1:-1:-1;52915:233:0;;;;;:::i;:::-;;:::i;70077:44::-;;;;;;;;;;-1:-1:-1;70077:44:0;;;;;:::i;:::-;;:::i;70746:198::-;;;;;;;;;;-1:-1:-1;70746:198:0;;;;;:::i;:::-;;:::i;11562:239::-;;;;;;;;;;-1:-1:-1;11562:239:0;;;;;:::i;:::-;;:::i;11292:208::-;;;;;;;;;;-1:-1:-1;11292:208:0;;;;;:::i;:::-;;:::i;42893:145::-;;;;;;;;;;-1:-1:-1;42893:145:0;;;;;:::i;:::-;;:::i;71184:181::-;;;;;;;;;;-1:-1:-1;71184:181:0;;;;;:::i;:::-;;:::i;37003:139::-;;;;;;;;;;-1:-1:-1;37003:139:0;;;;;:::i;:::-;;:::i;12037:104::-;;;;;;;;;;;;;:::i;69945:39::-;;;;;;;;;;;;;:::i;71371:70::-;;;;;;;;;;;;;:::i;34981:49::-;;;;;;;;;;;;;:::i;13720:295::-;;;;;;;;;;-1:-1:-1;13720:295:0;;;;;:::i;:::-;;:::i;71838:459::-;;;;;;:::i;:::-;;:::i;14983:328::-;;;;;;;;;;-1:-1:-1;14983:328:0;;;;;:::i;:::-;;:::i;73005:160::-;;;;;;;;;;-1:-1:-1;73005:160:0;;;;;:::i;:::-;;:::i;43212:134::-;;;;;;;;;;-1:-1:-1;43212:134:0;;;;;:::i;:::-;;:::i;43696:170::-;;;;;;;;;;-1:-1:-1;43696:170:0;;;;;:::i;:::-;;:::i;14086:164::-;;;;;;;;;;-1:-1:-1;14086:164:0;;;;;:::i;:::-;;:::i;73422:198::-;73558:4;73578:36;73602:11;73578:23;:36::i;:::-;73571:43;;73422:198;;;;:::o;11868:100::-;11922:13;11955:5;11948:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11868:100;:::o;13427:221::-;13503:7;13531:16;13539:7;13531;:16::i;:::-;13523:73;;;;-1:-1:-1;;;13523:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;13616:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;13616:24:0;;13427:221::o;12950:411::-;13031:13;13047:23;13062:7;13047:14;:23::i;:::-;13031:39;;13095:5;-1:-1:-1;;;;;13089:11:0;:2;-1:-1:-1;;;;;13089:11:0;;;13081:57;;;;-1:-1:-1;;;13081:57:0;;;;;;;:::i;:::-;13189:5;-1:-1:-1;;;;;13173:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;13173:21:0;;:62;;;;13198:37;13215:5;13222:12;:10;:12::i;13198:37::-;13151:168;;;;-1:-1:-1;;;13151:168:0;;;;;;;:::i;:::-;13332:21;13341:2;13345:7;13332:8;:21::i;:::-;12950:411;;;:::o;71447:383::-;71506:6;;71493:9;:19;71485:65;;;;-1:-1:-1;;;71485:65:0;;;;;;;:::i;:::-;71593:4;71565:25;:15;:23;:25::i;:::-;:32;71557:84;;;;-1:-1:-1;;;71557:84:0;;;;;;;:::i;:::-;71650:44;71656:10;71668:25;:15;:23;:25::i;:::-;71650:5;:44::i;:::-;71738:10;71701:7;:34;71709:25;:15;:23;:25::i;:::-;71701:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;71701:47:0;;;;;-1:-1:-1;;;;;71701:47:0;;;;;;71755:27;:15;:25;:27::i;:::-;71797:6;;71789:35;;-1:-1:-1;;;;;71797:6:0;;;;71814:9;71789:35;;;;;71797:6;71789:35;71797:6;71789:35;71814:9;71797:6;71789:35;;;;;;;;;;;;;;;;;;;;;71447:383::o;70950:228::-;71037:41;35026:4;71065:12;:10;:12::i;71037:41::-;71029:104;;;;-1:-1:-1;;;71029:104:0;;;;;;;:::i;:::-;71140:32;71153:7;71162:9;71140:12;:32::i;:::-;70950:228;;:::o;52725:113::-;52813:10;:17;52725:113;:::o;14317:339::-;14512:41;14531:12;:10;:12::i;:::-;14545:7;14512:18;:41::i;:::-;14504:103;;;;-1:-1:-1;;;14504:103:0;;;;;;;:::i;:::-;14620:28;14630:4;14636:2;14640:7;14620:9;:28::i;38118:123::-;38184:7;38211:12;;;;;;;;;;:22;;;;38118:123::o;43438:165::-;43523:30;43539:4;43545:7;43523:15;:30::i;:::-;43564:18;;;;:12;:18;;;;;:31;;43587:7;43564:22;:31::i;52393:256::-;52490:7;52526:23;52543:5;52526:16;:23::i;:::-;52518:5;:31;52510:87;;;;-1:-1:-1;;;52510:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;52615:19:0;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52393:256;;;;;:::o;72305:446::-;72360:41;35026:4;72388:12;:10;:12::i;72360:41::-;72352:103;;;;-1:-1:-1;;;72352:103:0;;;;;;;:::i;:::-;72573:6;72569:177;72587:6;72583:1;:10;72569:177;;;72610:44;72616:10;72628:25;:15;:23;:25::i;72610:44::-;72696:10;72659:7;:34;72667:25;:15;:23;:25::i;:::-;72659:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;72659:47:0;;;;;-1:-1:-1;;;;;72659:47:0;;;;;;72711:27;:15;:25;:27::i;:::-;72595:3;;;;:::i;:::-;;;;72569:177;;72757:101;72814:7;72836:16;;;:7;:16;;;;;;-1:-1:-1;;;;;72836:16:0;;72757:101::o;43961:174::-;44049:33;44068:4;44074:7;44049:18;:33::i;:::-;44093:18;;;;:12;:18;;;;;:34;;44119:7;44093:25;:34::i;14727:185::-;14865:39;14882:4;14888:2;14892:7;14865:39;;;;;;;;;;;;:16;:39::i;52915:233::-;52990:7;53026:30;:28;:30::i;:::-;53018:5;:38;53010:95;;;;-1:-1:-1;;;53010:95:0;;;;;;;:::i;:::-;53123:10;53134:5;53123:17;;;;;;-1:-1:-1;;;53123:17:0;;;;;;;;;;;;;;;;;53116:24;;52915:233;;;:::o;70077:44::-;;;;;;;;;;;;-1:-1:-1;;;;;70077:44:0;;:::o;70746:198::-;70813:41;35026:4;70841:12;:10;:12::i;70813:41::-;70805:103;;;;-1:-1:-1;;;70805:103:0;;;;;;;:::i;:::-;70915:23;;;;:13;;:23;;;;;:::i;11562:239::-;11634:7;11670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;11670:16:0;11705:19;11697:73;;;;-1:-1:-1;;;11697:73:0;;;;;;;:::i;11292:208::-;11364:7;-1:-1:-1;;;;;11392:19:0;;11384:74;;;;-1:-1:-1;;;11384:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;11476:16:0;;;;;:9;:16;;;;;;;11292:208::o;42893:145::-;42975:7;43002:18;;;:12;:18;;;;;:28;;43024:5;43002:21;:28::i;:::-;42995:35;42893:145;-1:-1:-1;;;42893:145:0:o;71184:181::-;71242:41;35026:4;71270:12;:10;:12::i;71242:41::-;71234:100;;;;-1:-1:-1;;;71234:100:0;;;;;;;:::i;:::-;71341:6;:18;71184:181::o;37003:139::-;37081:4;37105:12;;;;;;;;;;;-1:-1:-1;;;;;37105:29:0;;;;;;;;;;;;;;;37003:139::o;12037:104::-;12093:13;12126:7;12119:14;;;;;:::i;69945:39::-;;;;:::o;71371:70::-;71429:6;;71371:70;:::o;34981:49::-;35026:4;34981:49;:::o;13720:295::-;13835:12;:10;:12::i;:::-;-1:-1:-1;;;;;13823:24:0;:8;-1:-1:-1;;;;;13823:24:0;;;13815:62;;;;-1:-1:-1;;;13815:62:0;;;;;;;:::i;:::-;13935:8;13890:18;:32;13909:12;:10;:12::i;:::-;-1:-1:-1;;;;;13890:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;13890:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;13890:53:0;;;;;;;;;;;13974:12;:10;:12::i;:::-;-1:-1:-1;;;;;13959:48:0;;13998:8;13959:48;;;;;;:::i;:::-;;;;;;;;13720:295;;:::o;71838:459::-;71926:6;71919;;:13;;;;:::i;:::-;71906:9;:26;71898:72;;;;-1:-1:-1;;;71898:72:0;;;;;;;:::i;:::-;72011:13;72018:6;72011:4;:13;:::i;:::-;71982:25;:15;:23;:25::i;:::-;:43;71974:95;;;;-1:-1:-1;;;71974:95:0;;;;;;;:::i;:::-;72080:6;72076:177;72094:6;72090:1;:10;72076:177;;;72117:44;72123:10;72135:25;:15;:23;:25::i;72117:44::-;72203:10;72166:7;:34;72174:25;:15;:23;:25::i;:::-;72166:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;72166:47:0;;;;;-1:-1:-1;;;;;72166:47:0;;;;;;72218:27;:15;:25;:27::i;:::-;72102:3;;;;:::i;:::-;;;;72076:177;;;-1:-1:-1;72264:6:0;;72256:35;;-1:-1:-1;;;;;72264:6:0;;;;72281:9;72256:35;;;;;72264:6;72256:35;72264:6;72256:35;72281:9;72264:6;72256:35;;;;;;;;;;;;;;;;;;;14983:328;15158:41;15177:12;:10;:12::i;:::-;15191:7;15158:18;:41::i;:::-;15150:103;;;;-1:-1:-1;;;15150:103:0;;;;;;;:::i;:::-;15264:39;15278:4;15284:2;15288:7;15297:5;15264:13;:39::i;:::-;14983:328;;;;:::o;73005:160::-;73096:13;73125:34;73151:7;73125:25;:34::i;43212:134::-;43284:7;43311:18;;;:12;:18;;;;;:27;;:25;:27::i;43696:170::-;43782:31;43799:4;43805:7;43782:16;:31::i;14086:164::-;-1:-1:-1;;;;;14207:25:0;;;14183:4;14207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;14086:164::o;40352:112::-;40431:25;40442:4;40448:7;40431:10;:25::i;29519:152::-;29589:4;29613:50;29618:3;-1:-1:-1;;;;;29638:23:0;;29613:4;:50::i;52085:224::-;52187:4;-1:-1:-1;;;;;;52211:50:0;;-1:-1:-1;;;52211:50:0;;:90;;;52265:36;52289:11;52265:23;:36::i;16821:127::-;16886:4;16910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16910:16:0;:30;;;16821:127::o;1471:98::-;1551:10;1471:98;:::o;20803:174::-;20878:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;20878:29:0;-1:-1:-1;;;;;20878:29:0;;;;;;;;:24;;20932:23;20878:24;20932:14;:23::i;:::-;-1:-1:-1;;;;;20923:46:0;;;;;;;;;;;20803:174;;:::o;8265:114::-;8357:14;;8265:114::o;18799:382::-;-1:-1:-1;;;;;18879:16:0;;18871:61;;;;-1:-1:-1;;;18871:61:0;;;;;;;:::i;:::-;18952:16;18960:7;18952;:16::i;:::-;18951:17;18943:58;;;;-1:-1:-1;;;18943:58:0;;;;;;;:::i;:::-;19014:45;19043:1;19047:2;19051:7;19014:20;:45::i;:::-;-1:-1:-1;;;;;19072:13:0;;;;;;:9;:13;;;;;:18;;19089:1;;19072:13;:18;;19089:1;;19072:18;:::i;:::-;;;;-1:-1:-1;;19101:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;19101:21:0;-1:-1:-1;;;;;19101:21:0;;;;;;;;19140:33;;19101:16;;;19140:33;;19101:16;;19140:33;18799:382;;:::o;8387:127::-;8476:19;;8494:1;8476:19;;;8387:127::o;45667:217::-;45767:16;45775:7;45767;:16::i;:::-;45759:75;;;;-1:-1:-1;;;45759:75:0;;;;;;;:::i;:::-;45845:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;17115:348::-;17208:4;17233:16;17241:7;17233;:16::i;:::-;17225:73;;;;-1:-1:-1;;;17225:73:0;;;;;;;:::i;:::-;17309:13;17325:23;17340:7;17325:14;:23::i;:::-;17309:39;;17378:5;-1:-1:-1;;;;;17367:16:0;:7;-1:-1:-1;;;;;17367:16:0;;:51;;;;17411:7;-1:-1:-1;;;;;17387:31:0;:20;17399:7;17387:11;:20::i;:::-;-1:-1:-1;;;;;17387:31:0;;17367:51;:87;;;;17422:32;17439:5;17446:7;17422:16;:32::i;:::-;17359:96;17115:348;-1:-1:-1;;;;17115:348:0:o;20107:578::-;20266:4;-1:-1:-1;;;;;20239:31:0;:23;20254:7;20239:14;:23::i;:::-;-1:-1:-1;;;;;20239:31:0;;20231:85;;;;-1:-1:-1;;;20231:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20335:16:0;;20327:65;;;;-1:-1:-1;;;20327:65:0;;;;;;;:::i;:::-;20405:39;20426:4;20432:2;20436:7;20405:20;:39::i;:::-;20509:29;20526:1;20530:7;20509:8;:29::i;:::-;-1:-1:-1;;;;;20551:15:0;;;;;;:9;:15;;;;;:20;;20570:1;;20551:15;:20;;20570:1;;20551:20;:::i;:::-;;;;-1:-1:-1;;;;;;;20582:13:0;;;;;;:9;:13;;;;;:18;;20599:1;;20582:13;:18;;20599:1;;20582:18;:::i;:::-;;;;-1:-1:-1;;20611:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;20611:21:0;-1:-1:-1;;;;;20611:21:0;;;;;;;;;20650:27;;20611:16;;20650:27;;;;;;;20107:578;;;:::o;38503:147::-;38586:18;38599:4;38586:12;:18::i;:::-;36585:30;36596:4;36602:12;:10;:12::i;:::-;36585:10;:30::i;:::-;38617:25:::1;38628:4;38634:7;38617:10;:25::i;39551:218::-:0;39658:12;:10;:12::i;:::-;-1:-1:-1;;;;;39647:23:0;:7;-1:-1:-1;;;;;39647:23:0;;39639:83;;;;-1:-1:-1;;;39639:83:0;;;;;;;:::i;:::-;39735:26;39747:4;39753:7;39735:11;:26::i;29847:158::-;29920:4;29944:53;29952:3;-1:-1:-1;;;;;29972:23:0;;29944:7;:53::i;30815:158::-;30889:7;30940:22;30944:3;30956:5;30940:3;:22::i;16193:315::-;16350:28;16360:4;16366:2;16370:7;16350:9;:28::i;:::-;16397:48;16420:4;16426:2;16430:7;16439:5;16397:22;:48::i;:::-;16389:111;;;;-1:-1:-1;;;16389:111:0;;;;;;;:::i;44832:679::-;44905:13;44939:16;44947:7;44939;:16::i;:::-;44931:78;;;;-1:-1:-1;;;44931:78:0;;;;;;;:::i;:::-;45022:23;45048:19;;;:10;:19;;;;;45022:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45078:18;45099:10;:8;:10::i;:::-;45078:31;;45191:4;45185:18;45207:1;45185:23;45181:72;;;-1:-1:-1;45232:9:0;-1:-1:-1;45225:16:0;;45181:72;45357:23;;:27;45353:108;;45432:4;45438:9;45415:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45401:48;;;;;;45353:108;45480:23;45495:7;45480:14;:23::i;30344:117::-;30407:7;30434:19;30442:3;30434:7;:19::i;38895:149::-;38979:18;38992:4;38979:12;:18::i;:::-;36585:30;36596:4;36602:12;:10;:12::i;36585:30::-;39010:26:::1;39022:4;39028:7;39010:11;:26::i;40799:229::-:0;40874:22;40882:4;40888:7;40874;:22::i;:::-;40869:152;;40913:6;:12;;;;;;;;;;;-1:-1:-1;;;;;40913:29:0;;;;;;;;;:36;;-1:-1:-1;;40913:36:0;40945:4;40913:36;;;40996:12;:10;:12::i;:::-;-1:-1:-1;;;;;40969:40:0;40987:7;-1:-1:-1;;;;;40969:40:0;40981:4;40969:40;;;;;;;;;;40799:229;;:::o;24771:414::-;24834:4;24856:21;24866:3;24871:5;24856:9;:21::i;:::-;24851:327;;-1:-1:-1;24894:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;25077:18;;25055:19;;;:12;;;:19;;;;;;:40;;;;25110:11;;24851:327;-1:-1:-1;25161:5:0;25154:12;;10923:305;11025:4;-1:-1:-1;;;;;;11062:40:0;;-1:-1:-1;;;11062:40:0;;:105;;-1:-1:-1;;;;;;;11119:48:0;;-1:-1:-1;;;11119:48:0;11062:105;:158;;;;11184:36;11208:11;11184:23;:36::i;73173:183::-;73305:45;73332:4;73338:2;73342:7;73305:26;:45::i;37432:497::-;37513:22;37521:4;37527:7;37513;:22::i;:::-;37508:414;;37701:41;37729:7;-1:-1:-1;;;;;37701:41:0;37739:2;37701:19;:41::i;:::-;37815:38;37843:4;37850:2;37815:19;:38::i;:::-;37606:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37606:270:0;;;;;;;;;;-1:-1:-1;;;37552:358:0;;;;;;;:::i;41036:230::-;41111:22;41119:4;41125:7;41111;:22::i;:::-;41107:152;;;41182:5;41150:12;;;;;;;;;;;-1:-1:-1;;;;;41150:29:0;;;;;;;;;:37;;-1:-1:-1;;41150:37:0;;;41234:12;:10;:12::i;:::-;-1:-1:-1;;;;;41207:40:0;41225:7;-1:-1:-1;;;;;41207:40:0;41219:4;41207:40;;;;;;;;;;41036:230;;:::o;25361:1420::-;25427:4;25566:19;;;:12;;;:19;;;;;;25602:15;;25598:1176;;25977:21;26001:14;26014:1;26001:10;:14;:::i;:::-;26050:18;;25977:38;;-1:-1:-1;26030:17:0;;26050:22;;26071:1;;26050:22;:::i;:::-;26030:42;;26106:13;26093:9;:26;26089:405;;26140:17;26160:3;:11;;26172:9;26160:22;;;;;;-1:-1:-1;;;26160:22:0;;;;;;;;;;;;;;;;;26140:42;;26314:9;26285:3;:11;;26297:13;26285:26;;;;;;-1:-1:-1;;;26285:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;26399:23;;;:12;;;:23;;;;;:36;;;26089:405;26575:17;;:3;;:17;;;-1:-1:-1;;;26575:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;26670:3;:12;;:19;26683:5;26670:19;;;;;;;;;;;26663:26;;;26713:4;26706:11;;;;;;;25598:1176;26757:5;26750:12;;;;;27545:120;27612:7;27639:3;:11;;27651:5;27639:18;;;;;;-1:-1:-1;;;27639:18:0;;;;;;;;;;;;;;;;;27632:25;;27545:120;;;;:::o;21542:803::-;21697:4;21718:15;:2;-1:-1:-1;;;;;21718:13:0;;:15::i;:::-;21714:624;;;21770:2;-1:-1:-1;;;;;21754:36:0;;21791:12;:10;:12::i;:::-;21805:4;21811:7;21820:5;21754:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21754:72:0;;;;;;;;-1:-1:-1;;21754:72:0;;;;;;;;;;;;:::i;:::-;;;21750:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22000:13:0;;21996:272;;22043:60;;-1:-1:-1;;;22043:60:0;;;;;;;:::i;21996:272::-;22218:6;22212:13;22203:6;22199:2;22195:15;22188:38;21750:533;-1:-1:-1;;;;;;21877:55:0;-1:-1:-1;;;21877:55:0;;-1:-1:-1;21870:62:0;;21714:624;-1:-1:-1;22322:4:0;21542:803;;;;;;:::o;70630:110::-;70690:13;70721;70714:20;;;;;:::i;12212:334::-;12285:13;12319:16;12327:7;12319;:16::i;:::-;12311:76;;;;-1:-1:-1;;;12311:76:0;;;;;;;:::i;:::-;12400:21;12424:10;:8;:10::i;:::-;12400:34;;12476:1;12458:7;12452:21;:25;:86;;;;;;;;;;;;;;;;;12504:7;12513:18;:7;:16;:18::i;:::-;12487:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12445:93;12212:334;-1:-1:-1;;;12212:334:0:o;26867:129::-;26940:4;26964:19;;;:12;;;;;:19;;;;;;:24;;;26867:129::o;42080:214::-;42165:4;-1:-1:-1;;;;;;42189:57:0;;-1:-1:-1;;;42189:57:0;;:97;;;42250:36;42274:11;42250:23;:36::i;53761:589::-;53905:45;53932:4;53938:2;53942:7;53905:26;:45::i;:::-;-1:-1:-1;;;;;53967:18:0;;53963:187;;54002:40;54034:7;54002:31;:40::i;:::-;53963:187;;;54072:2;-1:-1:-1;;;;;54064:10:0;:4;-1:-1:-1;;;;;54064:10:0;;54060:90;;54091:47;54124:4;54130:7;54091:32;:47::i;:::-;-1:-1:-1;;;;;54164:16:0;;54160:183;;54197:45;54234:7;54197:36;:45::i;:::-;54160:183;;;54270:4;-1:-1:-1;;;;;54264:10:0;:2;-1:-1:-1;;;;;54264:10:0;;54260:83;;54291:40;54319:2;54323:7;54291:27;:40::i;59845:451::-;59920:13;59946:19;59978:10;59982:6;59978:1;:10;:::i;:::-;:14;;59991:1;59978:14;:::i;:::-;59968:25;;;;;;-1:-1:-1;;;59968:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59968:25:0;;59946:47;;-1:-1:-1;;;60004:6:0;60011:1;60004:9;;;;;;-1:-1:-1;;;60004:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;60004:15:0;;;;;;;;;-1:-1:-1;;;60030:6:0;60037:1;60030:9;;;;;;-1:-1:-1;;;60030:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;60030:15:0;;;;;;;;-1:-1:-1;60061:9:0;60073:10;60077:6;60073:1;:10;:::i;:::-;:14;;60086:1;60073:14;:::i;:::-;60061:26;;60056:135;60093:1;60089;:5;60056:135;;;-1:-1:-1;;;60141:5:0;60149:3;60141:11;60128:25;;;;;-1:-1:-1;;;60128:25:0;;;;;;;;;;;;60116:6;60123:1;60116:9;;;;;;-1:-1:-1;;;60116:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;60116:37:0;;;;;;;;-1:-1:-1;60178:1:0;60168:11;;;;;60096:3;;;:::i;:::-;;;60056:135;;;-1:-1:-1;60209:10:0;;60201:55;;;;-1:-1:-1;;;60201:55:0;;;;;;;:::i;61071:387::-;61394:20;61442:8;;;61071:387::o;58544:723::-;58600:13;58821:10;58817:53;;-1:-1:-1;58848:10:0;;;;;;;;;;;;-1:-1:-1;;;58848:10:0;;;;;;58817:53;58895:5;58880:12;58936:78;58943:9;;58936:78;;58969:8;;;;:::i;:::-;;-1:-1:-1;58992:10:0;;-1:-1:-1;59000:2:0;58992:10;;:::i;:::-;;;58936:78;;;59024:19;59056:6;59046:17;;;;;;-1:-1:-1;;;59046:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59046:17:0;;59024:39;;59074:154;59081:10;;59074:154;;59108:11;59118:1;59108:11;;:::i;:::-;;-1:-1:-1;59177:10:0;59185:2;59177:5;:10;:::i;:::-;59164:24;;:2;:24;:::i;:::-;59151:39;;59134:6;59141;59134:14;;;;;;-1:-1:-1;;;59134:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;59134:56:0;;;;;;;;-1:-1:-1;59205:11:0;59214:2;59205:11;;:::i;:::-;;;59074:154;;36707:204;36792:4;-1:-1:-1;;;;;;36816:47:0;;-1:-1:-1;;;36816:47:0;;:87;;;36867:36;36891:11;36867:23;:36::i;55073:164::-;55177:10;:17;;55150:24;;;;:15;:24;;;;;:44;;;55205:24;;;;;;;;;;;;55073:164::o;55864:988::-;56130:22;56180:1;56155:22;56172:4;56155:16;:22::i;:::-;:26;;;;:::i;:::-;56192:18;56213:26;;;:17;:26;;;;;;56130:51;;-1:-1:-1;56346:28:0;;;56342:328;;-1:-1:-1;;;;;56413:18:0;;56391:19;56413:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56464:30;;;;;;:44;;;56581:30;;:17;:30;;;;;:43;;;56342:328;-1:-1:-1;56766:26:0;;;;:17;:26;;;;;;;;56759:33;;;-1:-1:-1;;;;;56810:18:0;;;;;:12;:18;;;;;:34;;;;;;;56803:41;55864:988::o;57147:1079::-;57425:10;:17;57400:22;;57425:21;;57445:1;;57425:21;:::i;:::-;57457:18;57478:24;;;:15;:24;;;;;;57851:10;:26;;57400:46;;-1:-1:-1;57478:24:0;;57400:46;;57851:26;;;;-1:-1:-1;;;57851:26:0;;;;;;;;;;;;;;;;;57829:48;;57915:11;57890:10;57901;57890:22;;;;;;-1:-1:-1;;;57890:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;57995:28;;;:15;:28;;;;;;;:41;;;58167:24;;;;;58160:31;58202:10;:16;;;;;-1:-1:-1;;;58202:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;57147:1079;;;;:::o;54651:221::-;54736:14;54753:20;54770:2;54753:16;:20::i;:::-;-1:-1:-1;;;;;54784:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;54829:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54651:221:0:o;2481:157::-;-1:-1:-1;;;;;;2590:40:0;;-1:-1:-1;;;2590:40:0;2481:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:233;;904:3;897:4;889:6;885:17;881:27;871:2;;926:5;919;912:20;871:2;952:81;1029:3;1020:6;1007:20;1000:4;992:6;988:17;952:81;:::i;1044:198::-;;1156:2;1144:9;1135:7;1131:23;1127:32;1124:2;;;1177:6;1169;1162:22;1124:2;1205:31;1226:9;1205:31;:::i;1247:274::-;;;1376:2;1364:9;1355:7;1351:23;1347:32;1344:2;;;1397:6;1389;1382:22;1344:2;1425:31;1446:9;1425:31;:::i;:::-;1415:41;;1475:40;1511:2;1500:9;1496:18;1475:40;:::i;:::-;1465:50;;1334:187;;;;;:::o;1526:342::-;;;;1672:2;1660:9;1651:7;1647:23;1643:32;1640:2;;;1693:6;1685;1678:22;1640:2;1721:31;1742:9;1721:31;:::i;:::-;1711:41;;1771:40;1807:2;1796:9;1792:18;1771:40;:::i;:::-;1761:50;;1858:2;1847:9;1843:18;1830:32;1820:42;;1630:238;;;;;:::o;1873:702::-;;;;;2045:3;2033:9;2024:7;2020:23;2016:33;2013:2;;;2067:6;2059;2052:22;2013:2;2095:31;2116:9;2095:31;:::i;:::-;2085:41;;2145:40;2181:2;2170:9;2166:18;2145:40;:::i;:::-;2135:50;;2232:2;2221:9;2217:18;2204:32;2194:42;;2287:2;2276:9;2272:18;2259:32;2314:18;2306:6;2303:30;2300:2;;;2351:6;2343;2336:22;2300:2;2379:22;;2432:4;2424:13;;2420:27;-1:-1:-1;2410:2:1;;2466:6;2458;2451:22;2410:2;2494:75;2561:7;2556:2;2543:16;2538:2;2534;2530:11;2494:75;:::i;:::-;2484:85;;;2003:572;;;;;;;:::o;2580:369::-;;;2706:2;2694:9;2685:7;2681:23;2677:32;2674:2;;;2727:6;2719;2712:22;2674:2;2755:31;2776:9;2755:31;:::i;:::-;2745:41;;2836:2;2825:9;2821:18;2808:32;2883:5;2876:13;2869:21;2862:5;2859:32;2849:2;;2910:6;2902;2895:22;2849:2;2938:5;2928:15;;;2664:285;;;;;:::o;2954:266::-;;;3083:2;3071:9;3062:7;3058:23;3054:32;3051:2;;;3104:6;3096;3089:22;3051:2;3132:31;3153:9;3132:31;:::i;:::-;3122:41;3210:2;3195:18;;;;3182:32;;-1:-1:-1;;;3041:179:1:o;3225:190::-;;3337:2;3325:9;3316:7;3312:23;3308:32;3305:2;;;3358:6;3350;3343:22;3305:2;-1:-1:-1;3386:23:1;;3295:120;-1:-1:-1;3295:120:1:o;3420:266::-;;;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3570:6;3562;3555:22;3517:2;3611:9;3598:23;3588:33;;3640:40;3676:2;3665:9;3661:18;3640:40;:::i;3691:258::-;;;3820:2;3808:9;3799:7;3795:23;3791:32;3788:2;;;3841:6;3833;3826:22;3788:2;-1:-1:-1;;3869:23:1;;;3939:2;3924:18;;;3911:32;;-1:-1:-1;3778:171:1:o;3954:257::-;;4065:2;4053:9;4044:7;4040:23;4036:32;4033:2;;;4086:6;4078;4071:22;4033:2;4130:9;4117:23;4149:32;4175:5;4149:32;:::i;4216:261::-;;4338:2;4326:9;4317:7;4313:23;4309:32;4306:2;;;4359:6;4351;4344:22;4306:2;4396:9;4390:16;4415:32;4441:5;4415:32;:::i;4482:344::-;;4604:2;4592:9;4583:7;4579:23;4575:32;4572:2;;;4625:6;4617;4610:22;4572:2;4670:9;4657:23;4703:18;4695:6;4692:30;4689:2;;;4740:6;4732;4725:22;4689:2;4768:52;4812:7;4803:6;4792:9;4788:22;4768:52;:::i;5026:412::-;;;5165:2;5153:9;5144:7;5140:23;5136:32;5133:2;;;5186:6;5178;5171:22;5133:2;5227:9;5214:23;5204:33;;5288:2;5277:9;5273:18;5260:32;5315:18;5307:6;5304:30;5301:2;;;5352:6;5344;5337:22;5301:2;5380:52;5424:7;5415:6;5404:9;5400:22;5380:52;:::i;:::-;5370:62;;;5123:315;;;;;:::o;5443:259::-;;5524:5;5518:12;5551:6;5546:3;5539:19;5567:63;5623:6;5616:4;5611:3;5607:14;5600:4;5593:5;5589:16;5567:63;:::i;:::-;5684:2;5663:15;-1:-1:-1;;5659:29:1;5650:39;;;;5691:4;5646:50;;5494:208;-1:-1:-1;;5494:208:1:o;5707:470::-;;5924:6;5918:13;5940:53;5986:6;5981:3;5974:4;5966:6;5962:17;5940:53;:::i;:::-;6056:13;;6015:16;;;;6078:57;6056:13;6015:16;6112:4;6100:17;;6078:57;:::i;:::-;6151:20;;5894:283;-1:-1:-1;;;;5894:283:1:o;6182:786::-;;6593:25;6588:3;6581:38;6648:6;6642:13;6664:62;6719:6;6714:2;6709:3;6705:12;6698:4;6690:6;6686:17;6664:62;:::i;:::-;-1:-1:-1;;;6785:2:1;6745:16;;;6777:11;;;6770:40;6835:13;;6857:63;6835:13;6906:2;6898:11;;6891:4;6879:17;;6857:63;:::i;:::-;6940:17;6959:2;6936:26;;6571:397;-1:-1:-1;;;;6571:397:1:o;6973:203::-;-1:-1:-1;;;;;7137:32:1;;;;7119:51;;7107:2;7092:18;;7074:102::o;7181:490::-;-1:-1:-1;;;;;7450:15:1;;;7432:34;;7502:15;;7497:2;7482:18;;7475:43;7549:2;7534:18;;7527:34;;;7597:3;7592:2;7577:18;;7570:31;;;7181:490;;7618:47;;7645:19;;7637:6;7618:47;:::i;:::-;7610:55;7384:287;-1:-1:-1;;;;;;7384:287:1:o;7676:187::-;7841:14;;7834:22;7816:41;;7804:2;7789:18;;7771:92::o;7868:177::-;8014:25;;;8002:2;7987:18;;7969:76::o;8050:221::-;;8199:2;8188:9;8181:21;8219:46;8261:2;8250:9;8246:18;8238:6;8219:46;:::i;8276:356::-;8478:2;8460:21;;;8497:18;;;8490:30;8556:34;8551:2;8536:18;;8529:62;8623:2;8608:18;;8450:182::o;8637:414::-;8839:2;8821:21;;;8878:2;8858:18;;;8851:30;8917:34;8912:2;8897:18;;8890:62;-1:-1:-1;;;8983:2:1;8968:18;;8961:48;9041:3;9026:19;;8811:240::o;9056:407::-;9258:2;9240:21;;;9297:2;9277:18;;;9270:30;9336:34;9331:2;9316:18;;9309:62;-1:-1:-1;;;9402:2:1;9387:18;;9380:41;9453:3;9438:19;;9230:233::o;9468:414::-;9670:2;9652:21;;;9709:2;9689:18;;;9682:30;9748:34;9743:2;9728:18;;9721:62;-1:-1:-1;;;9814:2:1;9799:18;;9792:48;9872:3;9857:19;;9642:240::o;9887:403::-;10089:2;10071:21;;;10128:2;10108:18;;;10101:30;10167:34;10162:2;10147:18;;10140:62;-1:-1:-1;;;10233:2:1;10218:18;;10211:37;10280:3;10265:19;;10061:229::o;10295:352::-;10497:2;10479:21;;;10536:2;10516:18;;;10509:30;10575;10570:2;10555:18;;10548:58;10638:2;10623:18;;10469:178::o;10652:400::-;10854:2;10836:21;;;10893:2;10873:18;;;10866:30;10932:34;10927:2;10912:18;;10905:62;-1:-1:-1;;;10998:2:1;10983:18;;10976:34;11042:3;11027:19;;10826:226::o;11057:349::-;11259:2;11241:21;;;11298:2;11278:18;;;11271:30;11337:27;11332:2;11317:18;;11310:55;11397:2;11382:18;;11231:175::o;11411:408::-;11613:2;11595:21;;;11652:2;11632:18;;;11625:30;11691:34;11686:2;11671:18;;11664:62;-1:-1:-1;;;11757:2:1;11742:18;;11735:42;11809:3;11794:19;;11585:234::o;11824:420::-;12026:2;12008:21;;;12065:2;12045:18;;;12038:30;12104:34;12099:2;12084:18;;12077:62;12175:26;12170:2;12155:18;;12148:54;12234:3;12219:19;;11998:246::o;12249:406::-;12451:2;12433:21;;;12490:2;12470:18;;;12463:30;12529:34;12524:2;12509:18;;12502:62;-1:-1:-1;;;12595:2:1;12580:18;;12573:40;12645:3;12630:19;;12423:232::o;12660:405::-;12862:2;12844:21;;;12901:2;12881:18;;;12874:30;12940:34;12935:2;12920:18;;12913:62;-1:-1:-1;;;13006:2:1;12991:18;;12984:39;13055:3;13040:19;;12834:231::o;13070:410::-;13272:2;13254:21;;;13311:2;13291:18;;;13284:30;13350:34;13345:2;13330:18;;13323:62;-1:-1:-1;;;13416:2:1;13401:18;;13394:44;13470:3;13455:19;;13244:236::o;13485:397::-;13687:2;13669:21;;;13726:2;13706:18;;;13699:30;13765:34;13760:2;13745:18;;13738:62;-1:-1:-1;;;13831:2:1;13816:18;;13809:31;13872:3;13857:19;;13659:223::o;13887:356::-;14089:2;14071:21;;;14108:18;;;14101:30;14167:34;14162:2;14147:18;;14140:62;14234:2;14219:18;;14061:182::o;14248:413::-;14450:2;14432:21;;;14489:2;14469:18;;;14462:30;14528:34;14523:2;14508:18;;14501:62;-1:-1:-1;;;14594:2:1;14579:18;;14572:47;14651:3;14636:19;;14422:239::o;14666:408::-;14868:2;14850:21;;;14907:2;14887:18;;;14880:30;14946:34;14941:2;14926:18;;14919:62;-1:-1:-1;;;15012:2:1;14997:18;;14990:42;15064:3;15049:19;;14840:234::o;15079:405::-;15281:2;15263:21;;;15320:2;15300:18;;;15293:30;15359:34;15354:2;15339:18;;15332:62;-1:-1:-1;;;15425:2:1;15410:18;;15403:39;15474:3;15459:19;;15253:231::o;15489:411::-;15691:2;15673:21;;;15730:2;15710:18;;;15703:30;15769:34;15764:2;15749:18;;15742:62;-1:-1:-1;;;15835:2:1;15820:18;;15813:45;15890:3;15875:19;;15663:237::o;15905:397::-;16107:2;16089:21;;;16146:2;16126:18;;;16119:30;16185:34;16180:2;16165:18;;16158:62;-1:-1:-1;;;16251:2:1;16236:18;;16229:31;16292:3;16277:19;;16079:223::o;16307:413::-;16509:2;16491:21;;;16548:2;16528:18;;;16521:30;16587:34;16582:2;16567:18;;16560:62;-1:-1:-1;;;16653:2:1;16638:18;;16631:47;16710:3;16695:19;;16481:239::o;16725:413::-;16927:2;16909:21;;;16966:2;16946:18;;;16939:30;17005:34;17000:2;16985:18;;16978:62;-1:-1:-1;;;17071:2:1;17056:18;;17049:47;17128:3;17113:19;;16899:239::o;17143:408::-;17345:2;17327:21;;;17384:2;17364:18;;;17357:30;17423:34;17418:2;17403:18;;17396:62;-1:-1:-1;;;17489:2:1;17474:18;;17467:42;17541:3;17526:19;;17317:234::o;17556:410::-;17758:2;17740:21;;;17797:2;17777:18;;;17770:30;17836:34;17831:2;17816:18;;17809:62;-1:-1:-1;;;17902:2:1;17887:18;;17880:44;17956:3;17941:19;;17730:236::o;17971:411::-;18173:2;18155:21;;;18212:2;18192:18;;;18185:30;18251:34;18246:2;18231:18;;18224:62;-1:-1:-1;;;18317:2:1;18302:18;;18295:45;18372:3;18357:19;;18145:237::o;18569:128::-;;18640:1;18636:6;18633:1;18630:13;18627:2;;;18646:18;;:::i;:::-;-1:-1:-1;18682:9:1;;18617:80::o;18702:120::-;;18768:1;18758:2;;18773:18;;:::i;:::-;-1:-1:-1;18807:9:1;;18748:74::o;18827:168::-;;18933:1;18929;18925:6;18921:14;18918:1;18915:21;18910:1;18903:9;18896:17;18892:45;18889:2;;;18940:18;;:::i;:::-;-1:-1:-1;18980:9:1;;18879:116::o;19000:125::-;;19068:1;19065;19062:8;19059:2;;;19073:18;;:::i;:::-;-1:-1:-1;19110:9:1;;19049:76::o;19130:258::-;19202:1;19212:113;19226:6;19223:1;19220:13;19212:113;;;19302:11;;;19296:18;19283:11;;;19276:39;19248:2;19241:10;19212:113;;;19343:6;19340:1;19337:13;19334:2;;;-1:-1:-1;;19378:1:1;19360:16;;19353:27;19183:205::o;19393:136::-;;19460:5;19450:2;;19469:18;;:::i;:::-;-1:-1:-1;;;19505:18:1;;19440:89::o;19534:380::-;19619:1;19609:12;;19666:1;19656:12;;;19677:2;;19731:4;19723:6;19719:17;19709:27;;19677:2;19784;19776:6;19773:14;19753:18;19750:38;19747:2;;;19830:10;19825:3;19821:20;19818:1;19811:31;19865:4;19862:1;19855:15;19893:4;19890:1;19883:15;19747:2;;19589:325;;;:::o;19919:135::-;;-1:-1:-1;;19979:17:1;;19976:2;;;19999:18;;:::i;:::-;-1:-1:-1;20046:1:1;20035:13;;19966:88::o;20059:112::-;;20117:1;20107:2;;20122:18;;:::i;:::-;-1:-1:-1;20156:9:1;;20097:74::o;20176:127::-;20237:10;20232:3;20228:20;20225:1;20218:31;20268:4;20265:1;20258:15;20292:4;20289:1;20282:15;20308:127;20369:10;20364:3;20360:20;20357:1;20350:31;20400:4;20397:1;20390:15;20424:4;20421:1;20414:15;20440:127;20501:10;20496:3;20492:20;20489:1;20482:31;20532:4;20529:1;20522:15;20556:4;20553:1;20546:15;20572:133;-1:-1:-1;;;;;;20648:32:1;;20638:43;;20628:2;;20695:1;20692;20685:12

Swarm Source

ipfs://b1d7a604f9bc0a66e863957d47ffdb16396fa649570d0a67eb759ac166f4c913
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.