ETH Price: $2,280.72 (-3.27%)

Token

Stick Fighter (Stick Fighter)
 

Overview

Max Total Supply

37 Stick Fighter

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
blazinace.eth
Balance
1 Stick Fighter
0xc1071341fcb8625ac145b3b20130ab067ed5fb6d
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:
Stick_Fighter

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-02
*/

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

//Join our socials!
//Website : stickfighter.io/
//Twitter : twitter.com/stickfighternft
//Discord : https://discord.gg/HG3DtdB4Pj

pragma solidity ^0.8.0;
contract Stick_Fighter is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event Mint(address indexed sender, uint256 startWith, uint256 times);

    //supply counters total max supply = totalcount - 1
    uint256 public totalMints;
    uint256 public totalCount = 10001;
   
    //Max mints per batch
    uint256 public maxBatch = 10;

    //Token price of each token converted to WEI
    uint256 public price = 0.05 * 10 ** 18;

    //String for the baseURI
    string public baseURI;

    //Booleans for the sale and the presale
    bool private saleActive;
    
    //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;
    }

    //Returns a tokenURI of a specific token
    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 to activate or deactivate the sale
    function setSaleActive(bool _start) public onlyOwner {
        saleActive = _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;
    }

    //Mint function
    function mint(uint256 _times) payable public {
        require(saleActive, "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":"setSaleActive","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"}]

6080604052612711600c55600a600d5566b1a2bc2ec50000600e553480156200002757600080fd5b506040516200247a3803806200247a8339810160408190526200004a9162000268565b825183908390620000639060009060208501906200010b565b508051620000799060019060208401906200010b565b5050506200009662000090620000b560201b60201c565b620000b9565b8051620000ab90600f9060208401906200010b565b505050506200034c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620002f9565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600082601f830112620001c357600080fd5b81516001600160401b0380821115620001e057620001e062000336565b604051601f8301601f19908116603f011681019082821181831017156200020b576200020b62000336565b816040528381526020925086838588010111156200022857600080fd5b600091505b838210156200024c57858201830151818301840152908201906200022d565b838211156200025e5760008385830101525b9695505050505050565b6000806000606084860312156200027e57600080fd5b83516001600160401b03808211156200029657600080fd5b620002a487838801620001b1565b94506020860151915080821115620002bb57600080fd5b620002c987838801620001b1565b93506040860151915080821115620002e057600080fd5b50620002ef86828701620001b1565b9150509250925092565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61211e806200035c6000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a1578063c87b56dd146104c1578063e985e9c5146104e1578063f2fde38b1461052a57600080fd5b8063a035b1fe14610458578063a0712d681461046e578063a22cb4651461048157600080fd5b8063841718a6116100c6578063841718a6146103d85780638462151c146103f85780638da5cb5b1461042557806395d89b411461044357600080fd5b80636c0360eb1461038e57806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031857806355f804b3146103385780636352211e1461035857806367765b871461037857600080fd5b80632f745c59146102c257806334eafb11146102e257806342842e0e146102f857600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d5780631f21bfbf1461028c57806323b872dd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611cf9565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e89190611e81565b34801561021f57600080fd5b5061023361022e366004611d7c565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611cb4565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061027e600b5481565b3480156102ae57600080fd5b5061026b6102bd366004611bd2565b6107b7565b3480156102ce57600080fd5b5061027e6102dd366004611cb4565b6107e8565b3480156102ee57600080fd5b5061027e600c5481565b34801561030457600080fd5b5061026b610313366004611bd2565b61087e565b34801561032457600080fd5b5061027e610333366004611d7c565b610899565b34801561034457600080fd5b5061026b610353366004611d33565b61092c565b34801561036457600080fd5b50610233610373366004611d7c565b61096d565b34801561038457600080fd5b5061027e600d5481565b34801561039a57600080fd5b506102066109e4565b3480156103af57600080fd5b5061027e6103be366004611b84565b610a72565b3480156103cf57600080fd5b5061026b610af9565b3480156103e457600080fd5b5061026b6103f3366004611cde565b610b2f565b34801561040457600080fd5b50610418610413366004611b84565b610b6c565b6040516101e89190611e3d565b34801561043157600080fd5b50600a546001600160a01b0316610233565b34801561044f57600080fd5b50610206610c0e565b34801561046457600080fd5b5061027e600e5481565b61026b61047c366004611d7c565b610c1d565b34801561048d57600080fd5b5061026b61049c366004611c8a565b610e32565b3480156104ad57600080fd5b5061026b6104bc366004611c0e565b610ef7565b3480156104cd57600080fd5b506102066104dc366004611d7c565b610f2f565b3480156104ed57600080fd5b506101dc6104fc366004611b9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b5061026b610545366004611b84565b611019565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826110b4565b92915050565b60606000805461058490611ffa565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611ffa565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac8261096d565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b0382161480610736575061073681336104fc565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b28383611104565b505050565b6107c13382611172565b6107dd5760405162461bcd60e51b815260040161067c90611f1b565b6107b2838383611269565b60006107f383610a72565b82106108555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b283838360405180602001604052806000815250610ef7565b60006108a460085490565b82106109075760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b6008828154811061091a5761091a6120a6565b90600052602060002001549050919050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161067c90611ee6565b805161096990600f906020840190611a49565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b600f80546109f190611ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90611ffa565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b505050505081565b60006001600160a01b038216610add5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b235760405162461bcd60e51b815260040161067c90611ee6565b610b2d6000611414565b565b600a546001600160a01b03163314610b595760405162461bcd60e51b815260040161067c90611ee6565b6010805460ff1916911515919091179055565b60606000610b7983610a72565b905060008167ffffffffffffffff811115610b9657610b966120bc565b604051908082528060200260200182016040528015610bbf578160200160208202803683370190505b50905060005b82811015610c0657610bd785826107e8565b828281518110610be957610be96120a6565b602090810291909101015280610bfe81612035565b915050610bc5565b509392505050565b60606001805461058490611ffa565b60105460ff16610c5d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161067c565b600081118015610c6f5750600d548111155b610cbb5760405162461bcd60e51b815260206004820152601d60248201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604482015260640161067c565b600c5481600b54610ccc9190611f6c565b10610d0f5760405162461bcd60e51b81526020600482015260136024820152726d617820737570706c7920726561636865642160681b604482015260640161067c565b600e54610d1c9082611f98565b3414610d6a5760405162461bcd60e51b815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604482015260640161067c565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da3573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610dd6906001611f6c565b60408051918252602082018590520160405180910390a260005b8181101561096957610e2033600b8054906000610e0c83612035565b90915550610e1b906001611f6c565b611466565b80610e2a81612035565b915050610df0565b6001600160a01b038216331415610e8b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f013383611172565b610f1d5760405162461bcd60e51b815260040161067c90611f1b565b610f29848484846115b4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610faf5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161067c565b6000610fb96115e7565b90506000815111610fe75760405180604001604052806005815260200164173539b7b760d91b815250611012565b80610ff1846115f6565b604051602001611002929190611dc1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161067c90611ee6565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b6110b181611414565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e557506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111398261096d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006111f68361096d565b9050806001600160a01b0316846001600160a01b031614806112315750836001600160a01b031661122684610607565b6001600160a01b0316145b8061126157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127c8261096d565b6001600160a01b0316146112e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067c565b6001600160a01b0382166113465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b6113518383836116f4565b61135c600082611104565b6001600160a01b0383166000908152600360205260408120805460019290611385908490611fb7565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b3908490611f6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114bc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b0316156115215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b61152d600083836116f4565b6001600160a01b0382166000908152600360205260408120805460019290611556908490611f6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115bf848484611269565b6115cb848484846117ac565b610f295760405162461bcd60e51b815260040161067c90611e94565b6060600f805461058490611ffa565b60608161161a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611644578061162e81612035565b915061163d9050600a83611f84565b915061161e565b60008167ffffffffffffffff81111561165f5761165f6120bc565b6040519080825280601f01601f191660200182016040528015611689576020820181803683370190505b5090505b84156112615761169e600183611fb7565b91506116ab600a86612050565b6116b6906030611f6c565b60f81b8183815181106116cb576116cb6120a6565b60200101906001600160f81b031916908160001a9053506116ed600a86611f84565b945061168d565b6001600160a01b03831661174f5761174a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611772565b816001600160a01b0316836001600160a01b0316146117725761177283826118b9565b6001600160a01b038216611789576107b281611956565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611a05565b60006001600160a01b0384163b156118ae57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f0903390899088908890600401611e00565b602060405180830381600087803b15801561180a57600080fd5b505af192505050801561183a575060408051601f3d908101601f1916820190925261183791810190611d16565b60015b611894573d808015611868576040519150601f19603f3d011682016040523d82523d6000602084013e61186d565b606091505b50805161188c5760405162461bcd60e51b815260040161067c90611e94565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611261565b506001949350505050565b600060016118c684610a72565b6118d09190611fb7565b600083815260076020526040902054909150808214611923576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196890600190611fb7565b60008381526009602052604081205460088054939450909284908110611990576119906120a6565b9060005260206000200154905080600883815481106119b1576119b16120a6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e9576119e9612090565b6001900381819060005260206000200160009055905550505050565b6000611a1083610a72565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5590611ffa565b90600052602060002090601f016020900481019282611a775760008555611abd565b82601f10611a9057805160ff1916838001178555611abd565b82800160010185558215611abd579182015b82811115611abd578251825591602001919060010190611aa2565b50611ac9929150611acd565b5090565b5b80821115611ac95760008155600101611ace565b600067ffffffffffffffff80841115611afd57611afd6120bc565b604051601f8501601f19908116603f01168101908282118183101715611b2557611b256120bc565b81604052809350858152868686011115611b3e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b6f57600080fd5b919050565b80358015158114611b6f57600080fd5b600060208284031215611b9657600080fd5b61101282611b58565b60008060408385031215611bb257600080fd5b611bbb83611b58565b9150611bc960208401611b58565b90509250929050565b600080600060608486031215611be757600080fd5b611bf084611b58565b9250611bfe60208501611b58565b9150604084013590509250925092565b60008060008060808587031215611c2457600080fd5b611c2d85611b58565b9350611c3b60208601611b58565b925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b8501601f81018713611c6f57600080fd5b611c7e87823560208401611ae2565b91505092959194509250565b60008060408385031215611c9d57600080fd5b611ca683611b58565b9150611bc960208401611b74565b60008060408385031215611cc757600080fd5b611cd083611b58565b946020939093013593505050565b600060208284031215611cf057600080fd5b61101282611b74565b600060208284031215611d0b57600080fd5b8135611012816120d2565b600060208284031215611d2857600080fd5b8151611012816120d2565b600060208284031215611d4557600080fd5b813567ffffffffffffffff811115611d5c57600080fd5b8201601f81018413611d6d57600080fd5b61126184823560208401611ae2565b600060208284031215611d8e57600080fd5b5035919050565b60008151808452611dad816020860160208601611fce565b601f01601f19169290920160200192915050565b60008351611dd3818460208801611fce565b835190830190611de7818360208801611fce565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3390830184611d95565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e7557835183529284019291840191600101611e59565b50909695505050505050565b6020815260006110126020830184611d95565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f7f57611f7f612064565b500190565b600082611f9357611f9361207a565b500490565b6000816000190483118215151615611fb257611fb2612064565b500290565b600082821015611fc957611fc9612064565b500390565b60005b83811015611fe9578181015183820152602001611fd1565b83811115610f295750506000910152565b600181811c9082168061200e57607f821691505b6020821081141561202f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204957612049612064565b5060010190565b60008261205f5761205f61207a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b157600080fdfea2646970667358221220d1a1a6014c9c5594253f01baf1355114d72e547827c6198e923c59e9500e108d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469636b5f666967687465722f6d642f000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a1578063c87b56dd146104c1578063e985e9c5146104e1578063f2fde38b1461052a57600080fd5b8063a035b1fe14610458578063a0712d681461046e578063a22cb4651461048157600080fd5b8063841718a6116100c6578063841718a6146103d85780638462151c146103f85780638da5cb5b1461042557806395d89b411461044357600080fd5b80636c0360eb1461038e57806370a08231146103a3578063715018a6146103c357600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461031857806355f804b3146103385780636352211e1461035857806367765b871461037857600080fd5b80632f745c59146102c257806334eafb11146102e257806342842e0e146102f857600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d5780631f21bfbf1461028c57806323b872dd146102a257600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611cf9565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610575565b6040516101e89190611e81565b34801561021f57600080fd5b5061023361022e366004611d7c565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611cb4565b6106a1565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061027e600b5481565b3480156102ae57600080fd5b5061026b6102bd366004611bd2565b6107b7565b3480156102ce57600080fd5b5061027e6102dd366004611cb4565b6107e8565b3480156102ee57600080fd5b5061027e600c5481565b34801561030457600080fd5b5061026b610313366004611bd2565b61087e565b34801561032457600080fd5b5061027e610333366004611d7c565b610899565b34801561034457600080fd5b5061026b610353366004611d33565b61092c565b34801561036457600080fd5b50610233610373366004611d7c565b61096d565b34801561038457600080fd5b5061027e600d5481565b34801561039a57600080fd5b506102066109e4565b3480156103af57600080fd5b5061027e6103be366004611b84565b610a72565b3480156103cf57600080fd5b5061026b610af9565b3480156103e457600080fd5b5061026b6103f3366004611cde565b610b2f565b34801561040457600080fd5b50610418610413366004611b84565b610b6c565b6040516101e89190611e3d565b34801561043157600080fd5b50600a546001600160a01b0316610233565b34801561044f57600080fd5b50610206610c0e565b34801561046457600080fd5b5061027e600e5481565b61026b61047c366004611d7c565b610c1d565b34801561048d57600080fd5b5061026b61049c366004611c8a565b610e32565b3480156104ad57600080fd5b5061026b6104bc366004611c0e565b610ef7565b3480156104cd57600080fd5b506102066104dc366004611d7c565b610f2f565b3480156104ed57600080fd5b506101dc6104fc366004611b9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053657600080fd5b5061026b610545366004611b84565b611019565b60006001600160e01b0319821663780e9d6360e01b148061056f575061056f826110b4565b92915050565b60606000805461058490611ffa565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611ffa565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ac8261096d565b9050806001600160a01b0316836001600160a01b0316141561071a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067c565b336001600160a01b0382161480610736575061073681336104fc565b6107a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067c565b6107b28383611104565b505050565b6107c13382611172565b6107dd5760405162461bcd60e51b815260040161067c90611f1b565b6107b2838383611269565b60006107f383610a72565b82106108555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b283838360405180602001604052806000815250610ef7565b60006108a460085490565b82106109075760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067c565b6008828154811061091a5761091a6120a6565b90600052602060002001549050919050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161067c90611ee6565b805161096990600f906020840190611a49565b5050565b6000818152600260205260408120546001600160a01b03168061056f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067c565b600f80546109f190611ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1d90611ffa565b8015610a6a5780601f10610a3f57610100808354040283529160200191610a6a565b820191906000526020600020905b815481529060010190602001808311610a4d57829003601f168201915b505050505081565b60006001600160a01b038216610add5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b235760405162461bcd60e51b815260040161067c90611ee6565b610b2d6000611414565b565b600a546001600160a01b03163314610b595760405162461bcd60e51b815260040161067c90611ee6565b6010805460ff1916911515919091179055565b60606000610b7983610a72565b905060008167ffffffffffffffff811115610b9657610b966120bc565b604051908082528060200260200182016040528015610bbf578160200160208202803683370190505b50905060005b82811015610c0657610bd785826107e8565b828281518110610be957610be96120a6565b602090810291909101015280610bfe81612035565b915050610bc5565b509392505050565b60606001805461058490611ffa565b60105460ff16610c5d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b604482015260640161067c565b600081118015610c6f5750600d548111155b610cbb5760405162461bcd60e51b815260206004820152601d60248201527f6d757374206d696e7420666577657220696e2065616368206261746368000000604482015260640161067c565b600c5481600b54610ccc9190611f6c565b10610d0f5760405162461bcd60e51b81526020600482015260136024820152726d617820737570706c7920726561636865642160681b604482015260640161067c565b600e54610d1c9082611f98565b3414610d6a5760405162461bcd60e51b815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e604482015260640161067c565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da3573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610dd6906001611f6c565b60408051918252602082018590520160405180910390a260005b8181101561096957610e2033600b8054906000610e0c83612035565b90915550610e1b906001611f6c565b611466565b80610e2a81612035565b915050610df0565b6001600160a01b038216331415610e8b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f013383611172565b610f1d5760405162461bcd60e51b815260040161067c90611f1b565b610f29848484846115b4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610faf5760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b606482015260840161067c565b6000610fb96115e7565b90506000815111610fe75760405180604001604052806005815260200164173539b7b760d91b815250611012565b80610ff1846115f6565b604051602001611002929190611dc1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161067c90611ee6565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067c565b6110b181611414565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e557506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b031983161461056f565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111398261096d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067c565b60006111f68361096d565b9050806001600160a01b0316846001600160a01b031614806112315750836001600160a01b031661122684610607565b6001600160a01b0316145b8061126157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127c8261096d565b6001600160a01b0316146112e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161067c565b6001600160a01b0382166113465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067c565b6113518383836116f4565b61135c600082611104565b6001600160a01b0383166000908152600360205260408120805460019290611385908490611fb7565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b3908490611f6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114bc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067c565b6000818152600260205260409020546001600160a01b0316156115215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067c565b61152d600083836116f4565b6001600160a01b0382166000908152600360205260408120805460019290611556908490611f6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115bf848484611269565b6115cb848484846117ac565b610f295760405162461bcd60e51b815260040161067c90611e94565b6060600f805461058490611ffa565b60608161161a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611644578061162e81612035565b915061163d9050600a83611f84565b915061161e565b60008167ffffffffffffffff81111561165f5761165f6120bc565b6040519080825280601f01601f191660200182016040528015611689576020820181803683370190505b5090505b84156112615761169e600183611fb7565b91506116ab600a86612050565b6116b6906030611f6c565b60f81b8183815181106116cb576116cb6120a6565b60200101906001600160f81b031916908160001a9053506116ed600a86611f84565b945061168d565b6001600160a01b03831661174f5761174a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611772565b816001600160a01b0316836001600160a01b0316146117725761177283826118b9565b6001600160a01b038216611789576107b281611956565b826001600160a01b0316826001600160a01b0316146107b2576107b28282611a05565b60006001600160a01b0384163b156118ae57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f0903390899088908890600401611e00565b602060405180830381600087803b15801561180a57600080fd5b505af192505050801561183a575060408051601f3d908101601f1916820190925261183791810190611d16565b60015b611894573d808015611868576040519150601f19603f3d011682016040523d82523d6000602084013e61186d565b606091505b50805161188c5760405162461bcd60e51b815260040161067c90611e94565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611261565b506001949350505050565b600060016118c684610a72565b6118d09190611fb7565b600083815260076020526040902054909150808214611923576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196890600190611fb7565b60008381526009602052604081205460088054939450909284908110611990576119906120a6565b9060005260206000200154905080600883815481106119b1576119b16120a6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119e9576119e9612090565b6001900381819060005260206000200160009055905550505050565b6000611a1083610a72565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5590611ffa565b90600052602060002090601f016020900481019282611a775760008555611abd565b82601f10611a9057805160ff1916838001178555611abd565b82800160010185558215611abd579182015b82811115611abd578251825591602001919060010190611aa2565b50611ac9929150611acd565b5090565b5b80821115611ac95760008155600101611ace565b600067ffffffffffffffff80841115611afd57611afd6120bc565b604051601f8501601f19908116603f01168101908282118183101715611b2557611b256120bc565b81604052809350858152868686011115611b3e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b6f57600080fd5b919050565b80358015158114611b6f57600080fd5b600060208284031215611b9657600080fd5b61101282611b58565b60008060408385031215611bb257600080fd5b611bbb83611b58565b9150611bc960208401611b58565b90509250929050565b600080600060608486031215611be757600080fd5b611bf084611b58565b9250611bfe60208501611b58565b9150604084013590509250925092565b60008060008060808587031215611c2457600080fd5b611c2d85611b58565b9350611c3b60208601611b58565b925060408501359150606085013567ffffffffffffffff811115611c5e57600080fd5b8501601f81018713611c6f57600080fd5b611c7e87823560208401611ae2565b91505092959194509250565b60008060408385031215611c9d57600080fd5b611ca683611b58565b9150611bc960208401611b74565b60008060408385031215611cc757600080fd5b611cd083611b58565b946020939093013593505050565b600060208284031215611cf057600080fd5b61101282611b74565b600060208284031215611d0b57600080fd5b8135611012816120d2565b600060208284031215611d2857600080fd5b8151611012816120d2565b600060208284031215611d4557600080fd5b813567ffffffffffffffff811115611d5c57600080fd5b8201601f81018413611d6d57600080fd5b61126184823560208401611ae2565b600060208284031215611d8e57600080fd5b5035919050565b60008151808452611dad816020860160208601611fce565b601f01601f19169290920160200192915050565b60008351611dd3818460208801611fce565b835190830190611de7818360208801611fce565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3390830184611d95565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e7557835183529284019291840191600101611e59565b50909695505050505050565b6020815260006110126020830184611d95565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f7f57611f7f612064565b500190565b600082611f9357611f9361207a565b500490565b6000816000190483118215151615611fb257611fb2612064565b500290565b600082821015611fc957611fc9612064565b500390565b60005b83811015611fe9578181015183820152602001611fd1565b83811115610f295750506000910152565b600181811c9082168061200e57607f821691505b6020821081141561202f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204957612049612064565b5060010190565b60008261205f5761205f61207a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110b157600080fdfea2646970667358221220d1a1a6014c9c5594253f01baf1355114d72e547827c6198e923c59e9500e108d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d537469636b204669676874657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469636b5f666967687465722f6d642f000000000000000000000000000000000000

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

-----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] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [8] : 68747470733a2f2f6e66747370726f6a656374732e636f6d2f6e66742f737469
Arg [9] : 636b5f666967687465722f6d642f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43925:2513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37615:224;;;;;;;;;;-1:-1:-1;37615:224:0;;;;;:::i;:::-;;:::i;:::-;;;6707:14:1;;6700:22;6682:41;;6670:2;6655:18;37615:224:0;;;;;;;;24495:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26054:221::-;;;;;;;;;;-1:-1:-1;26054:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5368:32:1;;;5350:51;;5338:2;5323:18;26054:221:0;5204:203:1;25577:411:0;;;;;;;;;;-1:-1:-1;25577:411:0;;;;;:::i;:::-;;:::i;:::-;;38255:113;;;;;;;;;;-1:-1:-1;38343:10:0;:17;38255:113;;;15719:25:1;;;15707:2;15692:18;38255:113:0;15573:177:1;44150:25:0;;;;;;;;;;;;;;;;26944:339;;;;;;;;;;-1:-1:-1;26944:339:0;;;;;:::i;:::-;;:::i;37923:256::-;;;;;;;;;;-1:-1:-1;37923:256:0;;;;;:::i;:::-;;:::i;44182:33::-;;;;;;;;;;;;;;;;27354:185;;;;;;;;;;-1:-1:-1;27354:185:0;;;;;:::i;:::-;;:::i;38445:233::-;;;;;;;;;;-1:-1:-1;38445:233:0;;;;;:::i;:::-;;:::i;44838:96::-;;;;;;;;;;-1:-1:-1;44838:96:0;;;;;:::i;:::-;;:::i;24189:239::-;;;;;;;;;;-1:-1:-1;24189:239:0;;;;;:::i;:::-;;:::i;44254:28::-;;;;;;;;;;;;;;;;44418:21;;;;;;;;;;;;;:::i;23919:208::-;;;;;;;;;;-1:-1:-1;23919:208:0;;;;;:::i;:::-;;:::i;3063:94::-;;;;;;;;;;;;;:::i;45412:91::-;;;;;;;;;;-1:-1:-1;45412:91:0;;;;;:::i;:::-;;:::i;45511:346::-;;;;;;;;;;-1:-1:-1;45511:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2412:87::-;;;;;;;;;;-1:-1:-1;2485:6:0;;-1:-1:-1;;;;;2485:6:0;2412:87;;24664:104;;;;;;;;;;;;;:::i;44341:38::-;;;;;;;;;;;;;;;;45886:549;;;;;;:::i;:::-;;:::i;26347:295::-;;;;;;;;;;-1:-1:-1;26347:295:0;;;;;:::i;:::-;;:::i;27610:328::-;;;;;;;;;;-1:-1:-1;27610:328:0;;;;;:::i;:::-;;:::i;44988:365::-;;;;;;;;;;-1:-1:-1;44988:365:0;;;;;:::i;:::-;;:::i;26713:164::-;;;;;;;;;;-1:-1:-1;26713:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26834:25:0;;;26810:4;26834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26713:164;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;-1:-1:-1;;37615:224:0:o;24495:100::-;24549:13;24582:5;24575:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24495:100;:::o;26054:221::-;26130:7;29537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29537:16:0;26150:73;;;;-1:-1:-1;;;26150:73:0;;11534:2:1;26150:73:0;;;11516:21:1;11573:2;11553:18;;;11546:30;11612:34;11592:18;;;11585:62;-1:-1:-1;;;11663:18:1;;;11656:42;11715:19;;26150:73:0;;;;;;;;;-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;;13076:2:1;25708:57:0;;;13058:21:1;13115:2;13095:18;;;13088:30;13154:34;13134:18;;;13127:62;-1:-1:-1;;;13205:18:1;;;13198:31;13246:19;;25708:57:0;12874:397:1;25708:57:0;1278:10;-1:-1:-1;;;;;25800:21:0;;;;:62;;-1:-1:-1;25825:37:0;25842:5;1278:10;26713:164;:::i;25825:37::-;25778:168;;;;-1:-1:-1;;;25778:168:0;;9927:2:1;25778:168:0;;;9909:21:1;9966:2;9946:18;;;9939:30;10005:34;9985:18;;;9978:62;10076:26;10056:18;;;10049:54;10120:19;;25778:168:0;9725:420:1;25778:168:0;25959:21;25968:2;25972:7;25959:8;:21::i;:::-;25647:341;25577:411;;:::o;26944:339::-;27139:41;1278:10;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;;7160:2:1;38040:87:0;;;7142:21:1;7199:2;7179:18;;;7172:30;7238:34;7218:18;;;7211:62;-1:-1:-1;;;7289:18:1;;;7282:41;7340:19;;38040:87:0;6958:407:1;38040:87:0;-1:-1:-1;;;;;;38145:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37923:256::o;27354:185::-;27492:39;27509:4;27515:2;27519:7;27492:39;;;;;;;;;;;;:16;:39::i;38445:233::-;38520:7;38556:30;38343:10;:17;;38255:113;38556:30;38548:5;:38;38540:95;;;;-1:-1:-1;;;38540:95:0;;14257:2:1;38540:95:0;;;14239:21:1;14296:2;14276:18;;;14269:30;14335:34;14315:18;;;14308:62;-1:-1:-1;;;14386:18:1;;;14379:42;14438:19;;38540:95:0;14055:408:1;38540:95:0;38653:10;38664:5;38653:17;;;;;;;;:::i;:::-;;;;;;;;;38646:24;;38445:233;;;:::o;44838:96::-;2485:6;;-1:-1:-1;;;;;2485:6:0;1278:10;2632:23;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;44909:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44838: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;;10763:2:1;24324:73:0;;;10745:21:1;10802:2;10782:18;;;10775:30;10841:34;10821:18;;;10814:62;-1:-1:-1;;;10892:18:1;;;10885:39;10941:19;;24324:73:0;10561:405:1;44418:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23919:208::-;23991:7;-1:-1:-1;;;;;24019:19:0;;24011:74;;;;-1:-1:-1;;;24011:74:0;;10352:2:1;24011:74:0;;;10334:21:1;10391:2;10371:18;;;10364:30;10430:34;10410:18;;;10403:62;-1:-1:-1;;;10481:18:1;;;10474:40;10531:19;;24011:74:0;10150:406:1;24011:74:0;-1:-1:-1;;;;;;24103:16:0;;;;;:9;:16;;;;;;;23919:208::o;3063:94::-;2485:6;;-1:-1:-1;;;;;2485:6:0;1278:10;2632:23;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;3128:21:::1;3146:1;3128:9;:21::i;:::-;3063:94::o:0;45412:91::-;2485:6;;-1:-1:-1;;;;;2485:6:0;1278:10;2632:23;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;45476:10:::1;:19:::0;;-1:-1:-1;;45476:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45412:91::o;45511:346::-;45597:16;45631:13;45647:16;45657:5;45647:9;:16::i;:::-;45631:32;;45674:20;45711:5;45697:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45697:20:0;;45674:43;;45733:9;45728:101;45752:5;45748:1;:9;45728:101;;;45788:29;45808:5;45815:1;45788:19;:29::i;:::-;45779:3;45783:1;45779:6;;;;;;;;:::i;:::-;;;;;;;;;;:38;45759:3;;;;:::i;:::-;;;;45728:101;;;-1:-1:-1;45846:3:0;45511:346;-1:-1:-1;;;45511:346:0:o;24664:104::-;24720:13;24753:7;24746:14;;;;;:::i;45886:549::-;45950:10;;;;45942:34;;;;-1:-1:-1;;;45942:34:0;;14670:2:1;45942:34:0;;;14652:21:1;14709:2;14689:18;;;14682:30;-1:-1:-1;;;14728:18:1;;;14721:41;14779:18;;45942:34:0;14468:335:1;45942:34:0;46003:1;45995:6;:9;:31;;;;;46018:8;;46008:6;:18;;45995:31;45987:73;;;;-1:-1:-1;;;45987:73:0;;12718:2:1;45987:73:0;;;12700:21:1;12757:2;12737:18;;;12730:30;12796:31;12776:18;;;12769:59;12845:18;;45987:73:0;12516:353:1;45987:73:0;46101:10;;46092:6;46079:10;;:19;;;;:::i;:::-;:32;46071:64;;;;-1:-1:-1;;;46071:64:0;;15427:2:1;46071:64:0;;;15409:21:1;15466:2;15446:18;;;15439:30;-1:-1:-1;;;15485:18:1;;;15478:49;15544:18;;46071:64:0;15225:343:1;46071:64:0;46176:5;;46167:14;;:6;:14;:::i;:::-;46154:9;:27;46146:72;;;;-1:-1:-1;;;46146:72:0;;13478:2:1;46146:72:0;;;13460:21:1;;;13497:18;;;13490:30;13556:34;13536:18;;;13529:62;13608:18;;46146:72:0;13276:356:1;46146:72:0;2485:6;;46229:36;;-1:-1:-1;;;;;2485:6:0;;;;46255:9;46229:36;;;;;;;;;46255:9;2485:6;46229:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46300:10:0;;1278;;46281:40;;46300:12;;46311:1;46300:12;:::i;:::-;46281:40;;;15929:25:1;;;15985:2;15970:18;;15963:34;;;15902:18;46281:40:0;;;;;;;46336:9;46332:96;46352:6;46349:1;:9;46332:96;;;46379:37;1278:10;46403;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;46399:16:0;;:1;:16;:::i;:::-;46379:5;:37::i;:::-;46360:3;;;;:::i;:::-;;;;46332:96;;26347:295;-1:-1:-1;;;;;26450:24:0;;1278:10;26450:24;;26442:62;;;;-1:-1:-1;;;26442:62:0;;9160:2:1;26442:62:0;;;9142:21:1;9199:2;9179:18;;;9172:30;9238:27;9218:18;;;9211:55;9283:18;;26442:62:0;8958:349:1;26442:62:0;1278:10;26517:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26517:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26517:53:0;;;;;;;;;;26586:48;;6682:41:1;;;26517:42:0;;1278:10;26586:48;;6655:18:1;26586:48:0;;;;;;;26347:295;;:::o;27610:328::-;27785:41;1278:10;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;44988:365::-;29513:4;29537:16;;;:7;:16;;;;;;45061:13;;-1:-1:-1;;;;;29537:16:0;45087:77;;;;-1:-1:-1;;;45087:77:0;;15010:2:1;45087:77:0;;;14992:21:1;15049:2;15029:18;;;15022:30;15088:34;15068:18;;;15061:62;-1:-1:-1;;;15139:18:1;;;15132:46;15195:19;;45087:77:0;14808:412:1;45087:77:0;45177:22;45202:10;:8;:10::i;:::-;45177:35;;45255:1;45236:8;45230:22;:26;:115;;;;;;;;;;;;;;;-1:-1:-1;;;45230:115:0;;;;;;45296:8;45306:18;:7;:16;:18::i;:::-;45279:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45230:115;45223:122;44988:365;-1:-1:-1;;;44988:365:0:o;3312:192::-;2485:6;;-1:-1:-1;;;;;2485:6:0;1278:10;2632:23;2624:68;;;;-1:-1:-1;;;2624:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3401:22:0;::::1;3393:73;;;::::0;-1:-1:-1;;;3393:73:0;;7991:2:1;3393:73:0::1;::::0;::::1;7973:21:1::0;8030:2;8010:18;;;8003:30;8069:34;8049:18;;;8042:62;-1:-1:-1;;;8120:18:1;;;8113:36;8166:19;;3393:73:0::1;7789:402:1::0;3393:73:0::1;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;;;-1:-1:-1;;;;;;;;;;22157:40:0;;;23811:36;22048:157;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;29537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29537:16:0;29852:73;;;;-1:-1:-1;;;29852:73:0;;9514:2:1;29852:73:0;;;9496:21:1;9553:2;9533:18;;;9526:30;9592:34;9572:18;;;9565:62;-1:-1:-1;;;9643:18:1;;;9636:42;9695:19;;29852:73:0;9312:408:1;29852:73:0;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;;;-1:-1:-1;;;;;;26834:25:0;;;26810:4;26834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30049:32;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;;12308:2:1;32867:85:0;;;12290:21:1;12347:2;12327:18;;;12320:30;12386:34;12366:18;;;12359:62;-1:-1:-1;;;12437:18:1;;;12430:39;12486:19;;32867:85:0;12106:405:1;32867:85:0;-1:-1:-1;;;;;32971:16:0;;32963:65;;;;-1:-1:-1;;;32963:65:0;;8755:2:1;32963:65:0;;;8737:21:1;8794:2;8774:18;;;8767:30;8833:34;8813:18;;;8806:62;-1:-1:-1;;;8884:18:1;;;8877:34;8928:19;;32963:65:0;8553:400:1;32963:65:0;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;3557:128;3512:173;:::o;31435:382::-;-1:-1:-1;;;;;31515:16:0;;31507:61;;;;-1:-1:-1;;;31507:61:0;;11173:2:1;31507:61:0;;;11155:21:1;;;11192:18;;;11185:30;11251:34;11231:18;;;11224:62;11303:18;;31507:61:0;10971:356:1;31507:61:0;29513:4;29537:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29537:16:0;:30;31579:58;;;;-1:-1:-1;;;31579:58:0;;8398:2:1;31579:58:0;;;8380:21:1;8437:2;8417:18;;;8410:30;8476;8456:18;;;8449:58;8524:18;;31579:58:0;8196:352:1;31579:58:0;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;44725:107::-;44785:13;44817:7;44810:14;;;;;:::i;19485:723::-;19541:13;19762:10;19758:53;;-1:-1:-1;;19789:10:0;;;;;;;;;;;;-1:-1:-1;;;19789:10:0;;;;;19485:723::o;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;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20075:56:0;;;;;;;;-1:-1:-1;20146:11:0;20155:2;20146:11;;:::i;:::-;;;20015:154;;39291:589;-1:-1:-1;;;;;39497:18:0;;39493:187;;39532:40;39564:7;40707:10;:17;;40680:24;;;;:15;:24;;;;;:44;;;40735:24;;;;;;;;;;;;40603:164;39532:40;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;-1:-1:-1;;;;;34354:13:0;;12158:20;12206:8;34350:620;;34390:72;;-1:-1:-1;;;34390:72:0;;-1:-1:-1;;;;;34390:36:0;;;;;:72;;1278:10;;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;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;;;;;;:::i;:::-;;;;;;;;;43359:48;;43445:11;43420:10;43431;43420:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43525:28;;;:15;:28;;;;;;;:41;;;43697:24;;;;;43690:31;43732:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42748:1008;;;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;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:637::-;4842:3;4880:6;4874:13;4896:53;4942:6;4937:3;4930:4;4922:6;4918:17;4896:53;:::i;:::-;5012:13;;4971:16;;;;5034:57;5012:13;4971:16;5068:4;5056:17;;5034:57;:::i;:::-;-1:-1:-1;;;5113:20:1;;5142:22;;;5191:1;5180:13;;4562:637;-1:-1:-1;;;;4562:637:1:o;5412:488::-;-1:-1:-1;;;;;5681:15:1;;;5663:34;;5733:15;;5728:2;5713:18;;5706:43;5780:2;5765:18;;5758:34;;;5828:3;5823:2;5808:18;;5801:31;;;5606:4;;5849:45;;5874:19;;5866:6;5849:45;:::i;:::-;5841:53;5412:488;-1:-1:-1;;;;;;5412:488:1:o;5905:632::-;6076:2;6128:21;;;6198:13;;6101:18;;;6220:22;;;6047:4;;6076:2;6299:15;;;;6273:2;6258:18;;;6047:4;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:1;;5905:632;-1:-1:-1;;;;;;5905:632:1:o;6734:219::-;6883:2;6872:9;6865:21;6846:4;6903:44;6943:2;6932:9;6928:18;6920:6;6903:44;:::i;7370:414::-;7572:2;7554:21;;;7611:2;7591:18;;;7584:30;7650:34;7645:2;7630:18;;7623:62;-1:-1:-1;;;7716:2:1;7701:18;;7694:48;7774:3;7759:19;;7370:414::o;11745:356::-;11947:2;11929:21;;;11966:18;;;11959:30;12025:34;12020:2;12005:18;;11998:62;12092:2;12077:18;;11745:356::o;13637:413::-;13839:2;13821:21;;;13878:2;13858:18;;;13851:30;13917:34;13912:2;13897:18;;13890:62;-1:-1:-1;;;13983:2:1;13968:18;;13961:47;14040:3;14025:19;;13637:413::o;16008:128::-;16048:3;16079:1;16075:6;16072:1;16069:13;16066:39;;;16085:18;;:::i;:::-;-1:-1:-1;16121:9:1;;16008:128::o;16141:120::-;16181:1;16207;16197:35;;16212:18;;:::i;:::-;-1:-1:-1;16246:9:1;;16141:120::o;16266:168::-;16306:7;16372:1;16368;16364:6;16360:14;16357:1;16354:21;16349:1;16342:9;16335:17;16331:45;16328:71;;;16379:18;;:::i;:::-;-1:-1:-1;16419:9:1;;16266:168::o;16439:125::-;16479:4;16507:1;16504;16501:8;16498:34;;;16512:18;;:::i;:::-;-1:-1:-1;16549:9:1;;16439:125::o;16569:258::-;16641:1;16651:113;16665:6;16662:1;16659:13;16651:113;;;16741:11;;;16735:18;16722:11;;;16715:39;16687:2;16680:10;16651:113;;;16782:6;16779:1;16776:13;16773:48;;;-1:-1:-1;;16817:1:1;16799:16;;16792:27;16569:258::o;16832:380::-;16911:1;16907:12;;;;16954;;;16975:61;;17029:4;17021:6;17017:17;17007:27;;16975:61;17082:2;17074:6;17071:14;17051:18;17048:38;17045:161;;;17128:10;17123:3;17119:20;17116:1;17109:31;17163:4;17160:1;17153:15;17191:4;17188:1;17181:15;17045:161;;16832:380;;;:::o;17217:135::-;17256:3;-1:-1:-1;;17277:17:1;;17274:43;;;17297:18;;:::i;:::-;-1:-1:-1;17344:1:1;17333:13;;17217:135::o;17357:112::-;17389:1;17415;17405:35;;17420:18;;:::i;:::-;-1:-1:-1;17454:9:1;;17357:112::o;17474:127::-;17535:10;17530:3;17526:20;17523:1;17516:31;17566:4;17563:1;17556:15;17590:4;17587:1;17580:15;17606:127;17667:10;17662:3;17658:20;17655:1;17648:31;17698:4;17695:1;17688:15;17722:4;17719:1;17712:15;17738:127;17799:10;17794:3;17790:20;17787:1;17780:31;17830:4;17827:1;17820:15;17854:4;17851:1;17844:15;17870:127;17931:10;17926:3;17922:20;17919:1;17912:31;17962:4;17959:1;17952:15;17986:4;17983:1;17976:15;18002:127;18063:10;18058:3;18054:20;18051:1;18044:31;18094:4;18091:1;18084:15;18118:4;18115:1;18108:15;18134:131;-1:-1:-1;;;;;;18208:32:1;;18198:43;;18188:71;;18255:1;18252;18245:12

Swarm Source

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