ETH Price: $3,328.19 (-4.45%)
Gas: 4 Gwei

Token

Lazy Horse Race Club (Lazy Horse)
 

Overview

Max Total Supply

10,000 Lazy Horse

Holders

970

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 Lazy Horse
0xaae674314eb48db6df5f30c6f832d241041ac956
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:
LazyHorseNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: SMSC.sol



pragma solidity ^0.8.4;

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

    function symbol() external view returns (string memory);

    function name() external view returns (string memory);

    function getOwner() external view returns (address);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address _owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}



error TransferToNonERC721ReceiverImplementer();

contract Ownable {
    address public owner;

    constructor() {
        owner = msg.sender;
    }

    // ownership
    modifier onlyOwner() {
        require(msg.sender == owner, "ERROR! Access denied");
        _;
    }

    function transferOwnership(address _newOwner) external onlyOwner {
        owner = _newOwner;
    }

    function renounceOwnership() external onlyOwner {
        owner = address(0);
    }
}

contract LazyHorseNFT is IERC721, Ownable {
    using Address for address;
    using Strings for uint256;

    string private _name = "Lazy Horse Race Club";
    string private _symbol = "Lazy Horse";

    uint16 public pubsaleSupply = 10000;
    uint16 public limitPerAddress = 100;
    uint public totalSupply;

    bool public revealed;

    bool public presaleOpen;
    bool public pubsaleOpen;

    uint public presaleCost = 0.03 ether;
    uint256 public cost = 0.05 ether;
    uint256 internal _currentIndex = 1;

    mapping(address => uint256) private _balances;
    mapping(uint256 => address) public ownership;
    mapping(address => uint256) public addressMints;

    string public baseURI;
    string public norevealedURI;
    string public baseExtension;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    modifier onlyTokenOwner(uint256 tokenId) {
        require(
            ownerOf(tokenId) == msg.sender,
            "ERROR! You must be the token owner"
        );
        _;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            tokenId <= totalSupply,
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(msg.sender, operator, approved);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function setLimitPerAddress(uint8 _limit) external onlyOwner {
        limitPerAddress = _limit;
    }

    function startPresale() external onlyOwner {
        presaleOpen = true;
        pubsaleOpen = false;
    }

    function endPresale() external onlyOwner {
        presaleOpen = false;
    }

    function startPubsale() external onlyOwner {
        pubsaleOpen = true;
        presaleOpen = false;
    }

    function endPubsale() external onlyOwner {
        pubsaleOpen = false;
    }

    function balanceOf(address owner) public view override returns (uint256) {
        return _balances[owner];
    }

    function ownerOf(uint256 tokenId) public view override returns (address) {
        if (tokenId >= _currentIndex) {
            return address(0);
        }

        uint256 id = tokenId;
        while (id > 1 && ownership[id] == address(0)) {
            id -= 1;
        }
        return ownership[id];
    }

    function mint(uint256 amount) external payable {
        require(
            addressMints[msg.sender] + amount <= limitPerAddress,
            "ERROR: NFT limit"
        );
        require(pubsaleOpen || presaleOpen, "Sale is not open");
        require(totalSupply + amount <= pubsaleSupply, "Invalid amount");

        uint _cost = presaleOpen? presaleCost : cost;

        uint256 totalCost = _cost * amount;
        require(msg.value >= totalCost, "Insufficient payment");

        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }

        for (uint256 i = 0; i < amount; i += 1) {
            emit Transfer(address(0), msg.sender, _currentIndex + i);
        }

        ownership[_currentIndex] = msg.sender;
        _mint(msg.sender, amount);

        totalSupply += amount;
    }

    function premint(uint256 amount, address to) external onlyOwner {

        for (uint256 i = 0; i < amount; i += 1) {
            emit Transfer(address(0), to, _currentIndex + i);
        }

        ownership[_currentIndex] = to;
        _mint(to, amount);

        totalSupply += amount;
    }

    function _mint(address to, uint256 amount) internal {
        _balances[to] += amount;
        addressMints[to] += amount;
        _currentIndex += amount;
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);

        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal {
        address preOwner = ownerOf(tokenId);

        require(from != to, "You cannot transfer to yourself");
        require(from == preOwner, "Invalid from address");
        require(
            msg.sender == preOwner ||
                isApprovedForAll(preOwner, msg.sender) ||
                getApproved(tokenId) == msg.sender,
            "Access denied"
        );

        _approve(address(0), tokenId);

        ownership[tokenId] = to;

        uint256 nextId = tokenId + 1;

        if (ownership[nextId] == address(0) && nextId < _currentIndex) {
            ownership[nextId] = preOwner;
        }

        _balances[preOwner] -= 1;
        _balances[to] += 1;

        emit Transfer(from, to, tokenId);
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(
            tokenId <= totalSupply,
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return norevealedURI;
        }

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

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setUnrevealedURI(string memory _uri) external onlyOwner {
        norevealedURI = _uri;
    }

    function setBaseExtension(string memory _ext) external onlyOwner {
        baseExtension = _ext;
    }

    function setPubsaleSupply(uint16 _amount) external onlyOwner {
        pubsaleSupply = _amount;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC165).interfaceId;
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    msg.sender,
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function withdraw(address payable to) external onlyOwner {
        Address.sendValue(to, address(this).balance);
    }

    function recoverToken(address token, address to) external onlyOwner {
        IERC20(token).transfer(to, IERC20(token).balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"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":"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":"","type":"address"}],"name":"addressMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPubsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"norevealedURI","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownership","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubsaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubsaleSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_ext","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setPubsaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPubsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601460808190527f4c617a7920486f727365205261636520436c756200000000000000000000000060a0908152620000409160019190620000c8565b5060408051808201909152600a808252694c617a7920486f72736560b01b60209092019182526200007491600291620000c8565b506003805463ffffffff191662642710179055666a94d74f43000060065566b1a2bc2ec500006007556001600855348015620000af57600080fd5b50600080546001600160a01b03191633179055620001ab565b828054620000d6906200016e565b90600052602060002090601f016020900481019282620000fa576000855562000145565b82601f106200011557805160ff191683800117855562000145565b8280016001018555821562000145579182015b828111156200014557825182559160200191906001019062000128565b506200015392915062000157565b5090565b5b8082111562000153576000815560010162000158565b600181811c908216806200018357607f821691505b60208210811415620001a557634e487b7160e01b600052602260045260246000fd5b50919050565b6123e980620001bb6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b584b78d116100b6578063cfbe73551161007a578063cfbe735514610713578063da3ef23f14610733578063e985e9c514610753578063f2fde38b14610773578063fe2c7fee14610793578063feaea586146107b357600080fd5b8063b584b78d1461068a578063b88d4fde1461069f578063bee6348a146106bf578063c6682862146106de578063c87b56dd146106f357600080fd5b80639c3e73c3116101085780639c3e73c3146105d7578063a0712d68146105f7578063a0f45b691461060a578063a22cb46514610640578063a43be57b14610660578063a475b5dd1461067557600080fd5b8063715018a61461054b5780638611244c146105605780638da5cb5b1461057557806395d89b4114610595578063964c33b5146105aa57600080fd5b806342842e0e116101dd578063538dba3e116101a1578063538dba3e1461048057806355f804b3146104a05780636352211e146104c05780636833a228146104e05780636c0360eb1461050057806370a082311461051557600080fd5b806342842e0e146103eb57806342ca1d091461040b57806344a0d68a14610426578063518302271461044657806351cff8d91461046057600080fd5b8063095ea7b31161022f578063095ea7b31461032757806313faede61461034757806318160ddd1461036b57806323b872dd146103815780632a23d07d146103a15780632a484ad4146103b757600080fd5b806301ffc9a71461026c57806303a17969146102a157806304c98b2b146102b857806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561027857600080fd5b5061028c610287366004611fbf565b6107d3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610825565b005b3480156102c457600080fd5b506102b6610866565b3480156102d957600080fd5b506102e26108a2565b60405161029891906121ff565b3480156102fb57600080fd5b5061030f61030a36600461205f565b610934565b6040516001600160a01b039091168152602001610298565b34801561033357600080fd5b506102b6610342366004611f78565b6109b9565b34801561035357600080fd5b5061035d60075481565b604051908152602001610298565b34801561037757600080fd5b5061035d60045481565b34801561038d57600080fd5b506102b661039c366004611e8e565b610acf565b3480156103ad57600080fd5b5061035d60065481565b3480156103c357600080fd5b506003546103d89062010000900461ffff1681565b60405161ffff9091168152602001610298565b3480156103f757600080fd5b506102b6610406366004611e8e565b610ada565b34801561041757600080fd5b506003546103d89061ffff1681565b34801561043257600080fd5b506102b661044136600461205f565b610af5565b34801561045257600080fd5b5060055461028c9060ff1681565b34801561046c57600080fd5b506102b661047b366004611e3a565b610b24565b34801561048c57600080fd5b506102b661049b36600461208f565b610b5b565b3480156104ac57600080fd5b506102b66104bb366004611ff7565b610c36565b3480156104cc57600080fd5b5061030f6104db36600461205f565b610c77565b3480156104ec57600080fd5b506102b66104fb3660046120b3565b610ce6565b34801561050c57600080fd5b506102e2610d2e565b34801561052157600080fd5b5061035d610530366004611e3a565b6001600160a01b031660009081526009602052604090205490565b34801561055757600080fd5b506102b6610dbc565b34801561056c57600080fd5b506102b6610df8565b34801561058157600080fd5b5060005461030f906001600160a01b031681565b3480156105a157600080fd5b506102e2610e35565b3480156105b657600080fd5b5061035d6105c5366004611e3a565b600b6020526000908152604090205481565b3480156105e357600080fd5b5060055461028c9062010000900460ff1681565b6102b661060536600461205f565b610e44565b34801561061657600080fd5b5061030f61062536600461205f565b600a602052600090815260409020546001600160a01b031681565b34801561064c57600080fd5b506102b661065b366004611f4b565b6110bb565b34801561066c57600080fd5b506102b66110c6565b34801561068157600080fd5b506102b66110fd565b34801561069657600080fd5b506102e2611136565b3480156106ab57600080fd5b506102b66106ba366004611ece565b611143565b3480156106cb57600080fd5b5060055461028c90610100900460ff1681565b3480156106ea57600080fd5b506102e261117d565b3480156106ff57600080fd5b506102e261070e36600461205f565b61118a565b34801561071f57600080fd5b506102b661072e36600461203d565b611374565b34801561073f57600080fd5b506102b661074e366004611ff7565b6113b6565b34801561075f57600080fd5b5061028c61076e366004611e56565b6113f3565b34801561077f57600080fd5b506102b661078e366004611e3a565b611421565b34801561079f57600080fd5b506102b66107ae366004611ff7565b61146d565b3480156107bf57600080fd5b506102b66107ce366004611e56565b6114aa565b60006001600160e01b031982166380ac58cd60e01b148061080457506001600160e01b03198216635b5e139f60e01b145b8061081f57506001600160e01b031982166301ffc9a760e01b145b92915050565b6000546001600160a01b031633146108585760405162461bcd60e51b815260040161084f90612212565b60405180910390fd5b6005805462ff000019169055565b6000546001600160a01b031633146108905760405162461bcd60e51b815260040161084f90612212565b6005805462ffff001916610100179055565b6060600180546108b1906122ce565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd906122ce565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050905090565b600060045482111561099d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600f60205260409020546001600160a01b031690565b60006109c482610c77565b9050806001600160a01b0316836001600160a01b03161415610a325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084f565b336001600160a01b0382161480610a4e5750610a4e81336113f3565b610ac05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610aca83836115d3565b505050565b610aca838383611641565b610aca83838360405180602001604052806000815250611143565b6000546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161084f90612212565b600755565b6000546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161084f90612212565b610b5881476118ac565b50565b6000546001600160a01b03163314610b855760405162461bcd60e51b815260040161084f90612212565b60005b82811015610be65780600854610b9e9190612240565b6040516001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610bdf600182612240565b9050610b88565b506008546000908152600a6020526040902080546001600160a01b0319166001600160a01b038316179055610c1b81836119c5565b8160046000828254610c2d9190612240565b90915550505050565b6000546001600160a01b03163314610c605760405162461bcd60e51b815260040161084f90612212565b8051610c7390600c906020840190611d2b565b5050565b60006008548210610c8a57506000919050565b815b600181118015610cb157506000818152600a60205260409020546001600160a01b0316155b15610cc857610cc160018261228b565b9050610c8c565b6000908152600a60205260409020546001600160a01b031692915050565b6000546001600160a01b03163314610d105760405162461bcd60e51b815260040161084f90612212565b6003805463ffff0000191660ff929092166201000002919091179055565b600c8054610d3b906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d67906122ce565b8015610db45780601f10610d8957610100808354040283529160200191610db4565b820191906000526020600020905b815481529060010190602001808311610d9757829003601f168201915b505050505081565b6000546001600160a01b03163314610de65760405162461bcd60e51b815260040161084f90612212565b600080546001600160a01b0319169055565b6000546001600160a01b03163314610e225760405162461bcd60e51b815260040161084f90612212565b6005805462ffff00191662010000179055565b6060600280546108b1906122ce565b600354336000908152600b60205260409020546201000090910461ffff1690610e6e908390612240565b1115610eaf5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b604482015260640161084f565b60055462010000900460ff1680610ecd5750600554610100900460ff165b610f0c5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161084f565b60035460045461ffff90911690610f24908390612240565b1115610f635760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161084f565b600554600090610100900460ff16610f7d57600754610f81565b6006545b90506000610f8f838361226c565b905080341015610fd85760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161084f565b8034111561101857336108fc610fee833461228b565b6040518115909202916000818181858888f19350505050158015611016573d6000803e3d6000fd5b505b60005b8381101561107057806008546110319190612240565b60405133906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611069600182612240565b905061101b565b506008546000908152600a6020526040902080546001600160a01b0319163390811790915561109f90846119c5565b82600460008282546110b19190612240565b9091555050505050565b610c73338383611a33565b6000546001600160a01b031633146110f05760405162461bcd60e51b815260040161084f90612212565b6005805461ff0019169055565b6000546001600160a01b031633146111275760405162461bcd60e51b815260040161084f90612212565b6005805460ff19166001179055565b600d8054610d3b906122ce565b61114e848484611641565b61115a84848484611b02565b611177576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e8054610d3b906122ce565b60606004548211156111f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084f565b60055460ff1661129257600d805461120d906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611239906122ce565b80156112865780601f1061125b57610100808354040283529160200191611286565b820191906000526020600020905b81548152906001019060200180831161126957829003601f168201915b50505050509050919050565b6000600c80546112a1906122ce565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd906122ce565b801561131a5780601f106112ef5761010080835404028352916020019161131a565b820191906000526020600020905b8154815290600101906020018083116112fd57829003601f168201915b50505050509050600081511161133f576040518060200160405280600081525061136d565b8061134984611c11565b600e60405160200161135d93929190612100565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461139e5760405162461bcd60e51b815260040161084f90612212565b6003805461ffff191661ffff92909216919091179055565b6000546001600160a01b031633146113e05760405162461bcd60e51b815260040161084f90612212565b8051610c7390600e906020840190611d2b565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461144b5760405162461bcd60e51b815260040161084f90612212565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114975760405162461bcd60e51b815260040161084f90612212565b8051610c7390600d906020840190611d2b565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161084f90612212565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612077565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561159b57600080fd5b505af11580156115af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190611fa3565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160882610c77565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164c82610c77565b9050826001600160a01b0316846001600160a01b031614156116b05760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74207472616e7366657220746f20796f757273656c6600604482015260640161084f565b806001600160a01b0316846001600160a01b0316146117085760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642066726f6d206164647265737360601b604482015260640161084f565b336001600160a01b0382161480611724575061172481336113f3565b8061173f57503361173483610934565b6001600160a01b0316145b61177b5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015260640161084f565b6117866000836115d3565b6000828152600a6020526040812080546001600160a01b0319166001600160a01b0386161790556117b8836001612240565b6000818152600a60205260409020549091506001600160a01b03161580156117e1575060085481105b1561180e576000818152600a6020526040902080546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038216600090815260096020526040812080546001929061183790849061228b565b90915550506001600160a01b0384166000908152600960205260408120805460019290611865908490612240565b909155505060405183906001600160a01b0380871691908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a45050505050565b804710156118fc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161084f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611949576040519150601f19603f3d011682016040523d82523d6000602084013e61194e565b606091505b5050905080610aca5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161084f565b6001600160a01b038216600090815260096020526040812080548392906119ed908490612240565b90915550506001600160a01b0382166000908152600b602052604081208054839290611a1a908490612240565b925050819055508060086000828254610c2d9190612240565b816001600160a01b0316836001600160a01b03161415611a955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b6001600160a01b03838116600081815260106020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b15611c0557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b469033908990889088906004016121c2565b602060405180830381600087803b158015611b6057600080fd5b505af1925050508015611b90575060408051601f3d908101601f19168201909252611b8d91810190611fdb565b60015b611beb573d808015611bbe576040519150601f19603f3d011682016040523d82523d6000602084013e611bc3565b606091505b508051611be3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c09565b5060015b949350505050565b606081611c355750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c5f5780611c4981612309565b9150611c589050600a83612258565b9150611c39565b60008167ffffffffffffffff811115611c8857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cb2576020820181803683370190505b5090505b8415611c0957611cc760018361228b565b9150611cd4600a86612324565b611cdf906030612240565b60f81b818381518110611d0257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d24600a86612258565b9450611cb6565b828054611d37906122ce565b90600052602060002090601f016020900481019282611d595760008555611d9f565b82601f10611d7257805160ff1916838001178555611d9f565b82800160010185558215611d9f579182015b82811115611d9f578251825591602001919060010190611d84565b50611dab929150611daf565b5090565b5b80821115611dab5760008155600101611db0565b600067ffffffffffffffff80841115611ddf57611ddf612364565b604051601f8501601f19908116603f01168101908282118183101715611e0757611e07612364565b81604052809350858152868686011115611e2057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4b578081fd5b813561136d8161237a565b60008060408385031215611e68578081fd5b8235611e738161237a565b91506020830135611e838161237a565b809150509250929050565b600080600060608486031215611ea2578081fd5b8335611ead8161237a565b92506020840135611ebd8161237a565b929592945050506040919091013590565b60008060008060808587031215611ee3578081fd5b8435611eee8161237a565b93506020850135611efe8161237a565b925060408501359150606085013567ffffffffffffffff811115611f20578182fd5b8501601f81018713611f30578182fd5b611f3f87823560208401611dc4565b91505092959194509250565b60008060408385031215611f5d578182fd5b8235611f688161237a565b91506020830135611e838161238f565b60008060408385031215611f8a578182fd5b8235611f958161237a565b946020939093013593505050565b600060208284031215611fb4578081fd5b815161136d8161238f565b600060208284031215611fd0578081fd5b813561136d8161239d565b600060208284031215611fec578081fd5b815161136d8161239d565b600060208284031215612008578081fd5b813567ffffffffffffffff81111561201e578182fd5b8201601f8101841361202e578182fd5b611c0984823560208401611dc4565b60006020828403121561204e578081fd5b813561ffff8116811461136d578182fd5b600060208284031215612070578081fd5b5035919050565b600060208284031215612088578081fd5b5051919050565b600080604083850312156120a1578182fd5b823591506020830135611e838161237a565b6000602082840312156120c4578081fd5b813560ff8116811461136d578182fd5b600081518084526120ec8160208601602086016122a2565b601f01601f19169290920160200192915050565b6000845160206121138285838a016122a2565b8551918401916121268184848a016122a2565b85549201918390600181811c908083168061214257607f831692505b85831081141561216057634e487b7160e01b88526022600452602488fd5b8080156121745760018114612185576121b1565b60ff198516885283880195506121b1565b60008b815260209020895b858110156121a95781548a820152908401908801612190565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f5908301846120d4565b9695505050505050565b60208152600061136d60208301846120d4565b60208082526014908201527311549493d488481058d8d95cdcc819195b9a595960621b604082015260600190565b6000821982111561225357612253612338565b500190565b6000826122675761226761234e565b500490565b600081600019048311821515161561228657612286612338565b500290565b60008282101561229d5761229d612338565b500390565b60005b838110156122bd5781810151838201526020016122a5565b838111156111775750506000910152565b600181811c908216806122e257607f821691505b6020821081141561230357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231d5761231d612338565b5060010190565b6000826123335761233361234e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b5857600080fd5b8015158114610b5857600080fd5b6001600160e01b031981168114610b5857600080fdfea26469706673582212204cd25ef107f98757af959910c05615995336181d9e5843aef73a7fb8af0cbac464736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b584b78d116100b6578063cfbe73551161007a578063cfbe735514610713578063da3ef23f14610733578063e985e9c514610753578063f2fde38b14610773578063fe2c7fee14610793578063feaea586146107b357600080fd5b8063b584b78d1461068a578063b88d4fde1461069f578063bee6348a146106bf578063c6682862146106de578063c87b56dd146106f357600080fd5b80639c3e73c3116101085780639c3e73c3146105d7578063a0712d68146105f7578063a0f45b691461060a578063a22cb46514610640578063a43be57b14610660578063a475b5dd1461067557600080fd5b8063715018a61461054b5780638611244c146105605780638da5cb5b1461057557806395d89b4114610595578063964c33b5146105aa57600080fd5b806342842e0e116101dd578063538dba3e116101a1578063538dba3e1461048057806355f804b3146104a05780636352211e146104c05780636833a228146104e05780636c0360eb1461050057806370a082311461051557600080fd5b806342842e0e146103eb57806342ca1d091461040b57806344a0d68a14610426578063518302271461044657806351cff8d91461046057600080fd5b8063095ea7b31161022f578063095ea7b31461032757806313faede61461034757806318160ddd1461036b57806323b872dd146103815780632a23d07d146103a15780632a484ad4146103b757600080fd5b806301ffc9a71461026c57806303a17969146102a157806304c98b2b146102b857806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561027857600080fd5b5061028c610287366004611fbf565b6107d3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610825565b005b3480156102c457600080fd5b506102b6610866565b3480156102d957600080fd5b506102e26108a2565b60405161029891906121ff565b3480156102fb57600080fd5b5061030f61030a36600461205f565b610934565b6040516001600160a01b039091168152602001610298565b34801561033357600080fd5b506102b6610342366004611f78565b6109b9565b34801561035357600080fd5b5061035d60075481565b604051908152602001610298565b34801561037757600080fd5b5061035d60045481565b34801561038d57600080fd5b506102b661039c366004611e8e565b610acf565b3480156103ad57600080fd5b5061035d60065481565b3480156103c357600080fd5b506003546103d89062010000900461ffff1681565b60405161ffff9091168152602001610298565b3480156103f757600080fd5b506102b6610406366004611e8e565b610ada565b34801561041757600080fd5b506003546103d89061ffff1681565b34801561043257600080fd5b506102b661044136600461205f565b610af5565b34801561045257600080fd5b5060055461028c9060ff1681565b34801561046c57600080fd5b506102b661047b366004611e3a565b610b24565b34801561048c57600080fd5b506102b661049b36600461208f565b610b5b565b3480156104ac57600080fd5b506102b66104bb366004611ff7565b610c36565b3480156104cc57600080fd5b5061030f6104db36600461205f565b610c77565b3480156104ec57600080fd5b506102b66104fb3660046120b3565b610ce6565b34801561050c57600080fd5b506102e2610d2e565b34801561052157600080fd5b5061035d610530366004611e3a565b6001600160a01b031660009081526009602052604090205490565b34801561055757600080fd5b506102b6610dbc565b34801561056c57600080fd5b506102b6610df8565b34801561058157600080fd5b5060005461030f906001600160a01b031681565b3480156105a157600080fd5b506102e2610e35565b3480156105b657600080fd5b5061035d6105c5366004611e3a565b600b6020526000908152604090205481565b3480156105e357600080fd5b5060055461028c9062010000900460ff1681565b6102b661060536600461205f565b610e44565b34801561061657600080fd5b5061030f61062536600461205f565b600a602052600090815260409020546001600160a01b031681565b34801561064c57600080fd5b506102b661065b366004611f4b565b6110bb565b34801561066c57600080fd5b506102b66110c6565b34801561068157600080fd5b506102b66110fd565b34801561069657600080fd5b506102e2611136565b3480156106ab57600080fd5b506102b66106ba366004611ece565b611143565b3480156106cb57600080fd5b5060055461028c90610100900460ff1681565b3480156106ea57600080fd5b506102e261117d565b3480156106ff57600080fd5b506102e261070e36600461205f565b61118a565b34801561071f57600080fd5b506102b661072e36600461203d565b611374565b34801561073f57600080fd5b506102b661074e366004611ff7565b6113b6565b34801561075f57600080fd5b5061028c61076e366004611e56565b6113f3565b34801561077f57600080fd5b506102b661078e366004611e3a565b611421565b34801561079f57600080fd5b506102b66107ae366004611ff7565b61146d565b3480156107bf57600080fd5b506102b66107ce366004611e56565b6114aa565b60006001600160e01b031982166380ac58cd60e01b148061080457506001600160e01b03198216635b5e139f60e01b145b8061081f57506001600160e01b031982166301ffc9a760e01b145b92915050565b6000546001600160a01b031633146108585760405162461bcd60e51b815260040161084f90612212565b60405180910390fd5b6005805462ff000019169055565b6000546001600160a01b031633146108905760405162461bcd60e51b815260040161084f90612212565b6005805462ffff001916610100179055565b6060600180546108b1906122ce565b80601f01602080910402602001604051908101604052809291908181526020018280546108dd906122ce565b801561092a5780601f106108ff5761010080835404028352916020019161092a565b820191906000526020600020905b81548152906001019060200180831161090d57829003601f168201915b5050505050905090565b600060045482111561099d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084f565b506000908152600f60205260409020546001600160a01b031690565b60006109c482610c77565b9050806001600160a01b0316836001600160a01b03161415610a325760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084f565b336001600160a01b0382161480610a4e5750610a4e81336113f3565b610ac05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084f565b610aca83836115d3565b505050565b610aca838383611641565b610aca83838360405180602001604052806000815250611143565b6000546001600160a01b03163314610b1f5760405162461bcd60e51b815260040161084f90612212565b600755565b6000546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161084f90612212565b610b5881476118ac565b50565b6000546001600160a01b03163314610b855760405162461bcd60e51b815260040161084f90612212565b60005b82811015610be65780600854610b9e9190612240565b6040516001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610bdf600182612240565b9050610b88565b506008546000908152600a6020526040902080546001600160a01b0319166001600160a01b038316179055610c1b81836119c5565b8160046000828254610c2d9190612240565b90915550505050565b6000546001600160a01b03163314610c605760405162461bcd60e51b815260040161084f90612212565b8051610c7390600c906020840190611d2b565b5050565b60006008548210610c8a57506000919050565b815b600181118015610cb157506000818152600a60205260409020546001600160a01b0316155b15610cc857610cc160018261228b565b9050610c8c565b6000908152600a60205260409020546001600160a01b031692915050565b6000546001600160a01b03163314610d105760405162461bcd60e51b815260040161084f90612212565b6003805463ffff0000191660ff929092166201000002919091179055565b600c8054610d3b906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d67906122ce565b8015610db45780601f10610d8957610100808354040283529160200191610db4565b820191906000526020600020905b815481529060010190602001808311610d9757829003601f168201915b505050505081565b6000546001600160a01b03163314610de65760405162461bcd60e51b815260040161084f90612212565b600080546001600160a01b0319169055565b6000546001600160a01b03163314610e225760405162461bcd60e51b815260040161084f90612212565b6005805462ffff00191662010000179055565b6060600280546108b1906122ce565b600354336000908152600b60205260409020546201000090910461ffff1690610e6e908390612240565b1115610eaf5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b604482015260640161084f565b60055462010000900460ff1680610ecd5750600554610100900460ff165b610f0c5760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b604482015260640161084f565b60035460045461ffff90911690610f24908390612240565b1115610f635760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161084f565b600554600090610100900460ff16610f7d57600754610f81565b6006545b90506000610f8f838361226c565b905080341015610fd85760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b604482015260640161084f565b8034111561101857336108fc610fee833461228b565b6040518115909202916000818181858888f19350505050158015611016573d6000803e3d6000fd5b505b60005b8381101561107057806008546110319190612240565b60405133906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611069600182612240565b905061101b565b506008546000908152600a6020526040902080546001600160a01b0319163390811790915561109f90846119c5565b82600460008282546110b19190612240565b9091555050505050565b610c73338383611a33565b6000546001600160a01b031633146110f05760405162461bcd60e51b815260040161084f90612212565b6005805461ff0019169055565b6000546001600160a01b031633146111275760405162461bcd60e51b815260040161084f90612212565b6005805460ff19166001179055565b600d8054610d3b906122ce565b61114e848484611641565b61115a84848484611b02565b611177576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e8054610d3b906122ce565b60606004548211156111f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084f565b60055460ff1661129257600d805461120d906122ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611239906122ce565b80156112865780601f1061125b57610100808354040283529160200191611286565b820191906000526020600020905b81548152906001019060200180831161126957829003601f168201915b50505050509050919050565b6000600c80546112a1906122ce565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd906122ce565b801561131a5780601f106112ef5761010080835404028352916020019161131a565b820191906000526020600020905b8154815290600101906020018083116112fd57829003601f168201915b50505050509050600081511161133f576040518060200160405280600081525061136d565b8061134984611c11565b600e60405160200161135d93929190612100565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461139e5760405162461bcd60e51b815260040161084f90612212565b6003805461ffff191661ffff92909216919091179055565b6000546001600160a01b031633146113e05760405162461bcd60e51b815260040161084f90612212565b8051610c7390600e906020840190611d2b565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0316331461144b5760405162461bcd60e51b815260040161084f90612212565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114975760405162461bcd60e51b815260040161084f90612212565b8051610c7390600d906020840190611d2b565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161084f90612212565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612077565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561159b57600080fd5b505af11580156115af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190611fa3565b6000818152600f6020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160882610c77565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164c82610c77565b9050826001600160a01b0316846001600160a01b031614156116b05760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74207472616e7366657220746f20796f757273656c6600604482015260640161084f565b806001600160a01b0316846001600160a01b0316146117085760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642066726f6d206164647265737360601b604482015260640161084f565b336001600160a01b0382161480611724575061172481336113f3565b8061173f57503361173483610934565b6001600160a01b0316145b61177b5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b604482015260640161084f565b6117866000836115d3565b6000828152600a6020526040812080546001600160a01b0319166001600160a01b0386161790556117b8836001612240565b6000818152600a60205260409020549091506001600160a01b03161580156117e1575060085481105b1561180e576000818152600a6020526040902080546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038216600090815260096020526040812080546001929061183790849061228b565b90915550506001600160a01b0384166000908152600960205260408120805460019290611865908490612240565b909155505060405183906001600160a01b0380871691908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a45050505050565b804710156118fc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161084f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611949576040519150601f19603f3d011682016040523d82523d6000602084013e61194e565b606091505b5050905080610aca5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161084f565b6001600160a01b038216600090815260096020526040812080548392906119ed908490612240565b90915550506001600160a01b0382166000908152600b602052604081208054839290611a1a908490612240565b925050819055508060086000828254610c2d9190612240565b816001600160a01b0316836001600160a01b03161415611a955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084f565b6001600160a01b03838116600081815260106020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b15611c0557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b469033908990889088906004016121c2565b602060405180830381600087803b158015611b6057600080fd5b505af1925050508015611b90575060408051601f3d908101601f19168201909252611b8d91810190611fdb565b60015b611beb573d808015611bbe576040519150601f19603f3d011682016040523d82523d6000602084013e611bc3565b606091505b508051611be3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c09565b5060015b949350505050565b606081611c355750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c5f5780611c4981612309565b9150611c589050600a83612258565b9150611c39565b60008167ffffffffffffffff811115611c8857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cb2576020820181803683370190505b5090505b8415611c0957611cc760018361228b565b9150611cd4600a86612324565b611cdf906030612240565b60f81b818381518110611d0257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d24600a86612258565b9450611cb6565b828054611d37906122ce565b90600052602060002090601f016020900481019282611d595760008555611d9f565b82601f10611d7257805160ff1916838001178555611d9f565b82800160010185558215611d9f579182015b82811115611d9f578251825591602001919060010190611d84565b50611dab929150611daf565b5090565b5b80821115611dab5760008155600101611db0565b600067ffffffffffffffff80841115611ddf57611ddf612364565b604051601f8501601f19908116603f01168101908282118183101715611e0757611e07612364565b81604052809350858152868686011115611e2057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e4b578081fd5b813561136d8161237a565b60008060408385031215611e68578081fd5b8235611e738161237a565b91506020830135611e838161237a565b809150509250929050565b600080600060608486031215611ea2578081fd5b8335611ead8161237a565b92506020840135611ebd8161237a565b929592945050506040919091013590565b60008060008060808587031215611ee3578081fd5b8435611eee8161237a565b93506020850135611efe8161237a565b925060408501359150606085013567ffffffffffffffff811115611f20578182fd5b8501601f81018713611f30578182fd5b611f3f87823560208401611dc4565b91505092959194509250565b60008060408385031215611f5d578182fd5b8235611f688161237a565b91506020830135611e838161238f565b60008060408385031215611f8a578182fd5b8235611f958161237a565b946020939093013593505050565b600060208284031215611fb4578081fd5b815161136d8161238f565b600060208284031215611fd0578081fd5b813561136d8161239d565b600060208284031215611fec578081fd5b815161136d8161239d565b600060208284031215612008578081fd5b813567ffffffffffffffff81111561201e578182fd5b8201601f8101841361202e578182fd5b611c0984823560208401611dc4565b60006020828403121561204e578081fd5b813561ffff8116811461136d578182fd5b600060208284031215612070578081fd5b5035919050565b600060208284031215612088578081fd5b5051919050565b600080604083850312156120a1578182fd5b823591506020830135611e838161237a565b6000602082840312156120c4578081fd5b813560ff8116811461136d578182fd5b600081518084526120ec8160208601602086016122a2565b601f01601f19169290920160200192915050565b6000845160206121138285838a016122a2565b8551918401916121268184848a016122a2565b85549201918390600181811c908083168061214257607f831692505b85831081141561216057634e487b7160e01b88526022600452602488fd5b8080156121745760018114612185576121b1565b60ff198516885283880195506121b1565b60008b815260209020895b858110156121a95781548a820152908401908801612190565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f5908301846120d4565b9695505050505050565b60208152600061136d60208301846120d4565b60208082526014908201527311549493d488481058d8d95cdcc819195b9a595960621b604082015260600190565b6000821982111561225357612253612338565b500190565b6000826122675761226761234e565b500490565b600081600019048311821515161561228657612286612338565b500290565b60008282101561229d5761229d612338565b500390565b60005b838110156122bd5781810151838201526020016122a5565b838111156111775750506000910152565b600181811c908216806122e257607f821691505b6020821081141561230357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561231d5761231d612338565b5060010190565b6000826123335761233361234e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b5857600080fd5b8015158114610b5857600080fd5b6001600160e01b031981168114610b5857600080fdfea26469706673582212204cd25ef107f98757af959910c05615995336181d9e5843aef73a7fb8af0cbac464736f6c63430008040033

Deployed Bytecode Sourcemap

20804:9709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28941:351;;;;;;;;;;-1:-1:-1;28941:351:0;;;;;:::i;:::-;;:::i;:::-;;;9349:14:1;;9342:22;9324:41;;9312:2;9297:18;28941:351:0;;;;;;;;24292:79;;;;;;;;;;;;;:::i;:::-;;23969:110;;;;;;;;;;;;;:::i;21938:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22532:314::-;;;;;;;;;;-1:-1:-1;22532:314:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8368:32:1;;;8350:51;;8338:2;8323:18;22532:314:0;8305:102:1;22124:400:0;;;;;;;;;;-1:-1:-1;22124:400:0;;;;;:::i;:::-;;:::i;21267:32::-;;;;;;;;;;;;;;;;;;;15516:25:1;;;15504:2;15489:18;21267:32:0;15471:76:1;21101:23:0;;;;;;;;;;;;;;;;26188:162;;;;;;;;;;-1:-1:-1;26188:162:0;;;;;:::i;:::-;;:::i;21224:36::-;;;;;;;;;;;;;;;;21059:35;;;;;;;;;;-1:-1:-1;21059:35:0;;;;;;;;;;;;;;15351:6:1;15339:19;;;15321:38;;15309:2;15294:18;21059:35:0;15276:89:1;26358:177:0;;;;;;;;;;-1:-1:-1;26358:177:0;;;;;:::i;:::-;;:::i;21017:35::-;;;;;;;;;;-1:-1:-1;21017:35:0;;;;;;;;23767:82;;;;;;;;;;-1:-1:-1;23767:82:0;;;;;:::i;:::-;;:::i;21133:20::-;;;;;;;;;;-1:-1:-1;21133:20:0;;;;;;;;30229:120;;;;;;;;;;-1:-1:-1;30229:120:0;;;;;:::i;:::-;;:::i;25704:303::-;;;;;;;;;;-1:-1:-1;25704:303:0;;;;;:::i;:::-;;:::i;28419:100::-;;;;;;;;;;-1:-1:-1;28419:100:0;;;;;:::i;:::-;;:::i;24502:319::-;;;;;;;;;;-1:-1:-1;24502:319:0;;;;;:::i;:::-;;:::i;23857:104::-;;;;;;;;;;-1:-1:-1;23857:104:0;;;;;:::i;:::-;;:::i;21508:21::-;;;;;;;;;;;;;:::i;24379:115::-;;;;;;;;;;-1:-1:-1;24379:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;24470:16:0;24443:7;24470:16;;;:9;:16;;;;;;;24379:115;20712:85;;;;;;;;;;;;;:::i;24174:110::-;;;;;;;;;;;;;:::i;20385:20::-;;;;;;;;;;-1:-1:-1;20385:20:0;;;;-1:-1:-1;;;;;20385:20:0;;;22029:87;;;;;;;;;;;;;:::i;21452:47::-;;;;;;;;;;-1:-1:-1;21452:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;21192:23;;;;;;;;;;-1:-1:-1;21192:23:0;;;;;;;;;;;24829:867;;;;;;:::i;:::-;;:::i;21401:44::-;;;;;;;;;;-1:-1:-1;21401:44:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21401:44:0;;;22854:185;;;;;;;;;;-1:-1:-1;22854:185:0;;;;;:::i;:::-;;:::i;24087:79::-;;;;;;;;;;;;;:::i;28862:71::-;;;;;;;;;;;;;:::i;21536:27::-;;;;;;;;;;;;;:::i;26543:336::-;;;;;;;;;;-1:-1:-1;26543:336:0;;;;;:::i;:::-;;:::i;21162:23::-;;;;;;;;;;-1:-1:-1;21162:23:0;;;;;;;;;;;21570:27;;;;;;;;;;;;;:::i;27751:660::-;;;;;;;;;;-1:-1:-1;27751:660:0;;;;;:::i;:::-;;:::i;28751:103::-;;;;;;;;;;-1:-1:-1;28751:103:0;;;;;:::i;:::-;;:::i;28639:104::-;;;;;;;;;;-1:-1:-1;28639:104:0;;;;;:::i;:::-;;:::i;23047:214::-;;;;;;;;;;-1:-1:-1;23047:214:0;;;;;:::i;:::-;;:::i;20603:101::-;;;;;;;;;;-1:-1:-1;20603:101:0;;;;;:::i;:::-;;:::i;28527:104::-;;;;;;;;;;-1:-1:-1;28527:104:0;;;;;:::i;:::-;;:::i;30357:153::-;;;;;;;;;;-1:-1:-1;30357:153:0;;;;;:::i;:::-;;:::i;28941:351::-;29080:4;-1:-1:-1;;;;;;29122:40:0;;-1:-1:-1;;;29122:40:0;;:105;;-1:-1:-1;;;;;;;29179:48:0;;-1:-1:-1;;;29179:48:0;29122:105;:162;;;-1:-1:-1;;;;;;;29244:40:0;;-1:-1:-1;;;29244:40:0;29122:162;29102:182;28941:351;-1:-1:-1;;28941:351:0:o;24292:79::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;;;;;;;;;24344:11:::1;:19:::0;;-1:-1:-1;;24344:19:0::1;::::0;;24292:79::o;23969:110::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;24023:11:::1;:18:::0;;-1:-1:-1;;24052:19:0;24023:18:::1;24052:19:::0;;;23969:110::o;21938:83::-;21975:13;22008:5;22001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21938:83;:::o;22532:314::-;22653:7;22711:11;;22700:7;:22;;22678:116;;;;-1:-1:-1;;;22678:116:0;;12752:2:1;22678:116:0;;;12734:21:1;12791:2;12771:18;;;12764:30;12830:34;12810:18;;;12803:62;-1:-1:-1;;;12881:18:1;;;12874:42;12933:19;;22678:116:0;12724:234:1;22678:116:0;-1:-1:-1;22814:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22814:24:0;;22532:314::o;22124:400::-;22205:13;22221:16;22229:7;22221;:16::i;:::-;22205:32;;22262:5;-1:-1:-1;;;;;22256:11:0;:2;-1:-1:-1;;;;;22256:11:0;;;22248:57;;;;-1:-1:-1;;;22248:57:0;;13581:2:1;22248:57:0;;;13563:21:1;13620:2;13600:18;;;13593:30;13659:34;13639:18;;;13632:62;-1:-1:-1;;;13710:18:1;;;13703:31;13751:19;;22248:57:0;13553:223:1;22248:57:0;22340:10;-1:-1:-1;;;;;22340:19:0;;;;:58;;;22363:35;22380:5;22387:10;22363:16;:35::i;:::-;22318:164;;;;-1:-1:-1;;;22318:164:0;;11978:2:1;22318:164:0;;;11960:21:1;12017:2;11997:18;;;11990:30;12056:34;12036:18;;;12029:62;12127:26;12107:18;;;12100:54;12171:19;;22318:164:0;11950:246:1;22318:164:0;22495:21;22504:2;22508:7;22495:8;:21::i;:::-;22124:400;;;:::o;26188:162::-;26314:28;26324:4;26330:2;26334:7;26314:9;:28::i;26358:177::-;26488:39;26505:4;26511:2;26515:7;26488:39;;;;;;;;;;;;:16;:39::i;23767:82::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;23829:4:::1;:12:::0;23767:82::o;30229:120::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;30297:44:::1;30315:2;30319:21;30297:17;:44::i;:::-;30229:120:::0;:::o;25704:303::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;25786:9:::1;25781:115;25805:6;25801:1;:10;25781:115;;;25882:1;25866:13;;:17;;;;:::i;:::-;25841:43;::::0;-1:-1:-1;;;;;25841:43:0;::::1;::::0;25858:1:::1;::::0;25841:43:::1;::::0;25858:1;;25841:43:::1;25813:6;25818:1;25813:6:::0;::::1;:::i;:::-;;;25781:115;;;-1:-1:-1::0;25918:13:0::1;::::0;25908:24:::1;::::0;;;:9:::1;:24;::::0;;;;:29;;-1:-1:-1;;;;;;25908:29:0::1;-1:-1:-1::0;;;;;25908:29:0;::::1;;::::0;;25948:17:::1;25908:29:::0;25958:6;25948:5:::1;:17::i;:::-;25993:6;25978:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;25704:303:0:o;28419:100::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;28493:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;28419:100:::0;:::o;24502:319::-;24566:7;24601:13;;24590:7;:24;24586:74;;-1:-1:-1;24646:1:0;;24502:319;-1:-1:-1;24502:319:0:o;24586:74::-;24685:7;24703:80;24715:1;24710:2;:6;:37;;;;-1:-1:-1;24745:1:0;24720:13;;;:9;:13;;;;;;-1:-1:-1;;;;;24720:13:0;:27;24710:37;24703:80;;;24764:7;24770:1;24764:7;;:::i;:::-;;;24703:80;;;24800:13;;;;:9;:13;;;;;;-1:-1:-1;;;;;24800:13:0;;24502:319;-1:-1:-1;;24502:319:0:o;23857:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;23929:15:::1;:24:::0;;-1:-1:-1;;23929:24:0::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;23857:104::o;21508:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20712:85::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;20787:1:::1;20771:18:::0;;-1:-1:-1;;;;;;20771:18:0::1;::::0;;20712:85::o;24174:110::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;24228:11:::1;:18:::0;;-1:-1:-1;;24257:19:0;24228:18;24257:19;;;24174:110::o;22029:87::-;22068:13;22101:7;22094:14;;;;;:::i;24829:867::-;24946:15;;24922:10;24909:24;;;;:12;:24;;;;;;24946:15;;;;;;;24909:33;;24936:6;;24909:33;:::i;:::-;:52;;24887:118;;;;-1:-1:-1;;;24887:118:0;;10499:2:1;24887:118:0;;;10481:21:1;10538:2;10518:18;;;10511:30;-1:-1:-1;;;10557:18:1;;;10550:46;10613:18;;24887:118:0;10471:166:1;24887:118:0;25024:11;;;;;;;;:26;;-1:-1:-1;25039:11:0;;;;;;;25024:26;25016:55;;;;-1:-1:-1;;;25016:55:0;;13983:2:1;25016:55:0;;;13965:21:1;14022:2;14002:18;;;13995:30;-1:-1:-1;;;14041:18:1;;;14034:46;14097:18;;25016:55:0;13955:166:1;25016:55:0;25114:13;;25090:11;;25114:13;;;;;25090:20;;25104:6;;25090:20;:::i;:::-;:37;;25082:64;;;;-1:-1:-1;;;25082:64:0;;9802:2:1;25082:64:0;;;9784:21:1;9841:2;9821:18;;;9814:30;-1:-1:-1;;;9860:18:1;;;9853:44;9914:18;;25082:64:0;9774:164:1;25082:64:0;25172:11;;25159:10;;25172:11;;;;;:31;;25199:4;;25172:31;;;25185:11;;25172:31;25159:44;-1:-1:-1;25216:17:0;25236:14;25244:6;25159:44;25236:14;:::i;:::-;25216:34;;25282:9;25269;:22;;25261:55;;;;-1:-1:-1;;;25261:55:0;;12403:2:1;25261:55:0;;;12385:21:1;12442:2;12422:18;;;12415:30;-1:-1:-1;;;12461:18:1;;;12454:50;12521:18;;25261:55:0;12375:170:1;25261:55:0;25345:9;25333;:21;25329:105;;;25379:10;25371:51;25400:21;25412:9;25400;:21;:::i;:::-;25371:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25329:105;25451:9;25446:123;25470:6;25466:1;:10;25446:123;;;25555:1;25539:13;;:17;;;;:::i;:::-;25506:51;;25527:10;;25523:1;;25506:51;;25523:1;;25506:51;25478:6;25483:1;25478:6;;:::i;:::-;;;25446:123;;;-1:-1:-1;25591:13:0;;25581:24;;;;:9;:24;;;;;:37;;-1:-1:-1;;;;;;25581:37:0;25608:10;25581:37;;;;;;25629:25;;25647:6;25629:5;:25::i;:::-;25682:6;25667:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;24829:867:0:o;22854:185::-;22981:50;23000:10;23012:8;23022;22981:18;:50::i;24087:79::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;24139:11:::1;:19:::0;;-1:-1:-1;;24139:19:0::1;::::0;;24087:79::o;28862:71::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;28910:8:::1;:15:::0;;-1:-1:-1;;28910:15:0::1;28921:4;28910:15;::::0;;28862:71::o;21536:27::-;;;;;;;:::i;26543:336::-;26702:28;26712:4;26718:2;26722:7;26702:9;:28::i;:::-;26748:48;26771:4;26777:2;26781:7;26790:5;26748:22;:48::i;:::-;26743:129;;26820:40;;-1:-1:-1;;;26820:40:0;;;;;;;;;;;26743:129;26543:336;;;;:::o;21570:27::-;;;;;;;:::i;27751:660::-;27807:13;27866:11;;27855:7;:22;;27833:119;;;;-1:-1:-1;;;27833:119:0;;13165:2:1;27833:119:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:45;13349:19;;27833:119:0;13137:237:1;27833:119:0;27969:8;;;;27965:70;;28010:13;28003:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27751:660;;;:::o;27965:70::-;28047:28;28078:7;28047:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28147:1;28122:14;28116:28;:32;:287;;;;;;;;;;;;;;;;;28240:14;28281:18;:7;:16;:18::i;:::-;28326:13;28197:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28116:287;28096:307;27751:660;-1:-1:-1;;;27751:660:0:o;28751:103::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;28823:13:::1;:23:::0;;-1:-1:-1;;28823:23:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;28751:103::o;28639:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;28715:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23047:214::-:0;-1:-1:-1;;;;;23218:25:0;;;23189:4;23218:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23047:214::o;20603:101::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;20679:5:::1;:17:::0;;-1:-1:-1;;;;;;20679:17:0::1;-1:-1:-1::0;;;;;20679:17:0;;;::::1;::::0;;;::::1;::::0;;20603:101::o;28527:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;28603:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;30357:153::-:0;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;30463:38:::1;::::0;-1:-1:-1;;;30463:38:0;;30495:4:::1;30463:38;::::0;::::1;8350:51:1::0;-1:-1:-1;;;;;30436:22:0;::::1;::::0;::::1;::::0;30459:2;;30436:22;;30463:23:::1;::::0;8323:18:1;;30463:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30436:66;::::0;-1:-1:-1;;;;;;30436:66:0::1;::::0;;;;;;-1:-1:-1;;;;;9097:32:1;;;30436:66:0::1;::::0;::::1;9079:51:1::0;9146:18;;;9139:34;9052:18;;30436:66:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23269:167::-:0;23344:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;23344:29:0;-1:-1:-1;;;;;23344:29:0;;;;;;;;:24;;23398:16;23344:24;23398:7;:16::i;:::-;-1:-1:-1;;;;;23389:39:0;;;;;;;;;;;23269:167;;:::o;26887:856::-;27003:16;27022;27030:7;27022;:16::i;:::-;27003:35;;27067:2;-1:-1:-1;;;;;27059:10:0;:4;-1:-1:-1;;;;;27059:10:0;;;27051:54;;;;-1:-1:-1;;;27051:54:0;;15019:2:1;27051:54:0;;;15001:21:1;15058:2;15038:18;;;15031:30;15097:33;15077:18;;;15070:61;15148:18;;27051:54:0;14991:181:1;27051:54:0;27132:8;-1:-1:-1;;;;;27124:16:0;:4;-1:-1:-1;;;;;27124:16:0;;27116:49;;;;-1:-1:-1;;;27116:49:0;;11629:2:1;27116:49:0;;;11611:21:1;11668:2;11648:18;;;11641:30;-1:-1:-1;;;11687:18:1;;;11680:50;11747:18;;27116:49:0;11601:170:1;27116:49:0;27198:10;-1:-1:-1;;;;;27198:22:0;;;;:81;;;27241:38;27258:8;27268:10;27241:16;:38::i;:::-;27198:136;;;-1:-1:-1;27324:10:0;27300:20;27312:7;27300:11;:20::i;:::-;-1:-1:-1;;;;;27300:34:0;;27198:136;27176:199;;;;-1:-1:-1;;;27176:199:0;;14677:2:1;27176:199:0;;;14659:21:1;14716:2;14696:18;;;14689:30;-1:-1:-1;;;14735:18:1;;;14728:43;14788:18;;27176:199:0;14649:163:1;27176:199:0;27388:29;27405:1;27409:7;27388:8;:29::i;:::-;27430:18;;;;:9;:18;;;;;:23;;-1:-1:-1;;;;;;27430:23:0;-1:-1:-1;;;;;27430:23:0;;;;;27483:11;27430:18;-1:-1:-1;27483:11:0;:::i;:::-;27540:1;27511:17;;;:9;:17;;;;;;27466:28;;-1:-1:-1;;;;;;27511:17:0;:31;:57;;;;;27555:13;;27546:6;:22;27511:57;27507:118;;;27585:17;;;;:9;:17;;;;;:28;;-1:-1:-1;;;;;;27585:28:0;-1:-1:-1;;;;;27585:28:0;;;;;27507:118;-1:-1:-1;;;;;27637:19:0;;;;;;:9;:19;;;;;:24;;27660:1;;27637:19;:24;;27660:1;;27637:24;:::i;:::-;;;;-1:-1:-1;;;;;;;27672:13:0;;;;;;:9;:13;;;;;:18;;27689:1;;27672:13;:18;;27689:1;;27672:18;:::i;:::-;;;;-1:-1:-1;;27708:27:0;;27727:7;;-1:-1:-1;;;;;27708:27:0;;;;;;;;;;;;;26887:856;;;;;:::o;4657:317::-;4772:6;4747:21;:31;;4739:73;;;;-1:-1:-1;;;4739:73:0;;11271:2:1;4739:73:0;;;11253:21:1;11310:2;11290:18;;;11283:30;11349:31;11329:18;;;11322:59;11398:18;;4739:73:0;11243:179:1;4739:73:0;4826:12;4844:9;-1:-1:-1;;;;;4844:14:0;4866:6;4844:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4825:52;;;4896:7;4888:78;;;;-1:-1:-1;;;4888:78:0;;10844:2:1;4888:78:0;;;10826:21:1;10883:2;10863:18;;;10856:30;10922:34;10902:18;;;10895:62;10993:28;10973:18;;;10966:56;11039:19;;4888:78:0;10816:248:1;26015:165:0;-1:-1:-1;;;;;26078:13:0;;;;;;:9;:13;;;;;:23;;26095:6;;26078:13;:23;;26095:6;;26078:23;:::i;:::-;;;;-1:-1:-1;;;;;;;26112:16:0;;;;;;:12;:16;;;;;:26;;26132:6;;26112:16;:26;;26132:6;;26112:26;:::i;:::-;;;;;;;;26166:6;26149:13;;:23;;;;;;;:::i;23444:315::-;23599:8;-1:-1:-1;;;;;23590:17:0;:5;-1:-1:-1;;;;;23590:17:0;;;23582:55;;;;-1:-1:-1;;;23582:55:0;;10145:2:1;23582:55:0;;;10127:21:1;10184:2;10164:18;;;10157:30;10223:27;10203:18;;;10196:55;10268:18;;23582:55:0;10117:175:1;23582:55:0;-1:-1:-1;;;;;23648:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;23648:46:0;;;;;;;;;;23710:41;;9324::1;;;23710::0;;9297:18:1;23710:41:0;;;;;;;23444:315;;;:::o;29300:921::-;29455:4;-1:-1:-1;;;;;29476:13:0;;3691:19;:23;29472:742;;29529:173;;-1:-1:-1;;;29529:173:0;;-1:-1:-1;;;;;29529:36:0;;;;;:173;;29588:10;;29621:4;;29648:7;;29678:5;;29529:173;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29529:173:0;;;;;;;;-1:-1:-1;;29529:173:0;;;;;;;;;;;;:::i;:::-;;;29508:651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29889:13:0;;29885:259;;29939:40;;-1:-1:-1;;;29939:40:0;;;;;;;;;;;29885:259;30094:6;30088:13;30079:6;30075:2;30071:15;30064:38;29508:651;-1:-1:-1;;;;;;29766:55:0;-1:-1:-1;;;29766:55:0;;-1:-1:-1;29759:62:0;;29472:742;-1:-1:-1;30198:4:0;29472:742;29300:921;;;;;;:::o;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;-1:-1:-1;;;904:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;-1:-1:-1;;;992:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:392::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3215:30;3174:32;3215:30;:::i;3282:325::-;3350:6;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:2;;;3432:6;3424;3417:22;3379:2;3476:9;3463:23;3495:31;3520:5;3495:31;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3369:238:1:o;3612:255::-;3679:6;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3753:6;3745;3738:22;3700:2;3790:9;3784:16;3809:28;3831:5;3809:28;:::i;3872:255::-;3930:6;3983:2;3971:9;3962:7;3958:23;3954:32;3951:2;;;4004:6;3996;3989:22;3951:2;4048:9;4035:23;4067:30;4091:5;4067:30;:::i;4132:259::-;4201:6;4254:2;4242:9;4233:7;4229:23;4225:32;4222:2;;;4275:6;4267;4260:22;4222:2;4312:9;4306:16;4331:30;4355:5;4331:30;:::i;4396:480::-;4465:6;4518:2;4506:9;4497:7;4493:23;4489:32;4486:2;;;4539:6;4531;4524:22;4486:2;4584:9;4571:23;4617:18;4609:6;4606:30;4603:2;;;4654:6;4646;4639:22;4603:2;4682:22;;4735:4;4727:13;;4723:27;-1:-1:-1;4713:2:1;;4769:6;4761;4754:22;4713:2;4797:73;4862:7;4857:2;4844:16;4839:2;4835;4831:11;4797:73;:::i;4881:292::-;4939:6;4992:2;4980:9;4971:7;4967:23;4963:32;4960:2;;;5013:6;5005;4998:22;4960:2;5057:9;5044:23;5107:6;5100:5;5096:18;5089:5;5086:29;5076:2;;5134:6;5126;5119:22;5178:190;5237:6;5290:2;5278:9;5269:7;5265:23;5261:32;5258:2;;;5311:6;5303;5296:22;5258:2;-1:-1:-1;5339:23:1;;5248:120;-1:-1:-1;5248:120:1:o;5373:194::-;5443:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:2;;;5517:6;5509;5502:22;5464:2;-1:-1:-1;5545:16:1;;5454:113;-1:-1:-1;5454:113:1:o;5572:325::-;5640:6;5648;5701:2;5689:9;5680:7;5676:23;5672:32;5669:2;;;5722:6;5714;5707:22;5669:2;5763:9;5750:23;5740:33;;5823:2;5812:9;5808:18;5795:32;5836:31;5861:5;5836:31;:::i;5902:289::-;5959:6;6012:2;6000:9;5991:7;5987:23;5983:32;5980:2;;;6033:6;6025;6018:22;5980:2;6077:9;6064:23;6127:4;6120:5;6116:16;6109:5;6106:27;6096:2;;6152:6;6144;6137:22;6196:257;6237:3;6275:5;6269:12;6302:6;6297:3;6290:19;6318:63;6374:6;6367:4;6362:3;6358:14;6351:4;6344:5;6340:16;6318:63;:::i;:::-;6435:2;6414:15;-1:-1:-1;;6410:29:1;6401:39;;;;6442:4;6397:50;;6245:208;-1:-1:-1;;6245:208:1:o;6458:1531::-;6682:3;6720:6;6714:13;6746:4;6759:51;6803:6;6798:3;6793:2;6785:6;6781:15;6759:51;:::i;:::-;6873:13;;6832:16;;;;6895:55;6873:13;6832:16;6917:15;;;6895:55;:::i;:::-;7041:13;;6972:20;;;7012:3;;7101:1;7123:18;;;;7176;;;;7203:2;;7281:4;7271:8;7267:19;7255:31;;7203:2;7344;7334:8;7331:16;7311:18;7308:40;7305:2;;;-1:-1:-1;;;7371:33:1;;7427:4;7424:1;7417:15;7457:4;7378:3;7445:17;7305:2;7488:18;7515:110;;;;7639:1;7634:330;;;;7481:483;;7515:110;-1:-1:-1;;7550:24:1;;7536:39;;7595:20;;;;-1:-1:-1;7515:110:1;;7634:330;15599:4;15618:17;;;15668:4;15652:21;;7729:3;7745:169;7759:8;7756:1;7753:15;7745:169;;;7841:14;;7826:13;;;7819:37;7884:16;;;;7776:10;;7745:169;;;7749:3;;7945:8;7938:5;7934:20;7927:27;;7481:483;-1:-1:-1;7980:3:1;;6690:1299;-1:-1:-1;;;;;;;;;;;6690:1299:1:o;8412:488::-;-1:-1:-1;;;;;8681:15:1;;;8663:34;;8733:15;;8728:2;8713:18;;8706:43;8780:2;8765:18;;8758:34;;;8828:3;8823:2;8808:18;;8801:31;;;8606:4;;8849:45;;8874:19;;8866:6;8849:45;:::i;:::-;8841:53;8615:285;-1:-1:-1;;;;;;8615:285:1:o;9376:219::-;9525:2;9514:9;9507:21;9488:4;9545:44;9585:2;9574:9;9570:18;9562:6;9545:44;:::i;14126:344::-;14328:2;14310:21;;;14367:2;14347:18;;;14340:30;-1:-1:-1;;;14401:2:1;14386:18;;14379:50;14461:2;14446:18;;14300:170::o;15684:128::-;15724:3;15755:1;15751:6;15748:1;15745:13;15742:2;;;15761:18;;:::i;:::-;-1:-1:-1;15797:9:1;;15732:80::o;15817:120::-;15857:1;15883;15873:2;;15888:18;;:::i;:::-;-1:-1:-1;15922:9:1;;15863:74::o;15942:168::-;15982:7;16048:1;16044;16040:6;16036:14;16033:1;16030:21;16025:1;16018:9;16011:17;16007:45;16004:2;;;16055:18;;:::i;:::-;-1:-1:-1;16095:9:1;;15994:116::o;16115:125::-;16155:4;16183:1;16180;16177:8;16174:2;;;16188:18;;:::i;:::-;-1:-1:-1;16225:9:1;;16164:76::o;16245:258::-;16317:1;16327:113;16341:6;16338:1;16335:13;16327:113;;;16417:11;;;16411:18;16398:11;;;16391:39;16363:2;16356:10;16327:113;;;16458:6;16455:1;16452:13;16449:2;;;-1:-1:-1;;16493:1:1;16475:16;;16468:27;16298:205::o;16508:380::-;16587:1;16583:12;;;;16630;;;16651:2;;16705:4;16697:6;16693:17;16683:27;;16651:2;16758;16750:6;16747:14;16727:18;16724:38;16721:2;;;16804:10;16799:3;16795:20;16792:1;16785:31;16839:4;16836:1;16829:15;16867:4;16864:1;16857:15;16721:2;;16563:325;;;:::o;16893:135::-;16932:3;-1:-1:-1;;16953:17:1;;16950:2;;;16973:18;;:::i;:::-;-1:-1:-1;17020:1:1;17009:13;;16940:88::o;17033:112::-;17065:1;17091;17081:2;;17096:18;;:::i;:::-;-1:-1:-1;17130:9:1;;17071:74::o;17150:127::-;17211:10;17206:3;17202:20;17199:1;17192:31;17242:4;17239:1;17232:15;17266:4;17263:1;17256:15;17282:127;17343:10;17338:3;17334:20;17331:1;17324:31;17374:4;17371:1;17364:15;17398:4;17395:1;17388:15;17414:127;17475:10;17470:3;17466:20;17463:1;17456:31;17506:4;17503:1;17496:15;17530:4;17527:1;17520:15;17546:131;-1:-1:-1;;;;;17621:31:1;;17611:42;;17601:2;;17667:1;17664;17657:12;17682:118;17768:5;17761:13;17754:21;17747:5;17744:32;17734:2;;17790:1;17787;17780:12;17805:131;-1:-1:-1;;;;;;17879:32:1;;17869:43;;17859:2;;17926:1;17923;17916:12

Swarm Source

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