ETH Price: $3,829.87 (+5.98%)

Token

MetaWeb3 Army (Web3 Army)
 

Overview

Max Total Supply

240 Web3 Army

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ihatejeets.eth
Balance
1 Web3 Army
0xaa0f24616caa6484b4f3ba6b7a80f5210a0585ac
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:
MetaWeb3Army

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-02
*/

// SPDX-License-Identifier: MIT

// 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/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/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/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// 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/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/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/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

contract MetaWeb3Army is ERC721, Ownable {
    uint256 public constant MAX_SUPPLY = 333;
    uint256 private mintCount;

    uint256 constant PRICE = 0.1 ether;
    string baseTokenURI;

    mapping(address => bool) public nftMinted;

    event Minted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("MetaWeb3 Army", "Web3 Army") {
        setBaseURI(baseURI);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    function reserveNFTs(uint256 _count) external onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        mintCount += _count;
        for (uint256 i; i < _count; i++) {
            _safeMint(msg.sender, ++supply);
            emit Minted(supply);
        }
    }

    function mint() external payable {
        uint256 supply = totalSupply();

        require(supply + 1 <= MAX_SUPPLY, "Exceeds maximum supply");
        require(!nftMinted[msg.sender], "Address has already minted an NFT");
        require(
            msg.value >= PRICE,
            "Ether sent with this transaction is not correct"
        );

        nftMinted[msg.sender] = true;
        mintCount++;

        _safeMint(msg.sender, ++supply);
        emit Minted(supply);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveNFTs","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001f7a38038062001f7a833981016040819052620000349162000243565b604080518082018252600d81526c4d657461576562332041726d7960981b602080830191825283518085019094526009845268576562332041726d7960b81b9084015281519192916200008a916000916200019d565b508051620000a09060019060208401906200019d565b505050620000bd620000b7620000cf60201b60201c565b620000d3565b620000c88162000125565b5062000372565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001999060089060208401906200019d565b5050565b828054620001ab906200031f565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b600060208083850312156200025757600080fd5b82516001600160401b03808211156200026f57600080fd5b818501915085601f8301126200028457600080fd5b8151818111156200029957620002996200035c565b604051601f8201601f19908116603f01168101908382118183101715620002c457620002c46200035c565b816040528281528886848701011115620002dd57600080fd5b600093505b82841015620003015784840186015181850187015292850192620002e2565b82841115620003135760008684830101525b98975050505050505050565b600181811c908216806200033457607f821691505b602082108114156200035657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611bf880620003826000396000f3fe6080604052600436106101405760003560e01c806355f804b3116100b6578063a22cb4651161006f578063a22cb46514610360578063b88d4fde14610380578063bc7df091146103a0578063c87b56dd146103c0578063e985e9c5146103e0578063f2fde38b1461042957600080fd5b806355f804b3146102b85780636352211e146102d857806370a08231146102f8578063715018a6146103185780638da5cb5b1461032d57806395d89b411461034b57600080fd5b806318160ddd1161010857806318160ddd146101fe57806323b872dd1461021d5780632f6f92b31461023d57806332cb6b0c1461026d5780633ccfd60b1461028357806342842e0e1461029857600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d45780631249c58b146101f6575b600080fd5b34801561015157600080fd5b5061016561016036600461185c565b610449565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61049b565b6040516101719190611990565b3480156101a857600080fd5b506101bc6101b73660046118df565b61052d565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611832565b6105c7565b005b6101f46106dd565b34801561020a57600080fd5b506007545b604051908152602001610171565b34801561022957600080fd5b506101f461023836600461173e565b610892565b34801561024957600080fd5b506101656102583660046116f0565b60096020526000908152604090205460ff1681565b34801561027957600080fd5b5061020f61014d81565b34801561028f57600080fd5b506101f46108c3565b3480156102a457600080fd5b506101f46102b336600461173e565b61097b565b3480156102c457600080fd5b506101f46102d3366004611896565b610996565b3480156102e457600080fd5b506101bc6102f33660046118df565b6109d7565b34801561030457600080fd5b5061020f6103133660046116f0565b610a4e565b34801561032457600080fd5b506101f4610ad5565b34801561033957600080fd5b506006546001600160a01b03166101bc565b34801561035757600080fd5b5061018f610b0b565b34801561036c57600080fd5b506101f461037b3660046117f6565b610b1a565b34801561038c57600080fd5b506101f461039b36600461177a565b610bdf565b3480156103ac57600080fd5b506101f46103bb3660046118df565b610c17565b3480156103cc57600080fd5b5061018f6103db3660046118df565b610d1f565b3480156103ec57600080fd5b506101656103fb36600461170b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043557600080fd5b506101f46104443660046116f0565b610dfa565b60006001600160e01b031982166380ac58cd60e01b148061047a57506001600160e01b03198216635b5e139f60e01b145b8061049557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104aa90611aea565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690611aea565b80156105235780601f106104f857610100808354040283529160200191610523565b820191906000526020600020905b81548152906001019060200180831161050657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d2826109d7565b9050806001600160a01b0316836001600160a01b031614156106405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a2565b336001600160a01b038216148061065c575061065c81336103fb565b6106ce5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a2565b6106d88383610e92565b505050565b60006106e860075490565b905061014d6106f8826001611a7b565b111561073f5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105a2565b3360009081526009602052604090205460ff16156107a95760405162461bcd60e51b815260206004820152602160248201527f416464726573732068617320616c7265616479206d696e74656420616e204e466044820152601560fa1b60648201526084016105a2565b67016345785d8a00003410156108195760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b60648201526084016105a2565b336000908152600960205260408120805460ff19166001179055600780549161084183611b25565b919050555061085c338261085490611b25565b925082610f00565b6040518181527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a150565b61089c3382610f1a565b6108b85760405162461bcd60e51b81526004016105a290611a2a565b6106d8838383611011565b6006546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105a2906119f5565b604051600090339047908381818185875af1925050503d806000811461092f576040519150601f19603f3d011682016040523d82523d6000602084013e610934565b606091505b50509050806109785760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105a2565b50565b6106d883838360405180602001604052806000815250610bdf565b6006546001600160a01b031633146109c05760405162461bcd60e51b81526004016105a2906119f5565b80516109d39060089060208401906115c5565b5050565b6000818152600260205260408120546001600160a01b0316806104955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a2565b60006001600160a01b038216610ab95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016105a2906119f5565b610b0960006111b1565b565b6060600180546104aa90611aea565b6001600160a01b038216331415610b735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be93383610f1a565b610c055760405162461bcd60e51b81526004016105a290611a2a565b610c1184848484611203565b50505050565b6006546001600160a01b03163314610c415760405162461bcd60e51b81526004016105a2906119f5565b6000610c4c60075490565b905061014d610c5b8383611a7b565b1115610ca25760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105a2565b8160076000828254610cb49190611a7b565b90915550600090505b828110156106d857610cda33610cd284611b25565b935083610f00565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610d1781611b25565b915050610cbd565b6000818152600260205260409020546060906001600160a01b0316610d9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a2565b6000610da8611236565b90506000815111610dc85760405180602001604052806000815250610df3565b80610dd284611245565b604051602001610de3929190611924565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610e245760405162461bcd60e51b81526004016105a2906119f5565b6001600160a01b038116610e895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a2565b610978816111b1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ec7826109d7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109d3828260405180602001604052806000815250611343565b6000818152600260205260408120546001600160a01b0316610f935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a2565b6000610f9e836109d7565b9050806001600160a01b0316846001600160a01b03161480610fd95750836001600160a01b0316610fce8461052d565b6001600160a01b0316145b8061100957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611024826109d7565b6001600160a01b03161461108c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a2565b6001600160a01b0382166110ee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a2565b6110f9600082610e92565b6001600160a01b0383166000908152600360205260408120805460019290611122908490611aa7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611150908490611a7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61120e848484611011565b61121a84848484611376565b610c115760405162461bcd60e51b81526004016105a2906119a3565b6060600880546104aa90611aea565b6060816112695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611293578061127d81611b25565b915061128c9050600a83611a93565b915061126d565b60008167ffffffffffffffff8111156112ae576112ae611b96565b6040519080825280601f01601f1916602001820160405280156112d8576020820181803683370190505b5090505b8415611009576112ed600183611aa7565b91506112fa600a86611b40565b611305906030611a7b565b60f81b81838151811061131a5761131a611b80565b60200101906001600160f81b031916908160001a90535061133c600a86611a93565b94506112dc565b61134d8383611483565b61135a6000848484611376565b6106d85760405162461bcd60e51b81526004016105a2906119a3565b60006001600160a01b0384163b1561147857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ba903390899088908890600401611953565b602060405180830381600087803b1580156113d457600080fd5b505af1925050508015611404575060408051601f3d908101601f1916820190925261140191810190611879565b60015b61145e573d808015611432576040519150601f19603f3d011682016040523d82523d6000602084013e611437565b606091505b5080516114565760405162461bcd60e51b81526004016105a2906119a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611009565b506001949350505050565b6001600160a01b0382166114d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a2565b6000818152600260205260409020546001600160a01b03161561153e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a2565b6001600160a01b0382166000908152600360205260408120805460019290611567908490611a7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115d190611aea565b90600052602060002090601f0160209004810192826115f35760008555611639565b82601f1061160c57805160ff1916838001178555611639565b82800160010185558215611639579182015b8281111561163957825182559160200191906001019061161e565b50611645929150611649565b5090565b5b80821115611645576000815560010161164a565b600067ffffffffffffffff8084111561167957611679611b96565b604051601f8501601f19908116603f011681019082821181831017156116a1576116a1611b96565b816040528093508581528686860111156116ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116eb57600080fd5b919050565b60006020828403121561170257600080fd5b610df3826116d4565b6000806040838503121561171e57600080fd5b611727836116d4565b9150611735602084016116d4565b90509250929050565b60008060006060848603121561175357600080fd5b61175c846116d4565b925061176a602085016116d4565b9150604084013590509250925092565b6000806000806080858703121561179057600080fd5b611799856116d4565b93506117a7602086016116d4565b925060408501359150606085013567ffffffffffffffff8111156117ca57600080fd5b8501601f810187136117db57600080fd5b6117ea8782356020840161165e565b91505092959194509250565b6000806040838503121561180957600080fd5b611812836116d4565b91506020830135801515811461182757600080fd5b809150509250929050565b6000806040838503121561184557600080fd5b61184e836116d4565b946020939093013593505050565b60006020828403121561186e57600080fd5b8135610df381611bac565b60006020828403121561188b57600080fd5b8151610df381611bac565b6000602082840312156118a857600080fd5b813567ffffffffffffffff8111156118bf57600080fd5b8201601f810184136118d057600080fd5b6110098482356020840161165e565b6000602082840312156118f157600080fd5b5035919050565b60008151808452611910816020860160208601611abe565b601f01601f19169290920160200192915050565b60008351611936818460208801611abe565b83519083019061194a818360208801611abe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611986908301846118f8565b9695505050505050565b602081526000610df360208301846118f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a8e57611a8e611b54565b500190565b600082611aa257611aa2611b6a565b500490565b600082821015611ab957611ab9611b54565b500390565b60005b83811015611ad9578181015183820152602001611ac1565b83811115610c115750506000910152565b600181811c90821680611afe57607f821691505b60208210811415611b1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3957611b39611b54565b5060010190565b600082611b4f57611b4f611b6a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097857600080fdfea264697066735822122023671c624e93cea6f70fb975e2c0a886d87f09c1ad4ce1562f172135f82dc4c764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101405760003560e01c806355f804b3116100b6578063a22cb4651161006f578063a22cb46514610360578063b88d4fde14610380578063bc7df091146103a0578063c87b56dd146103c0578063e985e9c5146103e0578063f2fde38b1461042957600080fd5b806355f804b3146102b85780636352211e146102d857806370a08231146102f8578063715018a6146103185780638da5cb5b1461032d57806395d89b411461034b57600080fd5b806318160ddd1161010857806318160ddd146101fe57806323b872dd1461021d5780632f6f92b31461023d57806332cb6b0c1461026d5780633ccfd60b1461028357806342842e0e1461029857600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d45780631249c58b146101f6575b600080fd5b34801561015157600080fd5b5061016561016036600461185c565b610449565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f61049b565b6040516101719190611990565b3480156101a857600080fd5b506101bc6101b73660046118df565b61052d565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611832565b6105c7565b005b6101f46106dd565b34801561020a57600080fd5b506007545b604051908152602001610171565b34801561022957600080fd5b506101f461023836600461173e565b610892565b34801561024957600080fd5b506101656102583660046116f0565b60096020526000908152604090205460ff1681565b34801561027957600080fd5b5061020f61014d81565b34801561028f57600080fd5b506101f46108c3565b3480156102a457600080fd5b506101f46102b336600461173e565b61097b565b3480156102c457600080fd5b506101f46102d3366004611896565b610996565b3480156102e457600080fd5b506101bc6102f33660046118df565b6109d7565b34801561030457600080fd5b5061020f6103133660046116f0565b610a4e565b34801561032457600080fd5b506101f4610ad5565b34801561033957600080fd5b506006546001600160a01b03166101bc565b34801561035757600080fd5b5061018f610b0b565b34801561036c57600080fd5b506101f461037b3660046117f6565b610b1a565b34801561038c57600080fd5b506101f461039b36600461177a565b610bdf565b3480156103ac57600080fd5b506101f46103bb3660046118df565b610c17565b3480156103cc57600080fd5b5061018f6103db3660046118df565b610d1f565b3480156103ec57600080fd5b506101656103fb36600461170b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043557600080fd5b506101f46104443660046116f0565b610dfa565b60006001600160e01b031982166380ac58cd60e01b148061047a57506001600160e01b03198216635b5e139f60e01b145b8061049557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104aa90611aea565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690611aea565b80156105235780601f106104f857610100808354040283529160200191610523565b820191906000526020600020905b81548152906001019060200180831161050657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d2826109d7565b9050806001600160a01b0316836001600160a01b031614156106405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a2565b336001600160a01b038216148061065c575061065c81336103fb565b6106ce5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a2565b6106d88383610e92565b505050565b60006106e860075490565b905061014d6106f8826001611a7b565b111561073f5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105a2565b3360009081526009602052604090205460ff16156107a95760405162461bcd60e51b815260206004820152602160248201527f416464726573732068617320616c7265616479206d696e74656420616e204e466044820152601560fa1b60648201526084016105a2565b67016345785d8a00003410156108195760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b60648201526084016105a2565b336000908152600960205260408120805460ff19166001179055600780549161084183611b25565b919050555061085c338261085490611b25565b925082610f00565b6040518181527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a150565b61089c3382610f1a565b6108b85760405162461bcd60e51b81526004016105a290611a2a565b6106d8838383611011565b6006546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105a2906119f5565b604051600090339047908381818185875af1925050503d806000811461092f576040519150601f19603f3d011682016040523d82523d6000602084013e610934565b606091505b50509050806109785760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105a2565b50565b6106d883838360405180602001604052806000815250610bdf565b6006546001600160a01b031633146109c05760405162461bcd60e51b81526004016105a2906119f5565b80516109d39060089060208401906115c5565b5050565b6000818152600260205260408120546001600160a01b0316806104955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a2565b60006001600160a01b038216610ab95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016105a2906119f5565b610b0960006111b1565b565b6060600180546104aa90611aea565b6001600160a01b038216331415610b735760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610be93383610f1a565b610c055760405162461bcd60e51b81526004016105a290611a2a565b610c1184848484611203565b50505050565b6006546001600160a01b03163314610c415760405162461bcd60e51b81526004016105a2906119f5565b6000610c4c60075490565b905061014d610c5b8383611a7b565b1115610ca25760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105a2565b8160076000828254610cb49190611a7b565b90915550600090505b828110156106d857610cda33610cd284611b25565b935083610f00565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610d1781611b25565b915050610cbd565b6000818152600260205260409020546060906001600160a01b0316610d9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a2565b6000610da8611236565b90506000815111610dc85760405180602001604052806000815250610df3565b80610dd284611245565b604051602001610de3929190611924565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610e245760405162461bcd60e51b81526004016105a2906119f5565b6001600160a01b038116610e895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a2565b610978816111b1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ec7826109d7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109d3828260405180602001604052806000815250611343565b6000818152600260205260408120546001600160a01b0316610f935760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a2565b6000610f9e836109d7565b9050806001600160a01b0316846001600160a01b03161480610fd95750836001600160a01b0316610fce8461052d565b6001600160a01b0316145b8061100957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611024826109d7565b6001600160a01b03161461108c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a2565b6001600160a01b0382166110ee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a2565b6110f9600082610e92565b6001600160a01b0383166000908152600360205260408120805460019290611122908490611aa7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611150908490611a7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61120e848484611011565b61121a84848484611376565b610c115760405162461bcd60e51b81526004016105a2906119a3565b6060600880546104aa90611aea565b6060816112695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611293578061127d81611b25565b915061128c9050600a83611a93565b915061126d565b60008167ffffffffffffffff8111156112ae576112ae611b96565b6040519080825280601f01601f1916602001820160405280156112d8576020820181803683370190505b5090505b8415611009576112ed600183611aa7565b91506112fa600a86611b40565b611305906030611a7b565b60f81b81838151811061131a5761131a611b80565b60200101906001600160f81b031916908160001a90535061133c600a86611a93565b94506112dc565b61134d8383611483565b61135a6000848484611376565b6106d85760405162461bcd60e51b81526004016105a2906119a3565b60006001600160a01b0384163b1561147857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ba903390899088908890600401611953565b602060405180830381600087803b1580156113d457600080fd5b505af1925050508015611404575060408051601f3d908101601f1916820190925261140191810190611879565b60015b61145e573d808015611432576040519150601f19603f3d011682016040523d82523d6000602084013e611437565b606091505b5080516114565760405162461bcd60e51b81526004016105a2906119a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611009565b506001949350505050565b6001600160a01b0382166114d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a2565b6000818152600260205260409020546001600160a01b03161561153e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a2565b6001600160a01b0382166000908152600360205260408120805460019290611567908490611a7b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115d190611aea565b90600052602060002090601f0160209004810192826115f35760008555611639565b82601f1061160c57805160ff1916838001178555611639565b82800160010185558215611639579182015b8281111561163957825182559160200191906001019061161e565b50611645929150611649565b5090565b5b80821115611645576000815560010161164a565b600067ffffffffffffffff8084111561167957611679611b96565b604051601f8501601f19908116603f011681019082821181831017156116a1576116a1611b96565b816040528093508581528686860111156116ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116eb57600080fd5b919050565b60006020828403121561170257600080fd5b610df3826116d4565b6000806040838503121561171e57600080fd5b611727836116d4565b9150611735602084016116d4565b90509250929050565b60008060006060848603121561175357600080fd5b61175c846116d4565b925061176a602085016116d4565b9150604084013590509250925092565b6000806000806080858703121561179057600080fd5b611799856116d4565b93506117a7602086016116d4565b925060408501359150606085013567ffffffffffffffff8111156117ca57600080fd5b8501601f810187136117db57600080fd5b6117ea8782356020840161165e565b91505092959194509250565b6000806040838503121561180957600080fd5b611812836116d4565b91506020830135801515811461182757600080fd5b809150509250929050565b6000806040838503121561184557600080fd5b61184e836116d4565b946020939093013593505050565b60006020828403121561186e57600080fd5b8135610df381611bac565b60006020828403121561188b57600080fd5b8151610df381611bac565b6000602082840312156118a857600080fd5b813567ffffffffffffffff8111156118bf57600080fd5b8201601f810184136118d057600080fd5b6110098482356020840161165e565b6000602082840312156118f157600080fd5b5035919050565b60008151808452611910816020860160208601611abe565b601f01601f19169290920160200192915050565b60008351611936818460208801611abe565b83519083019061194a818360208801611abe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611986908301846118f8565b9695505050505050565b602081526000610df360208301846118f8565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611a8e57611a8e611b54565b500190565b600082611aa257611aa2611b6a565b500490565b600082821015611ab957611ab9611b54565b500390565b60005b83811015611ad9578181015183820152602001611ac1565b83811115610c115750506000910152565b600181811c90821680611afe57607f821691505b60208210811415611b1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b3957611b39611b54565b5060010190565b600082611b4f57611b4f611b6a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097857600080fdfea264697066735822122023671c624e93cea6f70fb975e2c0a886d87f09c1ad4ce1562f172135f82dc4c764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36559:1800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;5856:14:1;;5849:22;5831:41;;5819:2;5804:18;23445:355:0;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;26307:308:0;4990:203:1;25830:411:0;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;37739:496;;;:::i;36967:88::-;;;;;;;;;;-1:-1:-1;37038:9:0;;36967:88;;;14149:25:1;;;14137:2;14122:18;36967:88:0;14003:177:1;27366:376:0;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;36757:41::-;;;;;;;;;;-1:-1:-1;36757:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36607:40;;;;;;;;;;;;36644:3;36607:40;;37172:206;;;;;;;;;;;;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;37063:101::-;;;;;;;;;;-1:-1:-1;37063:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;-1:-1:-1;7755:6:0;;-1:-1:-1;;;;;7755:6:0;7682:87;;24783:104;;;;;;;;;;;;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;37386:345::-;;;;;;;;;;-1:-1:-1;37386:345:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214;8582:229;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;-1:-1:-1;;;;;;;;;;9950:40:0;;;23756:36;23614:178;23445:355;-1:-1:-1;;23445:355:0:o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;26453:110;;;;-1:-1:-1;;;26453:110:0;;10673:2:1;26453:110:0;;;10655:21:1;10712:2;10692:18;;;10685:30;10751:34;10731:18;;;10724:62;-1:-1:-1;;;10802:18:1;;;10795:42;10854:19;;26453:110:0;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;12689:2:1;25961:57:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;-1:-1:-1;;;12818:18:1;;;12811:31;12859:19;;25961:57:0;12487:397:1;25961:57:0;735:10;-1:-1:-1;;;;;26053:21:0;;;;:62;;-1:-1:-1;26078:37:0;26095:5;735:10;27085:214;:::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;9066:2:1;26031:168:0;;;9048:21:1;9105:2;9085:18;;;9078:30;9144:34;9124:18;;;9117:62;9215:26;9195:18;;;9188:54;9259:19;;26031:168:0;8864:420:1;26031:168:0;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25900:341;25830:411;;:::o;37739:496::-;37783:14;37800:13;37038:9;;;36967:88;37800:13;37783:30;-1:-1:-1;36644:3:0;37834:10;37783:30;37843:1;37834:10;:::i;:::-;:24;;37826:59;;;;-1:-1:-1;;;37826:59:0;;13091:2:1;37826:59:0;;;13073:21:1;13130:2;13110:18;;;13103:30;-1:-1:-1;;;13149:18:1;;;13142:52;13211:18;;37826:59:0;12889:346:1;37826:59:0;37915:10;37905:21;;;;:9;:21;;;;;;;;37904:22;37896:68;;;;-1:-1:-1;;;37896:68:0;;6309:2:1;37896:68:0;;;6291:21:1;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:1;;;6431:31;6479:19;;37896:68:0;6107:397:1;37896:68:0;36713:9;37997;:18;;37975:115;;;;-1:-1:-1;;;37975:115:0;;11086:2:1;37975:115:0;;;11068:21:1;11125:2;11105:18;;;11098:30;11164:34;11144:18;;;11137:62;-1:-1:-1;;;11215:18:1;;;11208:45;11270:19;;37975:115:0;10884:411:1;37975:115:0;38113:10;38103:21;;;;:9;:21;;;;;:28;;-1:-1:-1;;38103:28:0;38127:4;38103:28;;;38142:9;:11;;;;;;:::i;:::-;;;;;;38166:31;38176:10;38188:8;;;;:::i;:::-;;;;38166:9;:31::i;:::-;38213:14;;14149:25:1;;;38213:14:0;;14137:2:1;14122:18;38213:14:0;;;;;;;37772:463;37739:496::o;27366:376::-;27575:41;735:10;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;37172:206::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37241:82:::1;::::0;37223:12:::1;::::0;37249:10:::1;::::0;37287:21:::1;::::0;37223:12;37241:82;37223:12;37241:82;37287:21;37249:10;37241:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37222:101;;;37342:7;37334:36;;;::::0;-1:-1:-1;;;37334:36:0;;13442:2:1;37334:36:0::1;::::0;::::1;13424:21:1::0;13481:2;13461:18;;;13454:30;-1:-1:-1;;;13500:18:1;;;13493:46;13556:18;;37334:36:0::1;13240:340:1::0;37334:36:0::1;37211:167;37172:206::o:0;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;37063:101::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37134:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37063:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;9902:2:1;24406:110:0;;;9884:21:1;9941:2;9921:18;;;9914:30;9980:34;9960:18;;;9953:62;-1:-1:-1;;;10031:18:1;;;10024:39;10080:19;;24406:110:0;9700:405:1;23864:295:0;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;9491:2:1;24006:111:0;;;9473:21:1;9530:2;9510:18;;;9503:30;9569:34;9549:18;;;9542:62;-1:-1:-1;;;9620:18:1;;;9613:40;9670:19;;24006:111:0;9289:406:1;24006:111:0;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;26687:327::-;-1:-1:-1;;;;;26822:24:0;;735:10;26822:24;;26814:62;;;;-1:-1:-1;;;26814:62:0;;8299:2:1;26814:62:0;;;8281:21:1;8338:2;8318:18;;;8311:30;8377:27;8357:18;;;8350:55;8422:18;;26814:62:0;8097:349:1;26814:62:0;735:10;26889:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26889:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;26958:48;;5831:41:1;;;26889:42:0;;735:10;26958:48;;5804:18:1;26958:48:0;;;;;;;26687:327;;:::o;28069:365::-;28258:41;735:10;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;:::-;28069:365;;;;:::o;37386:345::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37453:14:::1;37470:13;37038:9:::0;;;36967:88;37470:13:::1;37453:30:::0;-1:-1:-1;36644:3:0::1;37502:15;37511:6:::0;37453:30;37502:15:::1;:::i;:::-;:29;;37494:64;;;::::0;-1:-1:-1;;;37494:64:0;;13091:2:1;37494:64:0::1;::::0;::::1;13073:21:1::0;13130:2;13110:18;;;13103:30;-1:-1:-1;;;13149:18:1;;;13142:52;13211:18;;37494:64:0::1;12889:346:1::0;37494:64:0::1;37582:6;37569:9;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;37604:9:0::1;::::0;-1:-1:-1;37599:125:0::1;37619:6;37615:1;:10;37599:125;;;37647:31;37657:10;37669:8;::::0;::::1;:::i;:::-;;;;37647:9;:31::i;:::-;37698:14;::::0;14149:25:1;;;37698:14:0::1;::::0;14137:2:1;14122:18;37698:14:0::1;;;;;;;37627:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37599:125;;24958:468:::0;30046:4;30070:16;;;:7;:16;;;;;;25076:13;;-1:-1:-1;;;;;30070:16:0;25107:113;;;;-1:-1:-1;;;25107:113:0;;12273:2:1;25107:113:0;;;12255:21:1;12312:2;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;-1:-1:-1;;;12402:18:1;;;12395:45;12457:19;;25107:113:0;12071:411:1;25107:113:0;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;8582:229::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;::::0;-1:-1:-1;;;8663:110:0;;7130:2:1;8663:110:0::1;::::0;::::1;7112:21:1::0;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:36;7305:19;;8663:110:0::1;6928:402:1::0;8663:110:0::1;8784:19;8794:8;8784:9;:19::i;34104:174::-:0;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;30275:452::-;30404:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;30426:110;;;;-1:-1:-1;;;30426:110:0;;8653:2:1;30426:110:0;;;8635:21:1;8692:2;8672:18;;;8665:30;8731:34;8711:18;;;8704:62;-1:-1:-1;;;8782:18:1;;;8775:42;8834:19;;30426:110:0;8451:408:1;30426:110:0;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;-1:-1:-1;;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30686:32;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;11863:2:1;33495:122:0;;;11845:21:1;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:1;;;11985:39;12041:19;;33495:122:0;11661:405:1;33495:122:0;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;7894:2:1;33628:65:0;;;7876:21:1;7933:2;7913:18;;;7906:30;7972:34;7952:18;;;7945:62;-1:-1:-1;;;8023:18:1;;;8016:34;8067:19;;33628:65:0;7692:400:1;33628:65:0;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8864:128;8819:173;:::o;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;38243:113::-;38303:13;38336:12;38329:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;10312:723::o;10585:53::-;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;-1:-1:-1;;;;;35019:13:0;;13188:20;13236:8;35015:805;;35072:175;;-1:-1:-1;;;35072:175:0;;-1:-1:-1;;;;;35072:36:0;;;;;:175;;735:10;;35166:4;;35193:7;;35223:5;;35072:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;10312:2:1;32135:61:0;;;10294:21:1;;;10331:18;;;10324:30;10390:34;10370:18;;;10363:62;10442:18;;32135:61:0;10110:356:1;32135:61:0;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;32207:58;;;;-1:-1:-1;;;32207:58:0;;7537:2:1;32207:58:0;;;7519:21:1;7576:2;7556:18;;;7549:30;7615;7595:18;;;7588:58;7663:18;;32207:58:0;7335:352:1;32207:58:0;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;6509:414::-;6711:2;6693:21;;;6750:2;6730:18;;;6723:30;6789:34;6784:2;6769:18;;6762:62;-1:-1:-1;;;6855:2:1;6840:18;;6833:48;6913:3;6898:19;;6509:414::o;11300:356::-;11502:2;11484:21;;;11521:18;;;11514:30;11580:34;11575:2;11560:18;;11553:62;11647:2;11632:18;;11300:356::o;13585:413::-;13787:2;13769:21;;;13826:2;13806:18;;;13799:30;13865:34;13860:2;13845:18;;13838:62;-1:-1:-1;;;13931:2:1;13916:18;;13909:47;13988:3;13973:19;;13585:413::o;14185:128::-;14225:3;14256:1;14252:6;14249:1;14246:13;14243:39;;;14262:18;;:::i;:::-;-1:-1:-1;14298:9:1;;14185:128::o;14318:120::-;14358:1;14384;14374:35;;14389:18;;:::i;:::-;-1:-1:-1;14423:9:1;;14318:120::o;14443:125::-;14483:4;14511:1;14508;14505:8;14502:34;;;14516:18;;:::i;:::-;-1:-1:-1;14553:9:1;;14443:125::o;14573:258::-;14645:1;14655:113;14669:6;14666:1;14663:13;14655:113;;;14745:11;;;14739:18;14726:11;;;14719:39;14691:2;14684:10;14655:113;;;14786:6;14783:1;14780:13;14777:48;;;-1:-1:-1;;14821:1:1;14803:16;;14796:27;14573:258::o;14836:380::-;14915:1;14911:12;;;;14958;;;14979:61;;15033:4;15025:6;15021:17;15011:27;;14979:61;15086:2;15078:6;15075:14;15055:18;15052:38;15049:161;;;15132:10;15127:3;15123:20;15120:1;15113:31;15167:4;15164:1;15157:15;15195:4;15192:1;15185:15;15049:161;;14836:380;;;:::o;15221:135::-;15260:3;-1:-1:-1;;15281:17:1;;15278:43;;;15301:18;;:::i;:::-;-1:-1:-1;15348:1:1;15337:13;;15221:135::o;15361:112::-;15393:1;15419;15409:35;;15424:18;;:::i;:::-;-1:-1:-1;15458:9:1;;15361:112::o;15478:127::-;15539:10;15534:3;15530:20;15527:1;15520:31;15570:4;15567:1;15560:15;15594:4;15591:1;15584:15;15610:127;15671:10;15666:3;15662:20;15659:1;15652:31;15702:4;15699:1;15692:15;15726:4;15723:1;15716:15;15742:127;15803:10;15798:3;15794:20;15791:1;15784:31;15834:4;15831:1;15824:15;15858:4;15855:1;15848:15;15874:127;15935:10;15930:3;15926:20;15923:1;15916:31;15966:4;15963:1;15956:15;15990:4;15987:1;15980:15;16006:131;-1:-1:-1;;;;;;16080:32:1;;16070:43;;16060:71;;16127:1;16124;16117:12

Swarm Source

ipfs://23671c624e93cea6f70fb975e2c0a886d87f09c1ad4ce1562f172135f82dc4c7
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.