ETH Price: $3,441.08 (-0.14%)
Gas: 2 Gwei

Token

(0xb35c3239c12a04c4591c082b0fc86a421c3248aa)
 

Overview

Max Total Supply

175 ERC-721 TOKEN*

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ERC-721 TOKEN*
0x97fd762517fd4b4d54a0a76515590c4927425ee9
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:
StickFighterNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-18
*/

// SPDX-License-Identifier: MIT


/**
* Stick Fighter
               .m.
               (;)
               (;)
               (;)
            .  (;)  .
            |\_(;)_/|
            |/ )|( \|  
              ( o )
               )8(
              ( o )
               )8(
              ;|S|;
              ||S|| 
              ||S||
              ||S|<
              ||S||
              ||S||
              ||S||
              ||S||
              ||S||
              ||S||
              ||S||
              \\ //       
               \V/
                V
*/
                
                
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

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/[email protected]


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/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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/extensions/[email protected]



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/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



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/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



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`. creds Ba
     *
     * 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

contract StickFighterNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event Mint(address indexed sender, uint256 startWith, uint256 times);

    //supply counters
    uint256 public totalMints;
    uint256 public totalCount = 2500;
   
    //token Index tracker
    uint256 public maxBatch = 10;
    uint256 public price = 0.05 * 10 ** 18;

    //string
    string public baseURI;

    //bool
    bool private started;
    
    //constructor args
    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    //basic functions.
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    //erc721
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token.");

        string memory baseURI2 = _baseURI();
        return bytes(baseURI2).length > 0
            ? string(abi.encodePacked(baseURI2, tokenId.toString(), ".json")) : '.json';
    }
    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 count = balanceOf(owner);
        uint256[] memory ids = new uint256[](count);
        for (uint256 i = 0; i < count; i++) {
            ids[i] = tokenOfOwnerByIndex(owner, i);
        }
        return ids;
    }

    function mint(uint256 _times) payable public {
        require(started, "not started");
        require(_times >0 && _times <= maxBatch, "must mint fewer in each batch");
        require(totalMints + _times <= totalCount, "max supply reached!");
        require(msg.value == _times * price, "value error, please check price.");
        payable(owner()).transfer(msg.value);
        emit Mint(_msgSender(), totalMints+1, _times);
        for(uint256 i=0; i< _times; i++){
            _mint(_msgSender(), 1 + totalMints++);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"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":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526109c4600c55600a600d5566b1a2bc2ec50000600e553480156200002757600080fd5b5060405162002635380380620026358339810160408190526200004a916200025c565b825183908390620000639060009060208501906200010b565b508051620000799060019060208401906200010b565b5050506200009662000090620000b560201b60201c565b620000b9565b8051620000ab90600f9060208401906200010b565b505050506200033c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620002e9565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600082601f830112620001c2578081fd5b81516001600160401b0380821115620001df57620001df62000326565b6040516020601f8401601f191682018101838111838210171562000207576200020762000326565b60405283825285840181018710156200021e578485fd5b8492505b8383101562000241578583018101518284018201529182019162000222565b838311156200025257848185840101525b5095945050505050565b60008060006060848603121562000271578283fd5b83516001600160401b038082111562000288578485fd5b6200029687838801620001b1565b94506020860151915080821115620002ac578384fd5b620002ba87838801620001b1565b93506040860151915080821115620002d0578283fd5b50620002df86828701620001b1565b9150509250925092565b600281046001821680620002fe57607f821691505b602082108114156200032057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6122e9806200034c6000396000f3fe6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde1461048d578063c87b56dd146104ad578063e985e9c5146104cd578063f2fde38b146104ed576101b7565b8063a035b1fe14610445578063a0712d681461045a578063a22cb4651461046d576101b7565b8063715018a6116100c6578063715018a6146103d95780638462151c146103ee5780638da5cb5b1461041b57806395d89b4114610430576101b7565b806368e24327146103845780636c0360eb146103a457806370a08231146103b9576101b7565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461030f57806355f804b31461032f5780636352211e1461034f57806367765b871461036f576101b7565b80632f745c59146102ba57806334eafb11146102da57806342842e0e146102ef576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd146102635780631f21bfbf1461028557806323b872dd1461029a576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046119dc565b61050d565b6040516101e99190611b72565b60405180910390f35b3480156101fe57600080fd5b5061020761053a565b6040516101e99190611b7d565b34801561022057600080fd5b5061023461022f366004611a5a565b6105cc565b6040516101e99190611add565b34801561024d57600080fd5b5061026161025c366004611999565b610618565b005b34801561026f57600080fd5b506102786106b0565b6040516101e9919061214c565b34801561029157600080fd5b506102786106b6565b3480156102a657600080fd5b506102616102b53660046118bc565b6106bc565b3480156102c657600080fd5b506102786102d5366004611999565b6106f4565b3480156102e657600080fd5b50610278610746565b3480156102fb57600080fd5b5061026161030a3660046118bc565b61074c565b34801561031b57600080fd5b5061027861032a366004611a5a565b610767565b34801561033b57600080fd5b5061026161034a366004611a14565b6107c2565b34801561035b57600080fd5b5061023461036a366004611a5a565b610818565b34801561037b57600080fd5b5061027861084d565b34801561039057600080fd5b5061026161039f3660046119c2565b610853565b3480156103b057600080fd5b506102076108a5565b3480156103c557600080fd5b506102786103d4366004611870565b610933565b3480156103e557600080fd5b50610261610977565b3480156103fa57600080fd5b5061040e610409366004611870565b6109c2565b6040516101e99190611b2e565b34801561042757600080fd5b50610234610a80565b34801561043c57600080fd5b50610207610a8f565b34801561045157600080fd5b50610278610a9e565b610261610468366004611a5a565b610aa4565b34801561047957600080fd5b50610261610488366004611970565b610c33565b34801561049957600080fd5b506102616104a83660046118f7565b610d01565b3480156104b957600080fd5b506102076104c8366004611a5a565b610d40565b3480156104d957600080fd5b506101dc6104e836600461188a565b610dd1565b3480156104f957600080fd5b50610261610508366004611870565b610dff565b60006001600160e01b0319821663780e9d6360e01b1480610532575061053282610e70565b90505b919050565b606060008054610549906121f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906121f1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610eb0565b6105fc5760405162461bcd60e51b81526004016105f390611e96565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062382610818565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b81526004016105f390611f97565b806001600160a01b0316610669610ecd565b6001600160a01b031614806106855750610685816104e8610ecd565b6106a15760405162461bcd60e51b81526004016105f390611d71565b6106ab8383610ed1565b505050565b60085490565b600b5481565b6106cd6106c7610ecd565b82610f3f565b6106e95760405162461bcd60e51b81526004016105f39061200d565b6106ab838383610fc4565b60006106ff83610933565b821061071d5760405162461bcd60e51b81526004016105f390611b90565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5481565b6106ab83838360405180602001604052806000815250610d01565b60006107716106b0565b821061078f5760405162461bcd60e51b81526004016105f39061205e565b600882815481106107b057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6107ca610ecd565b6001600160a01b03166107db610a80565b6001600160a01b0316146108015760405162461bcd60e51b81526004016105f390611ee2565b805161081490600f906020840190611740565b5050565b6000818152600260205260408120546001600160a01b0316806105325760405162461bcd60e51b81526004016105f390611e18565b600d5481565b61085b610ecd565b6001600160a01b031661086c610a80565b6001600160a01b0316146108925760405162461bcd60e51b81526004016105f390611ee2565b6010805460ff1916911515919091179055565b600f80546108b2906121f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108de906121f1565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b505050505081565b60006001600160a01b03821661095b5760405162461bcd60e51b81526004016105f390611dce565b506001600160a01b031660009081526003602052604090205490565b61097f610ecd565b6001600160a01b0316610990610a80565b6001600160a01b0316146109b65760405162461bcd60e51b81526004016105f390611ee2565b6109c060006110f1565b565b606060006109cf83610933565b905060008167ffffffffffffffff8111156109fa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a23578160200160208202803683370190505b50905060005b82811015610a7857610a3b85826106f4565b828281518110610a5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a708161222c565b915050610a29565b509392505050565b600a546001600160a01b031690565b606060018054610549906121f1565b600e5481565b60105460ff16610ac65760405162461bcd60e51b81526004016105f3906120aa565b600081118015610ad85750600d548111155b610af45760405162461bcd60e51b81526004016105f390611f60565b600c5481600b54610b059190612163565b1115610b235760405162461bcd60e51b81526004016105f39061211f565b600e54610b30908261218f565b3414610b4e5760405162461bcd60e51b81526004016105f390611fd8565b610b56610a80565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610b8e573d6000803e3d6000fd5b50610b97610ecd565b6001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f600b546001610bd09190612163565b83604051610bdf929190612155565b60405180910390a260005b8181101561081457610c21610bfd610ecd565b600b8054906000610c0d8361222c565b90915550610c1c906001612163565b611143565b80610c2b8161222c565b915050610bea565b610c3b610ecd565b6001600160a01b0316826001600160a01b03161415610c6c5760405162461bcd60e51b81526004016105f390611cee565b8060056000610c79610ecd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cbd610ecd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cf59190611b72565b60405180910390a35050565b610d12610d0c610ecd565b83610f3f565b610d2e5760405162461bcd60e51b81526004016105f39061200d565b610d3a84848484611222565b50505050565b6060610d4b82610eb0565b610d675760405162461bcd60e51b81526004016105f3906120cf565b6000610d71611255565b90506000815111610d9f5760405180604001604052806005815260200164173539b7b760d91b815250610dca565b80610da984611264565b604051602001610dba929190611a9e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e07610ecd565b6001600160a01b0316610e18610a80565b6001600160a01b031614610e3e5760405162461bcd60e51b81526004016105f390611ee2565b6001600160a01b038116610e645760405162461bcd60e51b81526004016105f390611c2d565b610e6d816110f1565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ea157506001600160e01b03198216635b5e139f60e01b145b8061053257506105328261137f565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f0682610818565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f4a82610eb0565b610f665760405162461bcd60e51b81526004016105f390611d25565b6000610f7183610818565b9050806001600160a01b0316846001600160a01b03161480610fac5750836001600160a01b0316610fa1846105cc565b6001600160a01b0316145b80610fbc5750610fbc8185610dd1565b949350505050565b826001600160a01b0316610fd782610818565b6001600160a01b031614610ffd5760405162461bcd60e51b81526004016105f390611f17565b6001600160a01b0382166110235760405162461bcd60e51b81526004016105f390611caa565b61102e838383611398565b611039600082610ed1565b6001600160a01b03831660009081526003602052604081208054600192906110629084906121ae565b90915550506001600160a01b0382166000908152600360205260408120805460019290611090908490612163565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111695760405162461bcd60e51b81526004016105f390611e61565b61117281610eb0565b1561118f5760405162461bcd60e51b81526004016105f390611c73565b61119b60008383611398565b6001600160a01b03821660009081526003602052604081208054600192906111c4908490612163565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61122d848484610fc4565b61123984848484611421565b610d3a5760405162461bcd60e51b81526004016105f390611bdb565b6060600f8054610549906121f1565b60608161128957506040805180820190915260018152600360fc1b6020820152610535565b8160005b81156112b3578061129d8161222c565b91506112ac9050600a8361217b565b915061128d565b60008167ffffffffffffffff8111156112dc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611306576020820181803683370190505b5090505b8415610fbc5761131b6001836121ae565b9150611328600a86612247565b611333906030612163565b60f81b81838151811061135657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611378600a8661217b565b945061130a565b6001600160e01b031981166301ffc9a760e01b14919050565b6113a38383836106ab565b6001600160a01b0383166113bf576113ba8161153c565b6113e2565b816001600160a01b0316836001600160a01b0316146113e2576113e28382611580565b6001600160a01b0382166113fe576113f98161161d565b6106ab565b826001600160a01b0316826001600160a01b0316146106ab576106ab82826116f6565b6000611435846001600160a01b031661173a565b1561153157836001600160a01b031663150b7a02611451610ecd565b8786866040518563ffffffff1660e01b81526004016114739493929190611af1565b602060405180830381600087803b15801561148d57600080fd5b505af19250505080156114bd575060408051601f3d908101601f191682019092526114ba918101906119f8565b60015b611517573d8080156114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b50805161150f5760405162461bcd60e51b81526004016105f390611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbc565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161158d84610933565b61159791906121ae565b6000838152600760205260409020549091508082146115ea576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061162f906001906121ae565b6000838152600960205260408120546008805493945090928490811061166557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061169457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116da57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061170183610933565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b82805461174c906121f1565b90600052602060002090601f01602090048101928261176e57600085556117b4565b82601f1061178757805160ff19168380011785556117b4565b828001600101855582156117b4579182015b828111156117b4578251825591602001919060010190611799565b506117c09291506117c4565b5090565b5b808211156117c057600081556001016117c5565b600067ffffffffffffffff808411156117f4576117f4612287565b604051601f8501601f19168101602001828111828210171561181857611818612287565b60405284815291508183850186101561183057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461053557600080fd5b8035801515811461053557600080fd5b600060208284031215611881578081fd5b610dca82611849565b6000806040838503121561189c578081fd5b6118a583611849565b91506118b360208401611849565b90509250929050565b6000806000606084860312156118d0578081fd5b6118d984611849565b92506118e760208501611849565b9150604084013590509250925092565b6000806000806080858703121561190c578081fd5b61191585611849565b935061192360208601611849565b925060408501359150606085013567ffffffffffffffff811115611945578182fd5b8501601f81018713611955578182fd5b611964878235602084016117d9565b91505092959194509250565b60008060408385031215611982578182fd5b61198b83611849565b91506118b360208401611860565b600080604083850312156119ab578182fd5b6119b483611849565b946020939093013593505050565b6000602082840312156119d3578081fd5b610dca82611860565b6000602082840312156119ed578081fd5b8135610dca8161229d565b600060208284031215611a09578081fd5b8151610dca8161229d565b600060208284031215611a25578081fd5b813567ffffffffffffffff811115611a3b578182fd5b8201601f81018413611a4b578182fd5b610fbc848235602084016117d9565b600060208284031215611a6b578081fd5b5035919050565b60008151808452611a8a8160208601602086016121c5565b601f01601f19169290920160200192915050565b60008351611ab08184602088016121c5565b835190830190611ac48183602088016121c5565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2490830184611a72565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611b6657835183529284019291840191600101611b4a565b50909695505050505050565b901515815260200190565b600060208252610dca6020830184611a72565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601d908201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252600b908201526a1b9bdd081cdd185c9d195960aa1b604082015260600190565b60208082526030908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526f3732bc34b9ba32b73a103a37b5b2b71760811b606082015260800190565b6020808252601390820152726d617820737570706c7920726561636865642160681b604082015260600190565b90815260200190565b918252602082015260400190565b600082198211156121765761217661225b565b500190565b60008261218a5761218a612271565b500490565b60008160001904831182151516156121a9576121a961225b565b500290565b6000828210156121c0576121c061225b565b500390565b60005b838110156121e05781810151838201526020016121c8565b83811115610d3a5750506000910152565b60028104600182168061220557607f821691505b6020821081141561222657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122405761224061225b565b5060010190565b60008261225657612256612271565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6d57600080fdfea2646970667358221220554e048893ce009e3d0c02329eb272681c940abd00055acbd34eb354a7d9b44264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469636b5f666967687465722f6d657461646174612f6174612f0000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde1461048d578063c87b56dd146104ad578063e985e9c5146104cd578063f2fde38b146104ed576101b7565b8063a035b1fe14610445578063a0712d681461045a578063a22cb4651461046d576101b7565b8063715018a6116100c6578063715018a6146103d95780638462151c146103ee5780638da5cb5b1461041b57806395d89b4114610430576101b7565b806368e24327146103845780636c0360eb146103a457806370a08231146103b9576101b7565b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461030f57806355f804b31461032f5780636352211e1461034f57806367765b871461036f576101b7565b80632f745c59146102ba57806334eafb11146102da57806342842e0e146102ef576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd146102635780631f21bfbf1461028557806323b872dd1461029a576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046119dc565b61050d565b6040516101e99190611b72565b60405180910390f35b3480156101fe57600080fd5b5061020761053a565b6040516101e99190611b7d565b34801561022057600080fd5b5061023461022f366004611a5a565b6105cc565b6040516101e99190611add565b34801561024d57600080fd5b5061026161025c366004611999565b610618565b005b34801561026f57600080fd5b506102786106b0565b6040516101e9919061214c565b34801561029157600080fd5b506102786106b6565b3480156102a657600080fd5b506102616102b53660046118bc565b6106bc565b3480156102c657600080fd5b506102786102d5366004611999565b6106f4565b3480156102e657600080fd5b50610278610746565b3480156102fb57600080fd5b5061026161030a3660046118bc565b61074c565b34801561031b57600080fd5b5061027861032a366004611a5a565b610767565b34801561033b57600080fd5b5061026161034a366004611a14565b6107c2565b34801561035b57600080fd5b5061023461036a366004611a5a565b610818565b34801561037b57600080fd5b5061027861084d565b34801561039057600080fd5b5061026161039f3660046119c2565b610853565b3480156103b057600080fd5b506102076108a5565b3480156103c557600080fd5b506102786103d4366004611870565b610933565b3480156103e557600080fd5b50610261610977565b3480156103fa57600080fd5b5061040e610409366004611870565b6109c2565b6040516101e99190611b2e565b34801561042757600080fd5b50610234610a80565b34801561043c57600080fd5b50610207610a8f565b34801561045157600080fd5b50610278610a9e565b610261610468366004611a5a565b610aa4565b34801561047957600080fd5b50610261610488366004611970565b610c33565b34801561049957600080fd5b506102616104a83660046118f7565b610d01565b3480156104b957600080fd5b506102076104c8366004611a5a565b610d40565b3480156104d957600080fd5b506101dc6104e836600461188a565b610dd1565b3480156104f957600080fd5b50610261610508366004611870565b610dff565b60006001600160e01b0319821663780e9d6360e01b1480610532575061053282610e70565b90505b919050565b606060008054610549906121f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906121f1565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610eb0565b6105fc5760405162461bcd60e51b81526004016105f390611e96565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062382610818565b9050806001600160a01b0316836001600160a01b031614156106575760405162461bcd60e51b81526004016105f390611f97565b806001600160a01b0316610669610ecd565b6001600160a01b031614806106855750610685816104e8610ecd565b6106a15760405162461bcd60e51b81526004016105f390611d71565b6106ab8383610ed1565b505050565b60085490565b600b5481565b6106cd6106c7610ecd565b82610f3f565b6106e95760405162461bcd60e51b81526004016105f39061200d565b6106ab838383610fc4565b60006106ff83610933565b821061071d5760405162461bcd60e51b81526004016105f390611b90565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c5481565b6106ab83838360405180602001604052806000815250610d01565b60006107716106b0565b821061078f5760405162461bcd60e51b81526004016105f39061205e565b600882815481106107b057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6107ca610ecd565b6001600160a01b03166107db610a80565b6001600160a01b0316146108015760405162461bcd60e51b81526004016105f390611ee2565b805161081490600f906020840190611740565b5050565b6000818152600260205260408120546001600160a01b0316806105325760405162461bcd60e51b81526004016105f390611e18565b600d5481565b61085b610ecd565b6001600160a01b031661086c610a80565b6001600160a01b0316146108925760405162461bcd60e51b81526004016105f390611ee2565b6010805460ff1916911515919091179055565b600f80546108b2906121f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108de906121f1565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b505050505081565b60006001600160a01b03821661095b5760405162461bcd60e51b81526004016105f390611dce565b506001600160a01b031660009081526003602052604090205490565b61097f610ecd565b6001600160a01b0316610990610a80565b6001600160a01b0316146109b65760405162461bcd60e51b81526004016105f390611ee2565b6109c060006110f1565b565b606060006109cf83610933565b905060008167ffffffffffffffff8111156109fa57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a23578160200160208202803683370190505b50905060005b82811015610a7857610a3b85826106f4565b828281518110610a5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a708161222c565b915050610a29565b509392505050565b600a546001600160a01b031690565b606060018054610549906121f1565b600e5481565b60105460ff16610ac65760405162461bcd60e51b81526004016105f3906120aa565b600081118015610ad85750600d548111155b610af45760405162461bcd60e51b81526004016105f390611f60565b600c5481600b54610b059190612163565b1115610b235760405162461bcd60e51b81526004016105f39061211f565b600e54610b30908261218f565b3414610b4e5760405162461bcd60e51b81526004016105f390611fd8565b610b56610a80565b6001600160a01b03166108fc349081150290604051600060405180830381858888f19350505050158015610b8e573d6000803e3d6000fd5b50610b97610ecd565b6001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f600b546001610bd09190612163565b83604051610bdf929190612155565b60405180910390a260005b8181101561081457610c21610bfd610ecd565b600b8054906000610c0d8361222c565b90915550610c1c906001612163565b611143565b80610c2b8161222c565b915050610bea565b610c3b610ecd565b6001600160a01b0316826001600160a01b03161415610c6c5760405162461bcd60e51b81526004016105f390611cee565b8060056000610c79610ecd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cbd610ecd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cf59190611b72565b60405180910390a35050565b610d12610d0c610ecd565b83610f3f565b610d2e5760405162461bcd60e51b81526004016105f39061200d565b610d3a84848484611222565b50505050565b6060610d4b82610eb0565b610d675760405162461bcd60e51b81526004016105f3906120cf565b6000610d71611255565b90506000815111610d9f5760405180604001604052806005815260200164173539b7b760d91b815250610dca565b80610da984611264565b604051602001610dba929190611a9e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610e07610ecd565b6001600160a01b0316610e18610a80565b6001600160a01b031614610e3e5760405162461bcd60e51b81526004016105f390611ee2565b6001600160a01b038116610e645760405162461bcd60e51b81526004016105f390611c2d565b610e6d816110f1565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ea157506001600160e01b03198216635b5e139f60e01b145b8061053257506105328261137f565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f0682610818565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f4a82610eb0565b610f665760405162461bcd60e51b81526004016105f390611d25565b6000610f7183610818565b9050806001600160a01b0316846001600160a01b03161480610fac5750836001600160a01b0316610fa1846105cc565b6001600160a01b0316145b80610fbc5750610fbc8185610dd1565b949350505050565b826001600160a01b0316610fd782610818565b6001600160a01b031614610ffd5760405162461bcd60e51b81526004016105f390611f17565b6001600160a01b0382166110235760405162461bcd60e51b81526004016105f390611caa565b61102e838383611398565b611039600082610ed1565b6001600160a01b03831660009081526003602052604081208054600192906110629084906121ae565b90915550506001600160a01b0382166000908152600360205260408120805460019290611090908490612163565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166111695760405162461bcd60e51b81526004016105f390611e61565b61117281610eb0565b1561118f5760405162461bcd60e51b81526004016105f390611c73565b61119b60008383611398565b6001600160a01b03821660009081526003602052604081208054600192906111c4908490612163565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61122d848484610fc4565b61123984848484611421565b610d3a5760405162461bcd60e51b81526004016105f390611bdb565b6060600f8054610549906121f1565b60608161128957506040805180820190915260018152600360fc1b6020820152610535565b8160005b81156112b3578061129d8161222c565b91506112ac9050600a8361217b565b915061128d565b60008167ffffffffffffffff8111156112dc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611306576020820181803683370190505b5090505b8415610fbc5761131b6001836121ae565b9150611328600a86612247565b611333906030612163565b60f81b81838151811061135657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611378600a8661217b565b945061130a565b6001600160e01b031981166301ffc9a760e01b14919050565b6113a38383836106ab565b6001600160a01b0383166113bf576113ba8161153c565b6113e2565b816001600160a01b0316836001600160a01b0316146113e2576113e28382611580565b6001600160a01b0382166113fe576113f98161161d565b6106ab565b826001600160a01b0316826001600160a01b0316146106ab576106ab82826116f6565b6000611435846001600160a01b031661173a565b1561153157836001600160a01b031663150b7a02611451610ecd565b8786866040518563ffffffff1660e01b81526004016114739493929190611af1565b602060405180830381600087803b15801561148d57600080fd5b505af19250505080156114bd575060408051601f3d908101601f191682019092526114ba918101906119f8565b60015b611517573d8080156114eb576040519150601f19603f3d011682016040523d82523d6000602084013e6114f0565b606091505b50805161150f5760405162461bcd60e51b81526004016105f390611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fbc565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161158d84610933565b61159791906121ae565b6000838152600760205260409020549091508082146115ea576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061162f906001906121ae565b6000838152600960205260408120546008805493945090928490811061166557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061169457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116da57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061170183610933565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b82805461174c906121f1565b90600052602060002090601f01602090048101928261176e57600085556117b4565b82601f1061178757805160ff19168380011785556117b4565b828001600101855582156117b4579182015b828111156117b4578251825591602001919060010190611799565b506117c09291506117c4565b5090565b5b808211156117c057600081556001016117c5565b600067ffffffffffffffff808411156117f4576117f4612287565b604051601f8501601f19168101602001828111828210171561181857611818612287565b60405284815291508183850186101561183057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461053557600080fd5b8035801515811461053557600080fd5b600060208284031215611881578081fd5b610dca82611849565b6000806040838503121561189c578081fd5b6118a583611849565b91506118b360208401611849565b90509250929050565b6000806000606084860312156118d0578081fd5b6118d984611849565b92506118e760208501611849565b9150604084013590509250925092565b6000806000806080858703121561190c578081fd5b61191585611849565b935061192360208601611849565b925060408501359150606085013567ffffffffffffffff811115611945578182fd5b8501601f81018713611955578182fd5b611964878235602084016117d9565b91505092959194509250565b60008060408385031215611982578182fd5b61198b83611849565b91506118b360208401611860565b600080604083850312156119ab578182fd5b6119b483611849565b946020939093013593505050565b6000602082840312156119d3578081fd5b610dca82611860565b6000602082840312156119ed578081fd5b8135610dca8161229d565b600060208284031215611a09578081fd5b8151610dca8161229d565b600060208284031215611a25578081fd5b813567ffffffffffffffff811115611a3b578182fd5b8201601f81018413611a4b578182fd5b610fbc848235602084016117d9565b600060208284031215611a6b578081fd5b5035919050565b60008151808452611a8a8160208601602086016121c5565b601f01601f19169290920160200192915050565b60008351611ab08184602088016121c5565b835190830190611ac48183602088016121c5565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2490830184611a72565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611b6657835183529284019291840191600101611b4a565b50909695505050505050565b901515815260200190565b600060208252610dca6020830184611a72565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601d908201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252600b908201526a1b9bdd081cdd185c9d195960aa1b604082015260600190565b60208082526030908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526f3732bc34b9ba32b73a103a37b5b2b71760811b606082015260800190565b6020808252601390820152726d617820737570706c7920726561636865642160681b604082015260600190565b90815260200190565b918252602082015260400190565b600082198211156121765761217661225b565b500190565b60008261218a5761218a612271565b500490565b60008160001904831182151516156121a9576121a961225b565b500290565b6000828210156121c0576121c061225b565b500390565b60005b838110156121e05781810151838201526020016121c8565b83811115610d3a5750506000910152565b60028104600182168061220557607f821691505b6020821081141561222657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122405761224061225b565b5060010190565b60008261225657612256612271565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6d57600080fdfea2646970667358221220554e048893ce009e3d0c02329eb272681c940abd00055acbd34eb354a7d9b44264736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469636b5f666967687465722f6d657461646174612f6174612f0000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Stick Fighter
Arg [1] : symbol_ (string): Stick Fighter
Arg [2] : baseURI_ (string): https://nftsprojects.com/nft/stick_fighter/metadata/ata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 537469636b204669676874657200000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 537469636b204669676874657200000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [8] : 68747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469
Arg [9] : 636b5f666967687465722f6d657461646174612f6174612f0000000000000000


Deployed Bytecode Sourcemap

43792:2260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37615:224;;;;;;;;;;-1:-1:-1;37615:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24495:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26054:221::-;;;;;;;;;;-1:-1:-1;26054:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25577:411::-;;;;;;;;;;-1:-1:-1;25577:411:0;;;;;:::i;:::-;;:::i;:::-;;38255:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43985:25::-;;;;;;;;;;;;;:::i;26944:339::-;;;;;;;;;;-1:-1:-1;26944:339:0;;;;;:::i;:::-;;:::i;37923:256::-;;;;;;;;;;-1:-1:-1;37923:256:0;;;;;:::i;:::-;;:::i;44017:32::-;;;;;;;;;;;;;:::i;27354:185::-;;;;;;;;;;-1:-1:-1;27354:185:0;;;;;:::i;:::-;;:::i;38445:233::-;;;;;;;;;;-1:-1:-1;38445:233:0;;;;;:::i;:::-;;:::i;44568:96::-;;;;;;;;;;-1:-1:-1;44568:96:0;;;;;:::i;:::-;;:::i;24189:239::-;;;;;;;;;;-1:-1:-1;24189:239:0;;;;;:::i;:::-;;:::i;44088:28::-;;;;;;;;;;;;;:::i;45057:83::-;;;;;;;;;;-1:-1:-1;45057:83:0;;;;;:::i;:::-;;:::i;44184:21::-;;;;;;;;;;;;;:::i;23919:208::-;;;;;;;;;;-1:-1:-1;23919:208:0;;;;;:::i;:::-;;:::i;3063:94::-;;;;;;;;;;;;;:::i;45148:346::-;;;;;;;;;;-1:-1:-1;45148:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2412:87::-;;;;;;;;;;;;;:::i;24664:104::-;;;;;;;;;;;;;:::i;44123:38::-;;;;;;;;;;;;;:::i;45502:547::-;;;;;;:::i;:::-;;:::i;26347:295::-;;;;;;;;;;-1:-1:-1;26347:295:0;;;;;:::i;:::-;;:::i;27610:328::-;;;;;;;;;;-1:-1:-1;27610:328:0;;;;;:::i;:::-;;:::i;44686:365::-;;;;;;;;;;-1:-1:-1;44686:365:0;;;;;:::i;:::-;;:::i;26713:164::-;;;;;;;;;;-1:-1:-1;26713:164:0;;;;;:::i;:::-;;:::i;3312:192::-;;;;;;;;;;-1:-1:-1;3312:192:0;;;;;:::i;:::-;;:::i;37615:224::-;37717:4;-1:-1:-1;;;;;;37741:50:0;;-1:-1:-1;;;37741:50:0;;:90;;;37795:36;37819:11;37795:23;:36::i;:::-;37734:97;;37615:224;;;;:::o;24495:100::-;24549:13;24582:5;24575:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24495:100;:::o;26054:221::-;26130:7;26158:16;26166:7;26158;:16::i;:::-;26150:73;;;;-1:-1:-1;;;26150:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26243:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26243:24:0;;26054:221::o;25577:411::-;25658:13;25674:23;25689:7;25674:14;:23::i;:::-;25658:39;;25722:5;-1:-1:-1;;;;;25716:11:0;:2;-1:-1:-1;;;;;25716:11:0;;;25708:57;;;;-1:-1:-1;;;25708:57:0;;;;;;;:::i;:::-;25816:5;-1:-1:-1;;;;;25800:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25800:21:0;;:62;;;;25825:37;25842:5;25849:12;:10;:12::i;25825:37::-;25778:168;;;;-1:-1:-1;;;25778:168:0;;;;;;;:::i;:::-;25959:21;25968:2;25972:7;25959:8;:21::i;:::-;25577:411;;;:::o;38255:113::-;38343:10;:17;38255:113;:::o;43985:25::-;;;;:::o;26944:339::-;27139:41;27158:12;:10;:12::i;:::-;27172:7;27139:18;:41::i;:::-;27131:103;;;;-1:-1:-1;;;27131:103:0;;;;;;;:::i;:::-;27247:28;27257:4;27263:2;27267:7;27247:9;:28::i;37923:256::-;38020:7;38056:23;38073:5;38056:16;:23::i;:::-;38048:5;:31;38040:87;;;;-1:-1:-1;;;38040:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38145:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37923:256::o;44017:32::-;;;;:::o;27354:185::-;27492:39;27509:4;27515:2;27519:7;27492:39;;;;;;;;;;;;:16;:39::i;38445:233::-;38520:7;38556:30;:28;:30::i;:::-;38548:5;:38;38540:95;;;;-1:-1:-1;;;38540:95:0;;;;;;;:::i;:::-;38653:10;38664:5;38653:17;;;;;;-1:-1:-1;;;38653:17:0;;;;;;;;;;;;;;;;;38646:24;;38445:233;;;:::o;44568:96::-;2643:12;:10;:12::i;:::-;-1:-1:-1;;;;;2632:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2632:23:0;;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;44639:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44568:96:::0;:::o;24189:239::-;24261:7;24297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24297:16:0;24332:19;24324:73;;;;-1:-1:-1;;;24324:73:0;;;;;;;:::i;44088:28::-;;;;:::o;45057:83::-;2643:12;:10;:12::i;:::-;-1:-1:-1;;;;;2632:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2632:23:0;;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;45116:7:::1;:16:::0;;-1:-1:-1;;45116:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45057:83::o;44184:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23919:208::-;23991:7;-1:-1:-1;;;;;24019:19:0;;24011:74;;;;-1:-1:-1;;;24011:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24103:16:0;;;;;:9;:16;;;;;;;23919:208::o;3063:94::-;2643:12;:10;:12::i;:::-;-1:-1:-1;;;;;2632:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2632:23:0;;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;3128:21:::1;3146:1;3128:9;:21::i;:::-;3063:94::o:0;45148:346::-;45234:16;45268:13;45284:16;45294:5;45284:9;:16::i;:::-;45268:32;;45311:20;45348:5;45334:20;;;;;;-1:-1:-1;;;45334:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45334:20:0;;45311:43;;45370:9;45365:101;45389:5;45385:1;:9;45365:101;;;45425:29;45445:5;45452:1;45425:19;:29::i;:::-;45416:3;45420:1;45416:6;;;;;;-1:-1:-1;;;45416:6:0;;;;;;;;;;;;;;;;;;:38;45396:3;;;;:::i;:::-;;;;45365:101;;;-1:-1:-1;45483:3:0;45148:346;-1:-1:-1;;;45148:346:0:o;2412:87::-;2485:6;;-1:-1:-1;;;;;2485:6:0;2412:87;:::o;24664:104::-;24720:13;24753:7;24746:14;;;;;:::i;44123:38::-;;;;:::o;45502:547::-;45566:7;;;;45558:31;;;;-1:-1:-1;;;45558:31:0;;;;;;;:::i;:::-;45616:1;45608:6;:9;:31;;;;;45631:8;;45621:6;:18;;45608:31;45600:73;;;;-1:-1:-1;;;45600:73:0;;;;;;;:::i;:::-;45715:10;;45705:6;45692:10;;:19;;;;:::i;:::-;:33;;45684:65;;;;-1:-1:-1;;;45684:65:0;;;;;;;:::i;:::-;45790:5;;45781:14;;:6;:14;:::i;:::-;45768:9;:27;45760:72;;;;-1:-1:-1;;;45760:72:0;;;;;;;:::i;:::-;45851:7;:5;:7::i;:::-;-1:-1:-1;;;;;45843:25:0;:36;45869:9;45843:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45900:12;:10;:12::i;:::-;-1:-1:-1;;;;;45895:40:0;;45914:10;;45925:1;45914:12;;;;:::i;:::-;45928:6;45895:40;;;;;;;:::i;:::-;;;;;;;;45950:9;45946:96;45966:6;45963:1;:9;45946:96;;;45993:37;45999:12;:10;:12::i;:::-;46017:10;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;46013:16:0;;:1;:16;:::i;:::-;45993:5;:37::i;:::-;45974:3;;;;:::i;:::-;;;;45946:96;;26347:295;26462:12;:10;:12::i;:::-;-1:-1:-1;;;;;26450:24:0;:8;-1:-1:-1;;;;;26450:24:0;;;26442:62;;;;-1:-1:-1;;;26442:62:0;;;;;;;:::i;:::-;26562:8;26517:18;:32;26536:12;:10;:12::i;:::-;-1:-1:-1;;;;;26517:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26517:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26517:53:0;;;;;;;;;;;26601:12;:10;:12::i;:::-;-1:-1:-1;;;;;26586:48:0;;26625:8;26586:48;;;;;;:::i;:::-;;;;;;;;26347:295;;:::o;27610:328::-;27785:41;27804:12;:10;:12::i;:::-;27818:7;27785:18;:41::i;:::-;27777:103;;;;-1:-1:-1;;;27777:103:0;;;;;;;:::i;:::-;27891:39;27905:4;27911:2;27915:7;27924:5;27891:13;:39::i;:::-;27610:328;;;;:::o;44686:365::-;44759:13;44793:16;44801:7;44793;:16::i;:::-;44785:77;;;;-1:-1:-1;;;44785:77:0;;;;;;;:::i;:::-;44875:22;44900:10;:8;:10::i;:::-;44875:35;;44953:1;44934:8;44928:22;:26;:115;;;;;;;;;;;;;;;-1:-1:-1;;;44928:115:0;;;;;;44994:8;45004:18;:7;:16;:18::i;:::-;44977:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44928:115;44921:122;44686:365;-1:-1:-1;;;44686:365:0:o;26713:164::-;-1:-1:-1;;;;;26834:25:0;;;26810:4;26834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26713:164::o;3312:192::-;2643:12;:10;:12::i;:::-;-1:-1:-1;;;;;2632:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2632:23:0;;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3401:22:0;::::1;3393:73;;;;-1:-1:-1::0;;;3393:73:0::1;;;;;;;:::i;:::-;3477:19;3487:8;3477:9;:19::i;:::-;3312:192:::0;:::o;23550:305::-;23652:4;-1:-1:-1;;;;;;23689:40:0;;-1:-1:-1;;;23689:40:0;;:105;;-1:-1:-1;;;;;;;23746:48:0;;-1:-1:-1;;;23746:48:0;23689:105;:158;;;;23811:36;23835:11;23811:23;:36::i;29448:127::-;29513:4;29537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29537:16:0;:30;;;29448:127::o;1198:98::-;1278:10;1198:98;:::o;33439:174::-;33514:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33514:29:0;-1:-1:-1;;;;;33514:29:0;;;;;;;;:24;;33568:23;33514:24;33568:14;:23::i;:::-;-1:-1:-1;;;;;33559:46:0;;;;;;;;;;;33439:174;;:::o;29742:348::-;29835:4;29860:16;29868:7;29860;:16::i;:::-;29852:73;;;;-1:-1:-1;;;29852:73:0;;;;;;;:::i;:::-;29936:13;29952:23;29967:7;29952:14;:23::i;:::-;29936:39;;30005:5;-1:-1:-1;;;;;29994:16:0;:7;-1:-1:-1;;;;;29994:16:0;;:51;;;;30038:7;-1:-1:-1;;;;;30014:31:0;:20;30026:7;30014:11;:20::i;:::-;-1:-1:-1;;;;;30014:31:0;;29994:51;:87;;;;30049:32;30066:5;30073:7;30049:16;:32::i;:::-;29986:96;29742:348;-1:-1:-1;;;;29742:348:0:o;32743:578::-;32902:4;-1:-1:-1;;;;;32875:31:0;:23;32890:7;32875:14;:23::i;:::-;-1:-1:-1;;;;;32875:31:0;;32867:85;;;;-1:-1:-1;;;32867:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32971:16:0;;32963:65;;;;-1:-1:-1;;;32963:65:0;;;;;;;:::i;:::-;33041:39;33062:4;33068:2;33072:7;33041:20;:39::i;:::-;33145:29;33162:1;33166:7;33145:8;:29::i;:::-;-1:-1:-1;;;;;33187:15:0;;;;;;:9;:15;;;;;:20;;33206:1;;33187:15;:20;;33206:1;;33187:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33218:13:0;;;;;;:9;:13;;;;;:18;;33235:1;;33218:13;:18;;33235:1;;33218:18;:::i;:::-;;;;-1:-1:-1;;33247:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33247:21:0;-1:-1:-1;;;;;33247:21:0;;;;;;;;;33286:27;;33247:16;;33286:27;;;;;;;32743:578;;;:::o;3512:173::-;3587:6;;;-1:-1:-1;;;;;3604:17:0;;;-1:-1:-1;;;;;;3604:17:0;;;;;;;3637:40;;3587:6;;;3604:17;3587:6;;3637:40;;3568:16;;3637:40;3512:173;;:::o;31435:382::-;-1:-1:-1;;;;;31515:16:0;;31507:61;;;;-1:-1:-1;;;31507:61:0;;;;;;;:::i;:::-;31588:16;31596:7;31588;:16::i;:::-;31587:17;31579:58;;;;-1:-1:-1;;;31579:58:0;;;;;;;:::i;:::-;31650:45;31679:1;31683:2;31687:7;31650:20;:45::i;:::-;-1:-1:-1;;;;;31708:13:0;;;;;;:9;:13;;;;;:18;;31725:1;;31708:13;:18;;31725:1;;31708:18;:::i;:::-;;;;-1:-1:-1;;31737:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31737:21:0;-1:-1:-1;;;;;31737:21:0;;;;;;;;31776:33;;31737:16;;;31776:33;;31737:16;;31776:33;31435:382;;:::o;28820:315::-;28977:28;28987:4;28993:2;28997:7;28977:9;:28::i;:::-;29024:48;29047:4;29053:2;29057:7;29066:5;29024:22;:48::i;:::-;29016:111;;;;-1:-1:-1;;;29016:111:0;;;;;;;:::i;44455:107::-;44515:13;44547:7;44540:14;;;;;:::i;19485:723::-;19541:13;19762:10;19758:53;;-1:-1:-1;19789:10:0;;;;;;;;;;;;-1:-1:-1;;;19789:10:0;;;;;;19758:53;19836:5;19821:12;19877:78;19884:9;;19877:78;;19910:8;;;;:::i;:::-;;-1:-1:-1;19933:10:0;;-1:-1:-1;19941:2:0;19933:10;;:::i;:::-;;;19877:78;;;19965:19;19997:6;19987:17;;;;;;-1:-1:-1;;;19987:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19987:17:0;;19965:39;;20015:154;20022:10;;20015:154;;20049:11;20059:1;20049:11;;:::i;:::-;;-1:-1:-1;20118:10:0;20126:2;20118:5;:10;:::i;:::-;20105:24;;:2;:24;:::i;:::-;20092:39;;20075:6;20082;20075:14;;;;;;-1:-1:-1;;;20075:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20075:56:0;;;;;;;;-1:-1:-1;20146:11:0;20155:2;20146:11;;:::i;:::-;;;20015:154;;22048:157;-1:-1:-1;;;;;;22157:40:0;;-1:-1:-1;;;22157:40:0;22048:157;;;:::o;39291:589::-;39435:45;39462:4;39468:2;39472:7;39435:26;:45::i;:::-;-1:-1:-1;;;;;39497:18:0;;39493:187;;39532:40;39564:7;39532:31;:40::i;:::-;39493:187;;;39602:2;-1:-1:-1;;;;;39594:10:0;:4;-1:-1:-1;;;;;39594:10:0;;39590:90;;39621:47;39654:4;39660:7;39621:32;:47::i;:::-;-1:-1:-1;;;;;39694:16:0;;39690:183;;39727:45;39764:7;39727:36;:45::i;:::-;39690:183;;;39800:4;-1:-1:-1;;;;;39794:10:0;:2;-1:-1:-1;;;;;39794:10:0;;39790:83;;39821:40;39849:2;39853:7;39821:27;:40::i;34178:799::-;34333:4;34354:15;:2;-1:-1:-1;;;;;34354:13:0;;:15::i;:::-;34350:620;;;34406:2;-1:-1:-1;;;;;34390:36:0;;34427:12;:10;:12::i;:::-;34441:4;34447:7;34456:5;34390:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34390:72:0;;;;;;;;-1:-1:-1;;34390:72:0;;;;;;;;;;;;:::i;:::-;;;34386:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34632:13:0;;34628:272;;34675:60;;-1:-1:-1;;;34675:60:0;;;;;;;:::i;34628:272::-;34850:6;34844:13;34835:6;34831:2;34827:15;34820:38;34386:529;-1:-1:-1;;;;;;34513:51:0;-1:-1:-1;;;34513:51:0;;-1:-1:-1;34506:58:0;;34350:620;-1:-1:-1;34954:4:0;34178:799;;;;;;:::o;40603:164::-;40707:10;:17;;40680:24;;;;:15;:24;;;;;:44;;;40735:24;;;;;;;;;;;;40603:164::o;41394:988::-;41660:22;41710:1;41685:22;41702:4;41685:16;:22::i;:::-;:26;;;;:::i;:::-;41722:18;41743:26;;;:17;:26;;;;;;41660:51;;-1:-1:-1;41876:28:0;;;41872:328;;-1:-1:-1;;;;;41943:18:0;;41921:19;41943:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41994:30;;;;;;:44;;;42111:30;;:17;:30;;;;;:43;;;41872:328;-1:-1:-1;42296:26:0;;;;:17;:26;;;;;;;;42289:33;;;-1:-1:-1;;;;;42340:18:0;;;;;:12;:18;;;;;:34;;;;;;;42333:41;41394:988::o;42677:1079::-;42955:10;:17;42930:22;;42955:21;;42975:1;;42955:21;:::i;:::-;42987:18;43008:24;;;:15;:24;;;;;;43381:10;:26;;42930:46;;-1:-1:-1;43008:24:0;;42930:46;;43381:26;;;;-1:-1:-1;;;43381:26:0;;;;;;;;;;;;;;;;;43359:48;;43445:11;43420:10;43431;43420:22;;;;;;-1:-1:-1;;;43420:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43525:28;;;:15;:28;;;;;;;:41;;;43697:24;;;;;43690:31;43732:10;:16;;;;;-1:-1:-1;;;43732:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42677:1079;;;;:::o;40181:221::-;40266:14;40283:20;40300:2;40283:16;:20::i;:::-;-1:-1:-1;;;;;40314:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40359:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40181:221:0:o;11835:387::-;12158:20;12206:8;;;11835:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:637::-;;5042:6;5036:13;5058:53;5104:6;5099:3;5092:4;5084:6;5080:17;5058:53;:::i;:::-;5174:13;;5133:16;;;;5196:57;5174:13;5133:16;5230:4;5218:17;;5196:57;:::i;:::-;-1:-1:-1;;;5275:20:1;;5304:22;;;5353:1;5342:13;;5012:349;-1:-1:-1;;;;5012:349:1:o;5366:203::-;-1:-1:-1;;;;;5530:32:1;;;;5512:51;;5500:2;5485:18;;5467:102::o;5574:490::-;-1:-1:-1;;;;;5843:15:1;;;5825:34;;5895:15;;5890:2;5875:18;;5868:43;5942:2;5927:18;;5920:34;;;5990:3;5985:2;5970:18;;5963:31;;;5574:490;;6011:47;;6038:19;;6030:6;6011:47;:::i;:::-;6003:55;5777:287;-1:-1:-1;;;;;;5777:287:1:o;6069:635::-;6240:2;6292:21;;;6362:13;;6265:18;;;6384:22;;;6069:635;;6240:2;6463:15;;;;6437:2;6422:18;;;6069:635;6509:169;6523:6;6520:1;6517:13;6509:169;;;6584:13;;6572:26;;6653:15;;;;6618:12;;;;6545:1;6538:9;6509:169;;;-1:-1:-1;6695:3:1;;6220:484;-1:-1:-1;;;;;;6220:484:1:o;6709:187::-;6874:14;;6867:22;6849:41;;6837:2;6822:18;;6804:92::o;6901:221::-;;7050:2;7039:9;7032:21;7070:46;7112:2;7101:9;7097:18;7089:6;7070:46;:::i;7127:407::-;7329:2;7311:21;;;7368:2;7348:18;;;7341:30;7407:34;7402:2;7387:18;;7380:62;-1:-1:-1;;;7473:2:1;7458:18;;7451:41;7524:3;7509:19;;7301:233::o;7539:414::-;7741:2;7723:21;;;7780:2;7760:18;;;7753:30;7819:34;7814:2;7799:18;;7792:62;-1:-1:-1;;;7885:2:1;7870:18;;7863:48;7943:3;7928:19;;7713:240::o;7958:402::-;8160:2;8142:21;;;8199:2;8179:18;;;8172:30;8238:34;8233:2;8218:18;;8211:62;-1:-1:-1;;;8304:2:1;8289:18;;8282:36;8350:3;8335:19;;8132:228::o;8365:352::-;8567:2;8549:21;;;8606:2;8586:18;;;8579:30;8645;8640:2;8625:18;;8618:58;8708:2;8693:18;;8539:178::o;8722:400::-;8924:2;8906:21;;;8963:2;8943:18;;;8936:30;9002:34;8997:2;8982:18;;8975:62;-1:-1:-1;;;9068:2:1;9053:18;;9046:34;9112:3;9097:19;;8896:226::o;9127:349::-;9329:2;9311:21;;;9368:2;9348:18;;;9341:30;9407:27;9402:2;9387:18;;9380:55;9467:2;9452:18;;9301:175::o;9481:408::-;9683:2;9665:21;;;9722:2;9702:18;;;9695:30;9761:34;9756:2;9741:18;;9734:62;-1:-1:-1;;;9827:2:1;9812:18;;9805:42;9879:3;9864:19;;9655:234::o;9894:420::-;10096:2;10078:21;;;10135:2;10115:18;;;10108:30;10174:34;10169:2;10154:18;;10147:62;10245:26;10240:2;10225:18;;10218:54;10304:3;10289:19;;10068:246::o;10319:406::-;10521:2;10503:21;;;10560:2;10540:18;;;10533:30;10599:34;10594:2;10579:18;;10572:62;-1:-1:-1;;;10665:2:1;10650:18;;10643:40;10715:3;10700:19;;10493:232::o;10730:405::-;10932:2;10914:21;;;10971:2;10951:18;;;10944:30;11010:34;11005:2;10990:18;;10983:62;-1:-1:-1;;;11076:2:1;11061:18;;11054:39;11125:3;11110:19;;10904:231::o;11140:356::-;11342:2;11324:21;;;11361:18;;;11354:30;11420:34;11415:2;11400:18;;11393:62;11487:2;11472:18;;11314:182::o;11501:408::-;11703:2;11685:21;;;11742:2;11722:18;;;11715:30;11781:34;11776:2;11761:18;;11754:62;-1:-1:-1;;;11847:2:1;11832:18;;11825:42;11899:3;11884:19;;11675:234::o;11914:356::-;12116:2;12098:21;;;12135:18;;;12128:30;12194:34;12189:2;12174:18;;12167:62;12261:2;12246:18;;12088:182::o;12275:405::-;12477:2;12459:21;;;12516:2;12496:18;;;12489:30;12555:34;12550:2;12535:18;;12528:62;-1:-1:-1;;;12621:2:1;12606:18;;12599:39;12670:3;12655:19;;12449:231::o;12685:353::-;12887:2;12869:21;;;12926:2;12906:18;;;12899:30;12965:31;12960:2;12945:18;;12938:59;13029:2;13014:18;;12859:179::o;13043:397::-;13245:2;13227:21;;;13284:2;13264:18;;;13257:30;13323:34;13318:2;13303:18;;13296:62;-1:-1:-1;;;13389:2:1;13374:18;;13367:31;13430:3;13415:19;;13217:223::o;13445:356::-;13647:2;13629:21;;;13666:18;;;13659:30;13725:34;13720:2;13705:18;;13698:62;13792:2;13777:18;;13619:182::o;13806:413::-;14008:2;13990:21;;;14047:2;14027:18;;;14020:30;14086:34;14081:2;14066:18;;14059:62;-1:-1:-1;;;14152:2:1;14137:18;;14130:47;14209:3;14194:19;;13980:239::o;14224:408::-;14426:2;14408:21;;;14465:2;14445:18;;;14438:30;14504:34;14499:2;14484:18;;14477:62;-1:-1:-1;;;14570:2:1;14555:18;;14548:42;14622:3;14607:19;;14398:234::o;14637:335::-;14839:2;14821:21;;;14878:2;14858:18;;;14851:30;-1:-1:-1;;;14912:2:1;14897:18;;14890:41;14963:2;14948:18;;14811:161::o;14977:412::-;15179:2;15161:21;;;15218:2;15198:18;;;15191:30;15257:34;15252:2;15237:18;;15230:62;-1:-1:-1;;;15323:2:1;15308:18;;15301:46;15379:3;15364:19;;15151:238::o;15394:343::-;15596:2;15578:21;;;15635:2;15615:18;;;15608:30;-1:-1:-1;;;15669:2:1;15654:18;;15647:49;15728:2;15713:18;;15568:169::o;15742:177::-;15888:25;;;15876:2;15861:18;;15843:76::o;15924:248::-;16098:25;;;16154:2;16139:18;;16132:34;16086:2;16071:18;;16053:119::o;16177:128::-;;16248:1;16244:6;16241:1;16238:13;16235:2;;;16254:18;;:::i;:::-;-1:-1:-1;16290:9:1;;16225:80::o;16310:120::-;;16376:1;16366:2;;16381:18;;:::i;:::-;-1:-1:-1;16415:9:1;;16356:74::o;16435:168::-;;16541:1;16537;16533:6;16529:14;16526:1;16523:21;16518:1;16511:9;16504:17;16500:45;16497:2;;;16548:18;;:::i;:::-;-1:-1:-1;16588:9:1;;16487:116::o;16608:125::-;;16676:1;16673;16670:8;16667:2;;;16681:18;;:::i;:::-;-1:-1:-1;16718:9:1;;16657:76::o;16738:258::-;16810:1;16820:113;16834:6;16831:1;16828:13;16820:113;;;16910:11;;;16904:18;16891:11;;;16884:39;16856:2;16849:10;16820:113;;;16951:6;16948:1;16945:13;16942:2;;;-1:-1:-1;;16986:1:1;16968:16;;16961:27;16791:205::o;17001:380::-;17086:1;17076:12;;17133:1;17123:12;;;17144:2;;17198:4;17190:6;17186:17;17176:27;;17144:2;17251;17243:6;17240:14;17220:18;17217:38;17214:2;;;17297:10;17292:3;17288:20;17285:1;17278:31;17332:4;17329:1;17322:15;17360:4;17357:1;17350:15;17214:2;;17056:325;;;:::o;17386:135::-;;-1:-1:-1;;17446:17:1;;17443:2;;;17466:18;;:::i;:::-;-1:-1:-1;17513:1:1;17502:13;;17433:88::o;17526:112::-;;17584:1;17574:2;;17589:18;;:::i;:::-;-1:-1:-1;17623:9:1;;17564:74::o;17643:127::-;17704:10;17699:3;17695:20;17692:1;17685:31;17735:4;17732:1;17725:15;17759:4;17756:1;17749:15;17775:127;17836:10;17831:3;17827:20;17824:1;17817:31;17867:4;17864:1;17857:15;17891:4;17888:1;17881:15;17907:127;17968:10;17963:3;17959:20;17956:1;17949:31;17999:4;17996:1;17989:15;18023:4;18020:1;18013:15;18039:133;-1:-1:-1;;;;;;18115:32:1;;18105:43;;18095:2;;18162:1;18159;18152:12

Swarm Source

ipfs://554e048893ce009e3d0c02329eb272681c940abd00055acbd34eb354a7d9b442
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.