ETH Price: $2,929.51 (-4.50%)
Gas: 2 Gwei

Token

goontown (GOON)
 

Overview

Max Total Supply

2,935 GOON

Holders

1,451

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GOON
0x256c8582aeaac43291a7c7af8663c3e7dd009da3
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:
goontown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 400 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@  @@@@    *@@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@              .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@#   @@@@@@@@@   @@ /@@@@@@@@@@@@@@        @@      @@@@@@@@@@@@ /@@@    @@@@@ @@@@@   @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@*  @@@@@@@@@@@@  @@ @@@      @@@@@  @@@@@   @@  @@   @@@@@@@    #@@@@   @@@@@@@@      @@      @@@@@@@@@@@@@@@@@/@@@@@@@@@  @@@@@@@@@@  @@@@@@
//@@@@@@@@@@  @@@@@@@@@@@@@         @@@    # @@@@@@@@.  @@  (@@  @@@@@  @@@@@@@   @@@@@@@@    @@@@@@@@@   @@@@@@@  @@@@@@@@   @@@@@       @@@@@@  @@@@@@@@
//@@@@@@@@@@   @@@@@@@@@@@@      @@@@@@@@@@   @@@@@@@@@   @/  @@  @@@/   @@@@@@@@  @@@@@@@   .@@@@@@@@@@@@   @@@@@@  (@@@@@@  @@@@  @@@  @@@@@@  @@@@@@@@@
//@@@@@@@@@@@            ,@@@   @@@@@@@@@@@@   @@@@@@@@@  @@  @@@  @@@  @@@@@@@@   @@@@@@@@  @@@@@@@@@@@@@   @@@@@     @@@@@  @@@@  @@@@  @@@@   @@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@%  @@@@@@@@@@@@@  % @@@@@@  @@@  @@@@  @@  &@@@@@@@    @@@@@@@@    @@@@@@@@@@ @   @@@*  @   @@@@. @@@  @@@@@@   @@  @@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@               @@  @@@@@    @@ @@@@@@@@@@@@@@@@@       @@@@@   @@@   @@  @@     @@  @@@   @@@@@@  @  @@@@@@@@@@@
//@@@@@@@@@@ %@@@@@@@@@@@@@@      @@@@@@@  &@@( @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@           @@@@@    @@@@@@@    @@   @@@@@@@@   @@@@@@@@@@@@
//@@@@@@@@@@@@      .@@@@@@  @@@           @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@         %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: goontown-contract.sol



pragma solidity ^0.8.0;

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

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

    bool private _paused;

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

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

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

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

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

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

// Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.0;

contract goontown is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxFree = 3000;
    uint256 public maxperAddressFreeLimit = 2;
    uint256 public maxperTransactionPublicMint = 3;
    uint256 public maxperAddress = 5;

    mapping(address => uint256) public addressFreeMintedBalance;
    mapping(address => uint256) public addressPublicMintedBalance;

    constructor() ERC721A("goontown", "GOON") {
        setBaseURI("");

    }

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

    function MintFree(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        uint256 addressPublicMintedCount = addressPublicMintedBalance[msg.sender];

        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Only 2 for free per wallet, don't be greedy!");
		require(_mintAmount > 0, "You must mint more than 0" );
		require(s + _mintAmount <= maxFree, "All free goons are gone, use mint() function now");
        require(addressFreeMintedCount + addressPublicMintedCount + _mintAmount <= maxperAddress, "Only a max of 5 per wallet, don't be greedy!");

		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;
		}
        
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
        delete addressPublicMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        uint256 addressPublicMintedCount = addressPublicMintedBalance[msg.sender];

        require(_mintAmount > 0, "You must mint more than 0.");
        require(_mintAmount <= maxperTransactionPublicMint, "You can only max mint 3 per transaction." );
        require(s + _mintAmount <= maxSupply, "Silly goon, you cant go over supply");
        require(msg.value >= cost * _mintAmount);
        require(addressFreeMintedCount + addressPublicMintedCount + _mintAmount <= maxperAddress, "Only a max of 5 per wallet, don't be greedy!");

        for (uint256 i = 0; i < _mintAmount; ++i) {
            addressPublicMintedBalance[msg.sender]++;
		}
        
        _safeMint(msg.sender, _mintAmount);
        delete s;
        delete addressFreeMintedCount;
        delete addressPublicMintedCount;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
    
    function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
        maxFree = _newMaxFreeSupply;
    }

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

    function setMaxperTransactionPublicMint(uint256 _amount) public onlyOwner {
        maxperTransactionPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _amount;
    }
    
    function setMaxperAddress(uint256 _amount) public onlyOwner{
        maxperAddress = _amount;
    }

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

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicMintedBalance","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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperTransactionPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperTransactionPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526611c37937e08000600a55612710600b55610bb8600c556002600d556003600e556005600f553480156200003757600080fd5b50604080518082018252600881526733b7b7b73a37bbb760c11b60208083019182528351808501909452600484526323a7a7a760e11b9084015281519192916200008491600191620001b7565b5080516200009a906002906020840190620001b7565b505050620000b7620000b1620000e960201b60201c565b620000ed565b6007805460ff60a01b191690556001600855604080516020810190915260008152620000e3906200013f565b6200029a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200019e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b3906009906020840190620001b7565b5050565b828054620001c5906200025d565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b600181811c908216806200027257607f821691505b602082108114156200029457634e487b7160e01b600052602260045260246000fd5b50919050565b61297580620002aa6000396000f3fe6080604052600436106102555760003560e01c80636dbf3dcf11610149578063a22cb465116100c6578063c87b56dd1161008a578063dc4e66b511610064578063dc4e66b5146106c9578063e985e9c5146106e9578063f2fde38b1461073257600080fd5b8063c87b56dd14610673578063d5abeb0114610693578063db186bf8146106a957600080fd5b8063a22cb465146105ea578063ad6ac81b1461060a578063b88d4fde1461061d578063bde12d731461063d578063bf79bd471461065d57600080fd5b80637c6b172d1161010d5780637c6b172d146105575780638da5cb5b1461058457806395d89b41146105a257806396ea3a47146105b7578063a0712d68146105d757600080fd5b80636dbf3dcf146104d957806370a08231146104ef578063715018a61461050f57806377abef011461052457806377ad99f01461054457600080fd5b80633ccfd60b116101d757806355f804b31161019b57806355f804b31461044f57806356569a1d1461046f5780635c975abb146104855780636352211e146104a45780636c0360eb146104c457600080fd5b80633ccfd60b146103d157806342842e0e146103d957806344a0d68a146103f9578063485a68a3146104195780634f6ccce71461042f57600080fd5b806313faede61161021e57806313faede61461034657806318160ddd1461035c578063228025e81461037157806323b872dd146103915780632f745c59146103b157600080fd5b80624e51041461025a57806301ffc9a71461029a57806306fdde03146102ca578063081812fc146102ec578063095ea7b314610324575b600080fd5b34801561026657600080fd5b5061028761027536600461242e565b60116020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156102a657600080fd5b506102ba6102b5366004612606565b610752565b6040519015158152602001610291565b3480156102d657600080fd5b506102df6107bf565b6040516102919190612749565b3480156102f857600080fd5b5061030c610307366004612689565b610851565b6040516001600160a01b039091168152602001610291565b34801561033057600080fd5b5061034461033f366004612570565b6108e1565b005b34801561035257600080fd5b50610287600a5481565b34801561036857600080fd5b50600054610287565b34801561037d57600080fd5b5061034461038c366004612689565b6109f9565b34801561039d57600080fd5b506103446103ac36600461247c565b610a98565b3480156103bd57600080fd5b506102876103cc366004612570565b610aa3565b610344610c00565b3480156103e557600080fd5b506103446103f436600461247c565b610ca0565b34801561040557600080fd5b50610344610414366004612689565b610cbb565b34801561042557600080fd5b50610287600c5481565b34801561043b57600080fd5b5061028761044a366004612689565b610d08565b34801561045b57600080fd5b5061034461046a366004612640565b610d6a565b34801561047b57600080fd5b50610287600d5481565b34801561049157600080fd5b50600754600160a01b900460ff166102ba565b3480156104b057600080fd5b5061030c6104bf366004612689565b610dc9565b3480156104d057600080fd5b506102df610ddb565b3480156104e557600080fd5b50610287600e5481565b3480156104fb57600080fd5b5061028761050a36600461242e565b610e69565b34801561051b57600080fd5b50610344610efa565b34801561053057600080fd5b5061034461053f366004612689565b610f4e565b610344610552366004612689565b610f9b565b34801561056357600080fd5b5061028761057236600461242e565b60106020526000908152604090205481565b34801561059057600080fd5b506007546001600160a01b031661030c565b3480156105ae57600080fd5b506102df611038565b3480156105c357600080fd5b506103446105d236600461259a565b611047565b6103446105e5366004612689565b6111ee565b3480156105f657600080fd5b50610344610605366004612534565b611464565b610344610618366004612689565b611529565b34801561062957600080fd5b506103446106383660046124b8565b61178c565b34801561064957600080fd5b50610344610658366004612689565b6117c5565b34801561066957600080fd5b50610287600f5481565b34801561067f57600080fd5b506102df61068e366004612689565b611812565b34801561069f57600080fd5b50610287600b5481565b3480156106b557600080fd5b506103446106c4366004612689565b6118d1565b3480156106d557600080fd5b506103446106e4366004612689565b61191e565b3480156106f557600080fd5b506102ba610704366004612449565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b5061034461074d36600461242e565b61196b565b60006001600160e01b031982166380ac58cd60e01b148061078357506001600160e01b03198216635b5e139f60e01b145b8061079e57506001600160e01b0319821663780e9d6360e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ce90612847565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90612847565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085e826000541190565b6108c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108ec82610dc9565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108bc565b336001600160a01b038216148061097757506109778133610704565b6109e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108bc565b6109f4838383611a21565b505050565b6007546001600160a01b03163314610a415760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600b54811115610a935760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c7900000000000060448201526064016108bc565b600b55565b6109f4838383611a7d565b6000610aae83610e69565b8210610b075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108bc565b600080549080805b83811015610ba0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6257805192505b876001600160a01b0316836001600160a01b03161415610b975786841415610b90575093506107b992505050565b6001909301925b50600101610b0f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108bc565b6007546001600160a01b03163314610c485760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b604051600090339047908381818185875af1925050503d8060008114610c8a576040519150601f19603f3d011682016040523d82523d6000602084013e610c8f565b606091505b5050905080610c9d57600080fd5b50565b6109f48383836040518060200160405280600081525061178c565b6007546001600160a01b03163314610d035760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600a55565b600080548210610d665760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108bc565b5090565b6007546001600160a01b03163314610db25760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b8051610dc59060099060208401906122c0565b5050565b6000610dd482611d76565b5192915050565b60098054610de890612847565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612847565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60006001600160a01b038216610ed55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f425760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b610f4c6000611e4d565b565b6007546001600160a01b03163314610f965760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600e55565b6007546001600160a01b03163314610fe35760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b604051600090339083908381818185875af1925050503d8060008114611025576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b606091505b5050905080610dc557600080fd5b6060600280546107ce90612847565b6007546001600160a01b0316331461108f5760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b8281146110e85760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016108bc565b6000806110f460005490565b905060005b8581101561113757868682818110611113576111136128dd565b905060200201358361112591906127b9565b925061113081612882565b90506110f9565b50600b5461114583836127b9565b111561117e5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016108bc565b6000915060005b838110156111e5576111d58585838181106111a2576111a26128dd565b90506020020160208101906111b7919061242e565b8888848181106111c9576111c96128dd565b90506020020135611e9f565b6111de81612882565b9050611185565b50505050505050565b600260085414156112415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b60026008556000805433825260106020908152604080842054601190925290922054909190836112b35760405162461bcd60e51b815260206004820152601a60248201527f596f75206d757374206d696e74206d6f7265207468616e20302e00000000000060448201526064016108bc565b600e548411156113165760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c79206d6178206d696e74203320706572207472616e60448201526739b0b1ba34b7b71760c11b60648201526084016108bc565b600b5461132385856127b9565b111561137d5760405162461bcd60e51b815260206004820152602360248201527f53696c6c7920676f6f6e2c20796f752063616e7420676f206f76657220737570604482015262706c7960e81b60648201526084016108bc565b83600a5461138b91906127e5565b34101561139757600080fd5b600f54846113a583856127b9565b6113af91906127b9565b11156114125760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792061206d6178206f662035207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b60005b8481101561144e5733600090815260116020526040812080549161143883612882565b91905055508061144790612882565b9050611415565b506114593385611e9f565b505060016008555050565b6001600160a01b0382163314156114bd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600854141561157c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b60026008556000805433825260106020908152604080842054601190925290922054600d549192916115ae85846127b9565b11156116115760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79203220666f722066726565207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b600084116116615760405162461bcd60e51b815260206004820152601960248201527f596f75206d757374206d696e74206d6f7265207468616e20300000000000000060448201526064016108bc565b600c5461166e85856127b9565b11156116d55760405162461bcd60e51b815260206004820152603060248201527f416c6c206672656520676f6f6e732061726520676f6e652c20757365206d696e60448201526f7428292066756e6374696f6e206e6f7760801b60648201526084016108bc565b600f54846116e383856127b9565b6116ed91906127b9565b11156117505760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792061206d6178206f662035207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b60005b8481101561144e5733600090815260106020526040812080549161177683612882565b91905055508061178590612882565b9050611753565b611797848484611a7d565b6117a384848484611eb9565b6117bf5760405162461bcd60e51b81526004016108bc9061275c565b50505050565b6007546001600160a01b0316331461180d5760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600c55565b606061181f826000541190565b6118755760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016108bc565b600061187f611fc7565b9050600081511161189f57604051806020016040528060008152506118ca565b806118a984611fd6565b6040516020016118ba9291906126ce565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146119195760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600f55565b6007546001600160a01b031633146119665760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600d55565b6007546001600160a01b031633146119b35760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b6001600160a01b038116611a185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bc565b610c9d81611e4d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a8882611d76565b80519091506000906001600160a01b0316336001600160a01b03161480611abf575033611ab484610851565b6001600160a01b0316145b80611ad157508151611ad19033610704565b905080611b465760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108bc565b846001600160a01b031682600001516001600160a01b031614611bba5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108bc565b6001600160a01b038416611c1e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108bc565b611c2e6000848460000151611a21565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611d2c57611cdf816000541190565b15611d2c578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611d95826000541190565b611df45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108bc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e43579392505050565b5060001901611df6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dc58282604051806020016040528060008152506120ec565b60006001600160a01b0384163b15611fbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611efd90339089908890889060040161270d565b602060405180830381600087803b158015611f1757600080fd5b505af1925050508015611f47575060408051601f3d908101601f19168201909252611f4491810190612623565b60015b611fa1573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051611f995760405162461bcd60e51b81526004016108bc9061275c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbf565b5060015b949350505050565b6060600980546107ce90612847565b606081611ffa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612024578061200e81612882565b915061201d9050600a836127d1565b9150611ffe565b60008167ffffffffffffffff81111561203f5761203f6128f3565b6040519080825280601f01601f191660200182016040528015612069576020820181803683370190505b5090505b8415611fbf5761207e600183612804565b915061208b600a8661289d565b6120969060306127b9565b60f81b8183815181106120ab576120ab6128dd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506120e5600a866127d1565b945061206d565b6109f483838360016000546001600160a01b0385166121575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108bc565b836121b55760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108bc565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156122b75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156122ab5761228f6000888488611eb9565b6122ab5760405162461bcd60e51b81526004016108bc9061275c565b6001918201910161223c565b50600055611d6f565b8280546122cc90612847565b90600052602060002090601f0160209004810192826122ee5760008555612334565b82601f1061230757805160ff1916838001178555612334565b82800160010185558215612334579182015b82811115612334578251825591602001919060010190612319565b50610d669291505b80821115610d66576000815560010161233c565b600067ffffffffffffffff8084111561236b5761236b6128f3565b604051601f8501601f19908116603f01168101908282118183101715612393576123936128f3565b816040528093508581528686860111156123ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123dd57600080fd5b919050565b60008083601f8401126123f457600080fd5b50813567ffffffffffffffff81111561240c57600080fd5b6020830191508360208260051b850101111561242757600080fd5b9250929050565b60006020828403121561244057600080fd5b6118ca826123c6565b6000806040838503121561245c57600080fd5b612465836123c6565b9150612473602084016123c6565b90509250929050565b60008060006060848603121561249157600080fd5b61249a846123c6565b92506124a8602085016123c6565b9150604084013590509250925092565b600080600080608085870312156124ce57600080fd5b6124d7856123c6565b93506124e5602086016123c6565b925060408501359150606085013567ffffffffffffffff81111561250857600080fd5b8501601f8101871361251957600080fd5b61252887823560208401612350565b91505092959194509250565b6000806040838503121561254757600080fd5b612550836123c6565b91506020830135801515811461256557600080fd5b809150509250929050565b6000806040838503121561258357600080fd5b61258c836123c6565b946020939093013593505050565b600080600080604085870312156125b057600080fd5b843567ffffffffffffffff808211156125c857600080fd5b6125d4888389016123e2565b909650945060208701359150808211156125ed57600080fd5b506125fa878288016123e2565b95989497509550505050565b60006020828403121561261857600080fd5b81356118ca81612909565b60006020828403121561263557600080fd5b81516118ca81612909565b60006020828403121561265257600080fd5b813567ffffffffffffffff81111561266957600080fd5b8201601f8101841361267a57600080fd5b611fbf84823560208401612350565b60006020828403121561269b57600080fd5b5035919050565b600081518084526126ba81602086016020860161281b565b601f01601f19169290920160200192915050565b600083516126e081846020880161281b565b8351908301906126f481836020880161281b565b64173539b7b760d91b9101908152600501949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261273f60808301846126a2565b9695505050505050565b6020815260006118ca60208301846126a2565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b600082198211156127cc576127cc6128b1565b500190565b6000826127e0576127e06128c7565b500490565b60008160001904831182151516156127ff576127ff6128b1565b500290565b600082821015612816576128166128b1565b500390565b60005b8381101561283657818101518382015260200161281e565b838111156117bf5750506000910152565b600181811c9082168061285b57607f821691505b6020821081141561287c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612896576128966128b1565b5060010190565b6000826128ac576128ac6128c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d913f84bee90a83b105aadcc020d2df281c31f2ed86f8ec04c1d295e55cb064f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636dbf3dcf11610149578063a22cb465116100c6578063c87b56dd1161008a578063dc4e66b511610064578063dc4e66b5146106c9578063e985e9c5146106e9578063f2fde38b1461073257600080fd5b8063c87b56dd14610673578063d5abeb0114610693578063db186bf8146106a957600080fd5b8063a22cb465146105ea578063ad6ac81b1461060a578063b88d4fde1461061d578063bde12d731461063d578063bf79bd471461065d57600080fd5b80637c6b172d1161010d5780637c6b172d146105575780638da5cb5b1461058457806395d89b41146105a257806396ea3a47146105b7578063a0712d68146105d757600080fd5b80636dbf3dcf146104d957806370a08231146104ef578063715018a61461050f57806377abef011461052457806377ad99f01461054457600080fd5b80633ccfd60b116101d757806355f804b31161019b57806355f804b31461044f57806356569a1d1461046f5780635c975abb146104855780636352211e146104a45780636c0360eb146104c457600080fd5b80633ccfd60b146103d157806342842e0e146103d957806344a0d68a146103f9578063485a68a3146104195780634f6ccce71461042f57600080fd5b806313faede61161021e57806313faede61461034657806318160ddd1461035c578063228025e81461037157806323b872dd146103915780632f745c59146103b157600080fd5b80624e51041461025a57806301ffc9a71461029a57806306fdde03146102ca578063081812fc146102ec578063095ea7b314610324575b600080fd5b34801561026657600080fd5b5061028761027536600461242e565b60116020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156102a657600080fd5b506102ba6102b5366004612606565b610752565b6040519015158152602001610291565b3480156102d657600080fd5b506102df6107bf565b6040516102919190612749565b3480156102f857600080fd5b5061030c610307366004612689565b610851565b6040516001600160a01b039091168152602001610291565b34801561033057600080fd5b5061034461033f366004612570565b6108e1565b005b34801561035257600080fd5b50610287600a5481565b34801561036857600080fd5b50600054610287565b34801561037d57600080fd5b5061034461038c366004612689565b6109f9565b34801561039d57600080fd5b506103446103ac36600461247c565b610a98565b3480156103bd57600080fd5b506102876103cc366004612570565b610aa3565b610344610c00565b3480156103e557600080fd5b506103446103f436600461247c565b610ca0565b34801561040557600080fd5b50610344610414366004612689565b610cbb565b34801561042557600080fd5b50610287600c5481565b34801561043b57600080fd5b5061028761044a366004612689565b610d08565b34801561045b57600080fd5b5061034461046a366004612640565b610d6a565b34801561047b57600080fd5b50610287600d5481565b34801561049157600080fd5b50600754600160a01b900460ff166102ba565b3480156104b057600080fd5b5061030c6104bf366004612689565b610dc9565b3480156104d057600080fd5b506102df610ddb565b3480156104e557600080fd5b50610287600e5481565b3480156104fb57600080fd5b5061028761050a36600461242e565b610e69565b34801561051b57600080fd5b50610344610efa565b34801561053057600080fd5b5061034461053f366004612689565b610f4e565b610344610552366004612689565b610f9b565b34801561056357600080fd5b5061028761057236600461242e565b60106020526000908152604090205481565b34801561059057600080fd5b506007546001600160a01b031661030c565b3480156105ae57600080fd5b506102df611038565b3480156105c357600080fd5b506103446105d236600461259a565b611047565b6103446105e5366004612689565b6111ee565b3480156105f657600080fd5b50610344610605366004612534565b611464565b610344610618366004612689565b611529565b34801561062957600080fd5b506103446106383660046124b8565b61178c565b34801561064957600080fd5b50610344610658366004612689565b6117c5565b34801561066957600080fd5b50610287600f5481565b34801561067f57600080fd5b506102df61068e366004612689565b611812565b34801561069f57600080fd5b50610287600b5481565b3480156106b557600080fd5b506103446106c4366004612689565b6118d1565b3480156106d557600080fd5b506103446106e4366004612689565b61191e565b3480156106f557600080fd5b506102ba610704366004612449565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b5061034461074d36600461242e565b61196b565b60006001600160e01b031982166380ac58cd60e01b148061078357506001600160e01b03198216635b5e139f60e01b145b8061079e57506001600160e01b0319821663780e9d6360e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107ce90612847565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90612847565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b5050505050905090565b600061085e826000541190565b6108c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108ec82610dc9565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108bc565b336001600160a01b038216148061097757506109778133610704565b6109e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108bc565b6109f4838383611a21565b505050565b6007546001600160a01b03163314610a415760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600b54811115610a935760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c7900000000000060448201526064016108bc565b600b55565b6109f4838383611a7d565b6000610aae83610e69565b8210610b075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108bc565b600080549080805b83811015610ba0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6257805192505b876001600160a01b0316836001600160a01b03161415610b975786841415610b90575093506107b992505050565b6001909301925b50600101610b0f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108bc565b6007546001600160a01b03163314610c485760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b604051600090339047908381818185875af1925050503d8060008114610c8a576040519150601f19603f3d011682016040523d82523d6000602084013e610c8f565b606091505b5050905080610c9d57600080fd5b50565b6109f48383836040518060200160405280600081525061178c565b6007546001600160a01b03163314610d035760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600a55565b600080548210610d665760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108bc565b5090565b6007546001600160a01b03163314610db25760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b8051610dc59060099060208401906122c0565b5050565b6000610dd482611d76565b5192915050565b60098054610de890612847565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612847565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60006001600160a01b038216610ed55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f425760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b610f4c6000611e4d565b565b6007546001600160a01b03163314610f965760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600e55565b6007546001600160a01b03163314610fe35760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b604051600090339083908381818185875af1925050503d8060008114611025576040519150601f19603f3d011682016040523d82523d6000602084013e61102a565b606091505b5050905080610dc557600080fd5b6060600280546107ce90612847565b6007546001600160a01b0316331461108f5760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b8281146110e85760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b60648201526084016108bc565b6000806110f460005490565b905060005b8581101561113757868682818110611113576111136128dd565b905060200201358361112591906127b9565b925061113081612882565b90506110f9565b50600b5461114583836127b9565b111561117e5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b60448201526064016108bc565b6000915060005b838110156111e5576111d58585838181106111a2576111a26128dd565b90506020020160208101906111b7919061242e565b8888848181106111c9576111c96128dd565b90506020020135611e9f565b6111de81612882565b9050611185565b50505050505050565b600260085414156112415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b60026008556000805433825260106020908152604080842054601190925290922054909190836112b35760405162461bcd60e51b815260206004820152601a60248201527f596f75206d757374206d696e74206d6f7265207468616e20302e00000000000060448201526064016108bc565b600e548411156113165760405162461bcd60e51b815260206004820152602860248201527f596f752063616e206f6e6c79206d6178206d696e74203320706572207472616e60448201526739b0b1ba34b7b71760c11b60648201526084016108bc565b600b5461132385856127b9565b111561137d5760405162461bcd60e51b815260206004820152602360248201527f53696c6c7920676f6f6e2c20796f752063616e7420676f206f76657220737570604482015262706c7960e81b60648201526084016108bc565b83600a5461138b91906127e5565b34101561139757600080fd5b600f54846113a583856127b9565b6113af91906127b9565b11156114125760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792061206d6178206f662035207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b60005b8481101561144e5733600090815260116020526040812080549161143883612882565b91905055508061144790612882565b9050611415565b506114593385611e9f565b505060016008555050565b6001600160a01b0382163314156114bd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600854141561157c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bc565b60026008556000805433825260106020908152604080842054601190925290922054600d549192916115ae85846127b9565b11156116115760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79203220666f722066726565207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b600084116116615760405162461bcd60e51b815260206004820152601960248201527f596f75206d757374206d696e74206d6f7265207468616e20300000000000000060448201526064016108bc565b600c5461166e85856127b9565b11156116d55760405162461bcd60e51b815260206004820152603060248201527f416c6c206672656520676f6f6e732061726520676f6e652c20757365206d696e60448201526f7428292066756e6374696f6e206e6f7760801b60648201526084016108bc565b600f54846116e383856127b9565b6116ed91906127b9565b11156117505760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792061206d6178206f662035207065722077616c6c65742c20646f6e2760448201526b74206265206772656564792160a01b60648201526084016108bc565b60005b8481101561144e5733600090815260106020526040812080549161177683612882565b91905055508061178590612882565b9050611753565b611797848484611a7d565b6117a384848484611eb9565b6117bf5760405162461bcd60e51b81526004016108bc9061275c565b50505050565b6007546001600160a01b0316331461180d5760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600c55565b606061181f826000541190565b6118755760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016108bc565b600061187f611fc7565b9050600081511161189f57604051806020016040528060008152506118ca565b806118a984611fd6565b6040516020016118ba9291906126ce565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146119195760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600f55565b6007546001600160a01b031633146119665760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b600d55565b6007546001600160a01b031633146119b35760405162461bcd60e51b8152602060048201819052602482015260008051602061292083398151915260448201526064016108bc565b6001600160a01b038116611a185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bc565b610c9d81611e4d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611a8882611d76565b80519091506000906001600160a01b0316336001600160a01b03161480611abf575033611ab484610851565b6001600160a01b0316145b80611ad157508151611ad19033610704565b905080611b465760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016108bc565b846001600160a01b031682600001516001600160a01b031614611bba5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108bc565b6001600160a01b038416611c1e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108bc565b611c2e6000848460000151611a21565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611d2c57611cdf816000541190565b15611d2c578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611d95826000541190565b611df45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108bc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e43579392505050565b5060001901611df6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dc58282604051806020016040528060008152506120ec565b60006001600160a01b0384163b15611fbb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611efd90339089908890889060040161270d565b602060405180830381600087803b158015611f1757600080fd5b505af1925050508015611f47575060408051601f3d908101601f19168201909252611f4491810190612623565b60015b611fa1573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051611f995760405162461bcd60e51b81526004016108bc9061275c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbf565b5060015b949350505050565b6060600980546107ce90612847565b606081611ffa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612024578061200e81612882565b915061201d9050600a836127d1565b9150611ffe565b60008167ffffffffffffffff81111561203f5761203f6128f3565b6040519080825280601f01601f191660200182016040528015612069576020820181803683370190505b5090505b8415611fbf5761207e600183612804565b915061208b600a8661289d565b6120969060306127b9565b60f81b8183815181106120ab576120ab6128dd565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506120e5600a866127d1565b945061206d565b6109f483838360016000546001600160a01b0385166121575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108bc565b836121b55760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108bc565b6001600160a01b03851660008181526004602090815260408083208054600160801b6fffffffffffffffffffffffffffffffff1982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156122b75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156122ab5761228f6000888488611eb9565b6122ab5760405162461bcd60e51b81526004016108bc9061275c565b6001918201910161223c565b50600055611d6f565b8280546122cc90612847565b90600052602060002090601f0160209004810192826122ee5760008555612334565b82601f1061230757805160ff1916838001178555612334565b82800160010185558215612334579182015b82811115612334578251825591602001919060010190612319565b50610d669291505b80821115610d66576000815560010161233c565b600067ffffffffffffffff8084111561236b5761236b6128f3565b604051601f8501601f19908116603f01168101908282118183101715612393576123936128f3565b816040528093508581528686860111156123ac57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123dd57600080fd5b919050565b60008083601f8401126123f457600080fd5b50813567ffffffffffffffff81111561240c57600080fd5b6020830191508360208260051b850101111561242757600080fd5b9250929050565b60006020828403121561244057600080fd5b6118ca826123c6565b6000806040838503121561245c57600080fd5b612465836123c6565b9150612473602084016123c6565b90509250929050565b60008060006060848603121561249157600080fd5b61249a846123c6565b92506124a8602085016123c6565b9150604084013590509250925092565b600080600080608085870312156124ce57600080fd5b6124d7856123c6565b93506124e5602086016123c6565b925060408501359150606085013567ffffffffffffffff81111561250857600080fd5b8501601f8101871361251957600080fd5b61252887823560208401612350565b91505092959194509250565b6000806040838503121561254757600080fd5b612550836123c6565b91506020830135801515811461256557600080fd5b809150509250929050565b6000806040838503121561258357600080fd5b61258c836123c6565b946020939093013593505050565b600080600080604085870312156125b057600080fd5b843567ffffffffffffffff808211156125c857600080fd5b6125d4888389016123e2565b909650945060208701359150808211156125ed57600080fd5b506125fa878288016123e2565b95989497509550505050565b60006020828403121561261857600080fd5b81356118ca81612909565b60006020828403121561263557600080fd5b81516118ca81612909565b60006020828403121561265257600080fd5b813567ffffffffffffffff81111561266957600080fd5b8201601f8101841361267a57600080fd5b611fbf84823560208401612350565b60006020828403121561269b57600080fd5b5035919050565b600081518084526126ba81602086016020860161281b565b601f01601f19169290920160200192915050565b600083516126e081846020880161281b565b8351908301906126f481836020880161281b565b64173539b7b760d91b9101908152600501949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261273f60808301846126a2565b9695505050505050565b6020815260006118ca60208301846126a2565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b600082198211156127cc576127cc6128b1565b500190565b6000826127e0576127e06128c7565b500490565b60008160001904831182151516156127ff576127ff6128b1565b500290565b600082821015612816576128166128b1565b500390565b60005b8381101561283657818101518382015260200161281e565b838111156117bf5750506000910152565b600181811c9082168061285b57607f821691505b6020821081141561287c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612896576128966128b1565b5060010190565b6000826128ac576128ac6128c7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220d913f84bee90a83b105aadcc020d2df281c31f2ed86f8ec04c1d295e55cb064f64736f6c63430008070033

Deployed Bytecode Sourcemap

47577:5103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48032:61;;;;;;;;;;-1:-1:-1;48032:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19549:25:1;;;19537:2;19522:18;48032:61:0;;;;;;;;27274:372;;;;;;;;;;-1:-1:-1;27274:372:0;;;;;:::i;:::-;;:::i;:::-;;;7242:14:1;;7235:22;7217:41;;7205:2;7190:18;27274:372:0;7077:187:1;29160:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30722:214::-;;;;;;;;;;-1:-1:-1;30722:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6494:55:1;;;6476:74;;6464:2;6449:18;30722:214:0;6330:226:1;30243:413:0;;;;;;;;;;-1:-1:-1;30243:413:0;;;;;:::i;:::-;;:::i;:::-;;47709:33;;;;;;;;;;;;;;;;25531:100;;;;;;;;;;-1:-1:-1;25584:7:0;25611:12;25531:100;;51498:182;;;;;;;;;;-1:-1:-1;51498:182:0;;;;;:::i;:::-;;:::i;31598:162::-;;;;;;;;;;-1:-1:-1;31598:162:0;;;;;:::i;:::-;;:::i;26195:1007::-;;;;;;;;;;-1:-1:-1;26195:1007:0;;;;;:::i;:::-;;:::i;52305:192::-;;;:::i;31831:177::-;;;;;;;;;;-1:-1:-1;31831:177:0;;;;;:::i;:::-;;:::i;51404:86::-;;;;;;;;;;-1:-1:-1;51404:86:0;;;;;:::i;:::-;;:::i;47788:29::-;;;;;;;;;;;;;;;;25708:187;;;;;;;;;;-1:-1:-1;25708:187:0;;;;;:::i;:::-;;:::i;51816:104::-;;;;;;;;;;-1:-1:-1;51816:104:0;;;;;:::i;:::-;;:::i;47824:41::-;;;;;;;;;;;;;;;;41444:86;;;;;;;;;;-1:-1:-1;41515:7:0;;-1:-1:-1;;;41515:7:0;;;;41444:86;;28969:124;;;;;;;;;;-1:-1:-1;28969:124:0;;;;;:::i;:::-;;:::i;47681:21::-;;;;;;;;;;;;;:::i;47872:46::-;;;;;;;;;;;;;;;;27710:221;;;;;;;;;;-1:-1:-1;27710:221:0;;;;;:::i;:::-;;:::i;44261:94::-;;;;;;;;;;;;;:::i;51928:130::-;;;;;;;;;;-1:-1:-1;51928:130:0;;;;;:::i;:::-;;:::i;52505:172::-;;;;;;:::i;:::-;;:::i;47966:59::-;;;;;;;;;;-1:-1:-1;47966:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;43610:87;;;;;;;;;;-1:-1:-1;43683:6:0;;-1:-1:-1;;;;;43683:6:0;43610:87;;29329:104;;;;;;;;;;;;;:::i;50276:667::-;;;;;;;;;;-1:-1:-1;50276:667:0;;;;;:::i;:::-;;:::i;49266:1002::-;;;;;;:::i;:::-;;:::i;31008:288::-;;;;;;;;;;-1:-1:-1;31008:288:0;;;;;:::i;:::-;;:::i;48303:953::-;;;;;;:::i;:::-;;:::i;32079:355::-;;;;;;;;;;-1:-1:-1;32079:355:0;;;;;:::i;:::-;;:::i;51692:116::-;;;;;;;;;;-1:-1:-1;51692:116:0;;;;;:::i;:::-;;:::i;47925:32::-;;;;;;;;;;;;;;;;50951:445;;;;;;;;;;-1:-1:-1;50951:445:0;;;;;:::i;:::-;;:::i;47749:32::-;;;;;;;;;;;;;;;;52196:101;;;;;;;;;;-1:-1:-1;52196:101:0;;;;;:::i;:::-;;:::i;52066:118::-;;;;;;;;;;-1:-1:-1;52066:118:0;;;;;:::i;:::-;;:::i;31367:164::-;;;;;;;;;;-1:-1:-1;31367:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31488:25:0;;;31464:4;31488:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31367:164;44510:229;;;;;;;;;;-1:-1:-1;44510:229:0;;;;;:::i;:::-;;:::i;27274:372::-;27376:4;-1:-1:-1;;;;;;27413:40:0;;-1:-1:-1;;;27413:40:0;;:105;;-1:-1:-1;;;;;;;27470:48:0;;-1:-1:-1;;;27470:48:0;27413:105;:172;;;-1:-1:-1;;;;;;;27535:50:0;;-1:-1:-1;;;27535:50:0;27413:172;:225;;;-1:-1:-1;;;;;;;;;;16903:40:0;;;27602:36;27393:245;27274:372;-1:-1:-1;;27274:372:0:o;29160:100::-;29214:13;29247:5;29240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29160:100;:::o;30722:214::-;30790:7;30818:16;30826:7;32746:4;32780:12;-1:-1:-1;32770:22:0;32689:111;30818:16;30810:74;;;;-1:-1:-1;;;30810:74:0;;18423:2:1;30810:74:0;;;18405:21:1;18462:2;18442:18;;;18435:30;18501:34;18481:18;;;18474:62;-1:-1:-1;;;18552:18:1;;;18545:43;18605:19;;30810:74:0;;;;;;;;;-1:-1:-1;30904:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30904:24:0;;30722:214::o;30243:413::-;30316:13;30332:24;30348:7;30332:15;:24::i;:::-;30316:40;;30381:5;-1:-1:-1;;;;;30375:11:0;:2;-1:-1:-1;;;;;30375:11:0;;;30367:58;;;;-1:-1:-1;;;30367:58:0;;15598:2:1;30367:58:0;;;15580:21:1;15637:2;15617:18;;;15610:30;15676:34;15656:18;;;15649:62;-1:-1:-1;;;15727:18:1;;;15720:32;15769:19;;30367:58:0;15396:398:1;30367:58:0;5321:10;-1:-1:-1;;;;;30460:21:0;;;;:62;;-1:-1:-1;30485:37:0;30502:5;5321:10;31367:164;:::i;30485:37::-;30438:169;;;;-1:-1:-1;;;30438:169:0;;12110:2:1;30438:169:0;;;12092:21:1;12149:2;12129:18;;;12122:30;12188:34;12168:18;;;12161:62;12259:27;12239:18;;;12232:55;12304:19;;30438:169:0;11908:421:1;30438:169:0;30620:28;30629:2;30633:7;30642:5;30620:8;:28::i;:::-;30305:351;30243:413;;:::o;51498:182::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;51596:9:::1;;51579:13;:26;;51571:65;;;::::0;-1:-1:-1;;;51571:65:0;;12536:2:1;51571:65:0::1;::::0;::::1;12518:21:1::0;12575:2;12555:18;;;12548:30;12614:28;12594:18;;;12587:56;12660:18;;51571:65:0::1;12334:350:1::0;51571:65:0::1;51647:9;:25:::0;51498:182::o;31598:162::-;31724:28;31734:4;31740:2;31744:7;31724:9;:28::i;26195:1007::-;26284:7;26320:16;26330:5;26320:9;:16::i;:::-;26312:5;:24;26304:71;;;;-1:-1:-1;;;26304:71:0;;7695:2:1;26304:71:0;;;7677:21:1;7734:2;7714:18;;;7707:30;7773:34;7753:18;;;7746:62;-1:-1:-1;;;7824:18:1;;;7817:32;7866:19;;26304:71:0;7493:398:1;26304:71:0;26386:22;25611:12;;;26386:22;;26649:466;26669:14;26665:1;:18;26649:466;;;26709:31;26743:14;;;:11;:14;;;;;;;;;26709:48;;;;;;;;;-1:-1:-1;;;;;26709:48:0;;;;;-1:-1:-1;;;26709:48:0;;;;;;;;;;;;26780:28;26776:111;;26853:14;;;-1:-1:-1;26776:111:0;26930:5;-1:-1:-1;;;;;26909:26:0;:17;-1:-1:-1;;;;;26909:26:0;;26905:195;;;26979:5;26964:11;:20;26960:85;;;-1:-1:-1;27020:1:0;-1:-1:-1;27013:8:0;;-1:-1:-1;;;27013:8:0;26960:85;27067:13;;;;;26905:195;-1:-1:-1;26685:3:0;;26649:466;;;-1:-1:-1;27138:56:0;;-1:-1:-1;;;27138:56:0;;17232:2:1;27138:56:0;;;17214:21:1;17271:2;17251:18;;;17244:30;17310:34;17290:18;;;17283:62;-1:-1:-1;;;17361:18:1;;;17354:44;17415:19;;27138:56:0;17030:410:1;52305:192:0;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;52380:82:::1;::::0;52362:12:::1;::::0;52388:10:::1;::::0;52426:21:::1;::::0;52362:12;52380:82;52362:12;52380:82;52426:21;52388:10;52380:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52361:101;;;52481:7;52473:16;;;::::0;::::1;;52350:147;52305:192::o:0;31831:177::-;31961:39;31978:4;31984:2;31988:7;31961:39;;;;;;;;;;;;:16;:39::i;51404:86::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;51467:4:::1;:15:::0;51404:86::o;25708:187::-;25775:7;25611:12;;25803:5;:21;25795:69;;;;-1:-1:-1;;;25795:69:0;;10135:2:1;25795:69:0;;;10117:21:1;10174:2;10154:18;;;10147:30;10213:34;10193:18;;;10186:62;-1:-1:-1;;;10264:18:1;;;10257:33;10307:19;;25795:69:0;9933:399:1;25795:69:0;-1:-1:-1;25882:5:0;25708:187::o;51816:104::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;51891:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51816:104:::0;:::o;28969:124::-;29033:7;29060:20;29072:7;29060:11;:20::i;:::-;:25;;28969:124;-1:-1:-1;;28969:124:0:o;47681:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27710:221::-;27774:7;-1:-1:-1;;;;;27802:19:0;;27794:75;;;;-1:-1:-1;;;27794:75:0;;12891:2:1;27794:75:0;;;12873:21:1;12930:2;12910:18;;;12903:30;12969:34;12949:18;;;12942:62;-1:-1:-1;;;13020:18:1;;;13013:41;13071:19;;27794:75:0;12689:407:1;27794:75:0;-1:-1:-1;;;;;;27895:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27895:27:0;;27710:221::o;44261:94::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;44326:21:::1;44344:1;44326:9;:21::i;:::-;44261:94::o:0;51928:130::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;52013:27:::1;:37:::0;51928:130::o;52505:172::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;52598:44:::1;::::0;52580:12:::1;::::0;52606:10:::1;::::0;52630:7;;52580:12;52598:44;52580:12;52598:44;52630:7;52606:10;52598:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52579:63;;;52661:7;52653:16;;;::::0;::::1;29329:104:::0;29385:13;29418:7;29411:14;;;;;:::i;50276:667::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;50424:35;;::::1;50402:118;;;::::0;-1:-1:-1;;;50402:118:0;;11708:2:1;50402:118:0::1;::::0;::::1;11690:21:1::0;11747:2;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;-1:-1:-1;;;11837:18:1;;;11830:31;11878:19;;50402:118:0::1;11506:397:1::0;50402:118:0::1;50531:21;50567:9:::0;50579:13:::1;25584:7:::0;25611:12;;25531:100;50579:13:::1;50567:25;;50608:9;50603:101;50623:19:::0;;::::1;50603:101;;;50681:8;;50690:1;50681:11;;;;;;;:::i;:::-;;;;;;;50664:28;;;;;:::i;:::-;::::0;-1:-1:-1;50644:3:0::1;::::0;::::1;:::i;:::-;;;50603:101;;;-1:-1:-1::0;50743:9:0::1;::::0;50722:17:::1;50726:13:::0;50722:1;:17:::1;:::i;:::-;:30;;50714:51;;;::::0;-1:-1:-1;;;50714:51:0;;13710:2:1;50714:51:0::1;::::0;::::1;13692:21:1::0;13749:1;13729:18;;;13722:29;-1:-1:-1;;;13767:18:1;;;13760:38;13815:18;;50714:51:0::1;13508:331:1::0;50714:51:0::1;50776:20;;;50812:9;50807:110;50827:20:::0;;::::1;50807:110;;;50869:36;50879:9;;50889:1;50879:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50893:8;;50902:1;50893:11;;;;;;;:::i;:::-;;;;;;;50869:9;:36::i;:::-;50849:3;::::0;::::1;:::i;:::-;;;50807:110;;;-1:-1:-1::0;;;;;;;50276:667:0:o;49266:1002::-;46605:1;47201:7;;:19;;47193:63;;;;-1:-1:-1;;;47193:63:0;;17647:2:1;47193:63:0;;;17629:21:1;17686:2;17666:18;;;17659:30;17725:33;17705:18;;;17698:61;17776:18;;47193:63:0;17445:355:1;47193:63:0;46605:1;47334:7;:18;49340:9:::1;25611:12:::0;;49434:10:::1;49409:36:::0;;:24:::1;:36;::::0;;;;;;;;49491:26:::1;:38:::0;;;;;;;25611:12;;49409:36;49550:15;49542:54:::1;;;::::0;-1:-1:-1;;;49542:54:0;;19250:2:1;49542:54:0::1;::::0;::::1;19232:21:1::0;19289:2;19269:18;;;19262:30;19328:28;19308:18;;;19301:56;19374:18;;49542:54:0::1;19048:350:1::0;49542:54:0::1;49630:27;;49615:11;:42;;49607:96;;;::::0;-1:-1:-1;;;49607:96:0;;10945:2:1;49607:96:0::1;::::0;::::1;10927:21:1::0;10984:2;10964:18;;;10957:30;11023:34;11003:18;;;10996:62;-1:-1:-1;;;11074:18:1;;;11067:38;11122:19;;49607:96:0::1;10743:404:1::0;49607:96:0::1;49741:9;::::0;49722:15:::1;49726:11:::0;49722:1;:15:::1;:::i;:::-;:28;;49714:76;;;::::0;-1:-1:-1;;;49714:76:0;;8098:2:1;49714:76:0::1;::::0;::::1;8080:21:1::0;8137:2;8117:18;;;8110:30;8176:34;8156:18;;;8149:62;-1:-1:-1;;;8227:18:1;;;8220:33;8270:19;;49714:76:0::1;7896:399:1::0;49714:76:0::1;49829:11;49822:4;;:18;;;;:::i;:::-;49809:9;:31;;49801:40;;;::::0;::::1;;49927:13;::::0;49912:11;49860:49:::1;49885:24:::0;49860:22;:49:::1;:::i;:::-;:63;;;;:::i;:::-;:80;;49852:137;;;::::0;-1:-1:-1;;;49852:137:0;;18837:2:1;49852:137:0::1;::::0;::::1;18819:21:1::0;18876:2;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;-1:-1:-1;;;18966:18:1;;;18959:42;19018:19;;49852:137:0::1;18635:408:1::0;49852:137:0::1;50007:9;50002:103;50026:11;50022:1;:15;50002:103;;;50086:10;50059:38;::::0;;;:26:::1;:38;::::0;;;;:40;;;::::1;::::0;::::1;:::i;:::-;;;;;;50039:3;;;;:::i;:::-;;;50002:103;;;;50125:34;50135:10;50147:11;50125:9;:34::i;:::-;-1:-1:-1::0;;46561:1:0;47513:7;:22;-1:-1:-1;;49266:1002:0:o;31008:288::-;-1:-1:-1;;;;;31103:24:0;;5321:10;31103:24;;31095:63;;;;-1:-1:-1;;;31095:63:0;;14824:2:1;31095:63:0;;;14806:21:1;14863:2;14843:18;;;14836:30;14902:28;14882:18;;;14875:56;14948:18;;31095:63:0;14622:350:1;31095:63:0;5321:10;31171:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31171:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31171:53:0;;;;;;;;;;31240:48;;7217:41:1;;;31171:42:0;;5321:10;31240:48;;7190:18:1;31240:48:0;;;;;;;31008:288;;:::o;48303:953::-;46605:1;47201:7;;:19;;47193:63;;;;-1:-1:-1;;;47193:63:0;;17647:2:1;47193:63:0;;;17629:21:1;17686:2;17666:18;;;17659:30;17725:33;17705:18;;;17698:61;17776:18;;47193:63:0;17445:355:1;47193:63:0;46605:1;47334:7;:18;48374:9:::1;25611:12:::0;;48468:10:::1;48443:36:::0;;:24:::1;:36;::::0;;;;;;;;48525:26:::1;:38:::0;;;;;;;48624:22:::1;::::0;25611:12;;48443:36;48584::::1;48609:11:::0;48443:36;48584::::1;:::i;:::-;:62;;48576:119;;;::::0;-1:-1:-1;;;48576:119:0;;8502:2:1;48576:119:0::1;::::0;::::1;8484:21:1::0;8541:2;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;-1:-1:-1;;;8631:18:1;;;8624:42;8683:19;;48576:119:0::1;8300:408:1::0;48576:119:0::1;48722:1;48708:11;:15;48700:54;;;::::0;-1:-1:-1;;;48700:54:0;;11354:2:1;48700:54:0::1;::::0;::::1;11336:21:1::0;11393:2;11373:18;;;11366:30;11432:27;11412:18;;;11405:55;11477:18;;48700:54:0::1;11152:349:1::0;48700:54:0::1;48786:7;::::0;48767:15:::1;48771:11:::0;48767:1;:15:::1;:::i;:::-;:26;;48759:87;;;::::0;-1:-1:-1;;;48759:87:0;;14407:2:1;48759:87:0::1;::::0;::::1;14389:21:1::0;14446:2;14426:18;;;14419:30;14485:34;14465:18;;;14458:62;-1:-1:-1;;;14536:18:1;;;14529:46;14592:19;;48759:87:0::1;14205:412:1::0;48759:87:0::1;48932:13;::::0;48917:11;48865:49:::1;48890:24:::0;48865:22;:49:::1;:::i;:::-;:63;;;;:::i;:::-;:80;;48857:137;;;::::0;-1:-1:-1;;;48857:137:0;;18837:2:1;48857:137:0::1;::::0;::::1;18819:21:1::0;18876:2;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;-1:-1:-1;;;18966:18:1;;;18959:42;19018:19;;48857:137:0::1;18635:408:1::0;48857:137:0::1;49006:9;49001:101;49025:11;49021:1;:15;49001:101;;;49083:10;49058:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;49038:3;;;;:::i;:::-;;;49001:101;;32079:355:::0;32238:28;32248:4;32254:2;32258:7;32238:9;:28::i;:::-;32299:48;32322:4;32328:2;32332:7;32341:5;32299:22;:48::i;:::-;32277:149;;;;-1:-1:-1;;;32277:149:0;;;;;;;:::i;:::-;32079:355;;;;:::o;51692:116::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;51773:7:::1;:27:::0;51692:116::o;50951:445::-;51069:13;51108:16;51116:7;32746:4;32780:12;-1:-1:-1;32770:22:0;32689:111;51108:16;51100:62;;;;-1:-1:-1;;;51100:62:0;;8915:2:1;51100:62:0;;;8897:21:1;8954:2;8934:18;;;8927:30;8993:34;8973:18;;;8966:62;-1:-1:-1;;;9044:18:1;;;9037:31;9085:19;;51100:62:0;8713:397:1;51100:62:0;51173:28;51204:10;:8;:10::i;:::-;51173:41;;51276:1;51251:14;51245:28;:32;:143;;;;;;;;;;;;;;;;;51321:14;51337:18;:7;:16;:18::i;:::-;51304:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51245:143;51225:163;50951:445;-1:-1:-1;;;50951:445:0:o;52196:101::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;52266:13:::1;:23:::0;52196:101::o;52066:118::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;52144:22:::1;:32:::0;52066:118::o;44510:229::-;43683:6;;-1:-1:-1;;;;;43683:6:0;5321:10;43830:23;43822:68;;;;-1:-1:-1;;;43822:68:0;;14046:2:1;43822:68:0;;;14028:21:1;;;14065:18;;;14058:30;-1:-1:-1;;;;;;;;;;;14104:18:1;;;14097:62;14176:18;;43822:68:0;13844:356:1;43822:68:0;-1:-1:-1;;;;;44613:22:0;::::1;44591:110;;;::::0;-1:-1:-1;;;44591:110:0;;9317:2:1;44591:110:0::1;::::0;::::1;9299:21:1::0;9356:2;9336:18;;;9329:30;9395:34;9375:18;;;9368:62;-1:-1:-1;;;9446:18:1;;;9439:36;9492:19;;44591:110:0::1;9115:402:1::0;44591:110:0::1;44712:19;44722:8;44712:9;:19::i;37609:196::-:0;37724:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37724:29:0;-1:-1:-1;;;;;37724:29:0;;;;;;;;;37769:28;;37724:24;;37769:28;;;;;;;37609:196;;;:::o;35489:2002::-;35604:35;35642:20;35654:7;35642:11;:20::i;:::-;35717:18;;35604:58;;-1:-1:-1;35675:22:0;;-1:-1:-1;;;;;35701:34:0;5321:10;-1:-1:-1;;;;;35701:34:0;;:87;;;-1:-1:-1;5321:10:0;35752:20;35764:7;35752:11;:20::i;:::-;-1:-1:-1;;;;;35752:36:0;;35701:87;:154;;;-1:-1:-1;35822:18:0;;35805:50;;5321:10;31367:164;:::i;35805:50::-;35675:181;;35877:17;35869:80;;;;-1:-1:-1;;;35869:80:0;;15179:2:1;35869:80:0;;;15161:21:1;15218:2;15198:18;;;15191:30;15257:34;15237:18;;;15230:62;15328:20;15308:18;;;15301:48;15366:19;;35869:80:0;14977:414:1;35869:80:0;35992:4;-1:-1:-1;;;;;35970:26:0;:13;:18;;;-1:-1:-1;;;;;35970:26:0;;35962:77;;;;-1:-1:-1;;;35962:77:0;;13303:2:1;35962:77:0;;;13285:21:1;13342:2;13322:18;;;13315:30;13381:34;13361:18;;;13354:62;-1:-1:-1;;;13432:18:1;;;13425:36;13478:19;;35962:77:0;13101:402:1;35962:77:0;-1:-1:-1;;;;;36058:16:0;;36050:66;;;;-1:-1:-1;;;36050:66:0;;10539:2:1;36050:66:0;;;10521:21:1;10578:2;10558:18;;;10551:30;10617:34;10597:18;;;10590:62;-1:-1:-1;;;10668:18:1;;;10661:35;10713:19;;36050:66:0;10337:401:1;36050:66:0;36237:49;36254:1;36258:7;36267:13;:18;;;36237:8;:49::i;:::-;-1:-1:-1;;;;;36582:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36582:31:0;;;-1:-1:-1;;;;;36582:31:0;;;-1:-1:-1;;36582:31:0;;;;;;;36628:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36628:29:0;;;;;;;;;;;;;36674:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36719:61:0;;;;-1:-1:-1;;;36764:15:0;36719:61;;;;;;37054:11;;;37084:24;;;;;:29;37054:11;;37084:29;37080:295;;37152:20;37160:11;32746:4;32780:12;-1:-1:-1;32770:22:0;32689:111;37152:20;37148:212;;;37229:18;;;37197:24;;;:11;:24;;;;;;;;:50;;37312:28;;;;37270:70;;-1:-1:-1;;;37270:70:0;-1:-1:-1;;;;;;37270:70:0;;;-1:-1:-1;;;;;37197:50:0;;;37270:70;;;;;;;37148:212;36557:829;37422:7;37418:2;-1:-1:-1;;;;;37403:27:0;37412:4;-1:-1:-1;;;;;37403:27:0;;;;;;;;;;;37441:42;35593:1898;;35489:2002;;;:::o;28370:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;28473:16:0;28481:7;32746:4;32780:12;-1:-1:-1;32770:22:0;32689:111;28473:16;28465:71;;;;-1:-1:-1;;;28465:71:0;;9724:2:1;28465:71:0;;;9706:21:1;9763:2;9743:18;;;9736:30;9802:34;9782:18;;;9775:62;-1:-1:-1;;;9853:18:1;;;9846:40;9903:19;;28465:71:0;9522:406:1;28465:71:0;28594:7;28574:245;28641:31;28675:17;;;:11;:17;;;;;;;;;28641:51;;;;;;;;;-1:-1:-1;;;;;28641:51:0;;;;;-1:-1:-1;;;28641:51:0;;;;;;;;;;;;28715:28;28711:93;;28775:9;28370:537;-1:-1:-1;;;28370:537:0:o;28711:93::-;-1:-1:-1;;;28614:6:0;28574:245;;44747:173;44822:6;;;-1:-1:-1;;;;;44839:17:0;;;-1:-1:-1;;;;;;44839:17:0;;;;;;;44872:40;;44822:6;;;44839:17;44822:6;;44872:40;;44803:16;;44872:40;44792:128;44747:173;:::o;32808:104::-;32877:27;32887:2;32891:8;32877:27;;;;;;;;;;;;:9;:27::i;38370:804::-;38525:4;-1:-1:-1;;;;;38546:13:0;;6983:19;:23;38542:625;;38582:72;;-1:-1:-1;;;38582:72:0;;-1:-1:-1;;;;;38582:36:0;;;;;:72;;5321:10;;38633:4;;38639:7;;38648:5;;38582:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38582:72:0;;;;;;;;-1:-1:-1;;38582:72:0;;;;;;;;;;;;:::i;:::-;;;38578:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38828:13:0;;38824:273;;38871:61;;-1:-1:-1;;;38871:61:0;;;;;;;:::i;38824:273::-;39047:6;39041:13;39032:6;39028:2;39024:15;39017:38;38578:534;-1:-1:-1;;;;;;38705:55:0;-1:-1:-1;;;38705:55:0;;-1:-1:-1;38698:62:0;;38542:625;-1:-1:-1;39151:4:0;38542:625;38370:804;;;;;;:::o;48187:108::-;48247:13;48280:7;48273:14;;;;;:::i;2803:723::-;2859:13;3080:10;3076:53;;-1:-1:-1;;3107:10:0;;;;;;;;;;;;-1:-1:-1;;;3107:10:0;;;;;2803:723::o;3076:53::-;3154:5;3139:12;3195:78;3202:9;;3195:78;;3228:8;;;;:::i;:::-;;-1:-1:-1;3251:10:0;;-1:-1:-1;3259:2:0;3251:10;;:::i;:::-;;;3195:78;;;3283:19;3315:6;3305:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3305:17:0;;3283:39;;3333:154;3340:10;;3333:154;;3367:11;3377:1;3367:11;;:::i;:::-;;-1:-1:-1;3436:10:0;3444:2;3436:5;:10;:::i;:::-;3423:24;;:2;:24;:::i;:::-;3410:39;;3393:6;3400;3393:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3464:11:0;3473:2;3464:11;;:::i;:::-;;;3333:154;;33275:163;33398:32;33404:2;33408:8;33418:5;33425:4;33836:20;33859:12;-1:-1:-1;;;;;33890:16:0;;33882:62;;;;-1:-1:-1;;;33882:62:0;;16421:2:1;33882:62:0;;;16403:21:1;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;-1:-1:-1;;;16550:18:1;;;16543:31;16591:19;;33882:62:0;16219:397:1;33882:62:0;33963:13;33955:66;;;;-1:-1:-1;;;33955:66:0;;16823:2:1;33955:66:0;;;16805:21:1;16862:2;16842:18;;;16835:30;16901:34;16881:18;;;16874:62;-1:-1:-1;;;16952:18:1;;;16945:38;17000:19;;33955:66:0;16621:404:1;33955:66:0;-1:-1:-1;;;;;34373:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;34373:45:0;;-1:-1:-1;;;;;34373:45:0;;;;;;;;;;34433:50;;;;;;;;;;;;;;34500:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34550:66:0;;;;-1:-1:-1;;;34600:15:0;34550:66;;;;;;;34500:25;;34685:415;34705:8;34701:1;:12;34685:415;;;34744:38;;34769:12;;-1:-1:-1;;;;;34744:38:0;;;34761:1;;34744:38;;34761:1;;34744:38;34805:4;34801:249;;;34868:59;34899:1;34903:2;34907:12;34921:5;34868:22;:59::i;:::-;34834:196;;;;-1:-1:-1;;;34834:196:0;;;;;;;:::i;:::-;35070:14;;;;;34715:3;34685:415;;;-1:-1:-1;35116:12:0;:27;35167:60;32079:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:367::-;914:8;924:6;978:3;971:4;963:6;959:17;955:27;945:55;;996:1;993;986:12;945:55;-1:-1:-1;1019:20:1;;1062:18;1051:30;;1048:50;;;1094:1;1091;1084:12;1048:50;1131:4;1123:6;1119:17;1107:29;;1191:3;1184:4;1174:6;1171:1;1167:14;1159:6;1155:27;1151:38;1148:47;1145:67;;;1208:1;1205;1198:12;1145:67;851:367;;;;;:::o;1223:186::-;1282:6;1335:2;1323:9;1314:7;1310:23;1306:32;1303:52;;;1351:1;1348;1341:12;1303:52;1374:29;1393:9;1374:29;:::i;1414:260::-;1482:6;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1582:29;1601:9;1582:29;:::i;:::-;1572:39;;1630:38;1664:2;1653:9;1649:18;1630:38;:::i;:::-;1620:48;;1414:260;;;;;:::o;1679:328::-;1756:6;1764;1772;1825:2;1813:9;1804:7;1800:23;1796:32;1793:52;;;1841:1;1838;1831:12;1793:52;1864:29;1883:9;1864:29;:::i;:::-;1854:39;;1912:38;1946:2;1935:9;1931:18;1912:38;:::i;:::-;1902:48;;1997:2;1986:9;1982:18;1969:32;1959:42;;1679:328;;;;;:::o;2012:666::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2224:29;2243:9;2224:29;:::i;:::-;2214:39;;2272:38;2306:2;2295:9;2291:18;2272:38;:::i;:::-;2262:48;;2357:2;2346:9;2342:18;2329:32;2319:42;;2412:2;2401:9;2397:18;2384:32;2439:18;2431:6;2428:30;2425:50;;;2471:1;2468;2461:12;2425:50;2494:22;;2547:4;2539:13;;2535:27;-1:-1:-1;2525:55:1;;2576:1;2573;2566:12;2525:55;2599:73;2664:7;2659:2;2646:16;2641:2;2637;2633:11;2599:73;:::i;:::-;2589:83;;;2012:666;;;;;;;:::o;2683:347::-;2748:6;2756;2809:2;2797:9;2788:7;2784:23;2780:32;2777:52;;;2825:1;2822;2815:12;2777:52;2848:29;2867:9;2848:29;:::i;:::-;2838:39;;2927:2;2916:9;2912:18;2899:32;2974:5;2967:13;2960:21;2953:5;2950:32;2940:60;;2996:1;2993;2986:12;2940:60;3019:5;3009:15;;;2683:347;;;;;:::o;3035:254::-;3103:6;3111;3164:2;3152:9;3143:7;3139:23;3135:32;3132:52;;;3180:1;3177;3170:12;3132:52;3203:29;3222:9;3203:29;:::i;:::-;3193:39;3279:2;3264:18;;;;3251:32;;-1:-1:-1;;;3035:254:1:o;3294:773::-;3416:6;3424;3432;3440;3493:2;3481:9;3472:7;3468:23;3464:32;3461:52;;;3509:1;3506;3499:12;3461:52;3549:9;3536:23;3578:18;3619:2;3611:6;3608:14;3605:34;;;3635:1;3632;3625:12;3605:34;3674:70;3736:7;3727:6;3716:9;3712:22;3674:70;:::i;:::-;3763:8;;-1:-1:-1;3648:96:1;-1:-1:-1;3851:2:1;3836:18;;3823:32;;-1:-1:-1;3867:16:1;;;3864:36;;;3896:1;3893;3886:12;3864:36;;3935:72;3999:7;3988:8;3977:9;3973:24;3935:72;:::i;:::-;3294:773;;;;-1:-1:-1;4026:8:1;-1:-1:-1;;;;3294:773:1:o;4072:245::-;4130:6;4183:2;4171:9;4162:7;4158:23;4154:32;4151:52;;;4199:1;4196;4189:12;4151:52;4238:9;4225:23;4257:30;4281:5;4257:30;:::i;4322:249::-;4391:6;4444:2;4432:9;4423:7;4419:23;4415:32;4412:52;;;4460:1;4457;4450:12;4412:52;4492:9;4486:16;4511:30;4535:5;4511:30;:::i;4576:450::-;4645:6;4698:2;4686:9;4677:7;4673:23;4669:32;4666:52;;;4714:1;4711;4704:12;4666:52;4754:9;4741:23;4787:18;4779:6;4776:30;4773:50;;;4819:1;4816;4809:12;4773:50;4842:22;;4895:4;4887:13;;4883:27;-1:-1:-1;4873:55:1;;4924:1;4921;4914:12;4873:55;4947:73;5012:7;5007:2;4994:16;4989:2;4985;4981:11;4947:73;:::i;5031:180::-;5090:6;5143:2;5131:9;5122:7;5118:23;5114:32;5111:52;;;5159:1;5156;5149:12;5111:52;-1:-1:-1;5182:23:1;;5031:180;-1:-1:-1;5031:180:1:o;5216:257::-;5257:3;5295:5;5289:12;5322:6;5317:3;5310:19;5338:63;5394:6;5387:4;5382:3;5378:14;5371:4;5364:5;5360:16;5338:63;:::i;:::-;5455:2;5434:15;-1:-1:-1;;5430:29:1;5421:39;;;;5462:4;5417:50;;5216:257;-1:-1:-1;;5216:257:1:o;5478:637::-;5758:3;5796:6;5790:13;5812:53;5858:6;5853:3;5846:4;5838:6;5834:17;5812:53;:::i;:::-;5928:13;;5887:16;;;;5950:57;5928:13;5887:16;5984:4;5972:17;;5950:57;:::i;:::-;-1:-1:-1;;;6029:20:1;;6058:22;;;6107:1;6096:13;;5478:637;-1:-1:-1;;;;5478:637:1:o;6561:511::-;6755:4;-1:-1:-1;;;;;6865:2:1;6857:6;6853:15;6842:9;6835:34;6917:2;6909:6;6905:15;6900:2;6889:9;6885:18;6878:43;;6957:6;6952:2;6941:9;6937:18;6930:34;7000:3;6995:2;6984:9;6980:18;6973:31;7021:45;7061:3;7050:9;7046:19;7038:6;7021:45;:::i;:::-;7013:53;6561:511;-1:-1:-1;;;;;;6561:511:1:o;7269:219::-;7418:2;7407:9;7400:21;7381:4;7438:44;7478:2;7467:9;7463:18;7455:6;7438:44;:::i;15799:415::-;16001:2;15983:21;;;16040:2;16020:18;;;16013:30;16079:34;16074:2;16059:18;;16052:62;16150:21;16145:2;16130:18;;16123:49;16204:3;16189:19;;15799:415::o;19585:128::-;19625:3;19656:1;19652:6;19649:1;19646:13;19643:39;;;19662:18;;:::i;:::-;-1:-1:-1;19698:9:1;;19585:128::o;19718:120::-;19758:1;19784;19774:35;;19789:18;;:::i;:::-;-1:-1:-1;19823:9:1;;19718:120::o;19843:168::-;19883:7;19949:1;19945;19941:6;19937:14;19934:1;19931:21;19926:1;19919:9;19912:17;19908:45;19905:71;;;19956:18;;:::i;:::-;-1:-1:-1;19996:9:1;;19843:168::o;20016:125::-;20056:4;20084:1;20081;20078:8;20075:34;;;20089:18;;:::i;:::-;-1:-1:-1;20126:9:1;;20016:125::o;20146:258::-;20218:1;20228:113;20242:6;20239:1;20236:13;20228:113;;;20318:11;;;20312:18;20299:11;;;20292:39;20264:2;20257:10;20228:113;;;20359:6;20356:1;20353:13;20350:48;;;-1:-1:-1;;20394:1:1;20376:16;;20369:27;20146:258::o;20409:380::-;20488:1;20484:12;;;;20531;;;20552:61;;20606:4;20598:6;20594:17;20584:27;;20552:61;20659:2;20651:6;20648:14;20628:18;20625:38;20622:161;;;20705:10;20700:3;20696:20;20693:1;20686:31;20740:4;20737:1;20730:15;20768:4;20765:1;20758:15;20622:161;;20409:380;;;:::o;20794:135::-;20833:3;-1:-1:-1;;20854:17:1;;20851:43;;;20874:18;;:::i;:::-;-1:-1:-1;20921:1:1;20910:13;;20794:135::o;20934:112::-;20966:1;20992;20982:35;;20997:18;;:::i;:::-;-1:-1:-1;21031:9:1;;20934:112::o;21051:127::-;21112:10;21107:3;21103:20;21100:1;21093:31;21143:4;21140:1;21133:15;21167:4;21164:1;21157:15;21183:127;21244:10;21239:3;21235:20;21232:1;21225:31;21275:4;21272:1;21265:15;21299:4;21296:1;21289:15;21315:127;21376:10;21371:3;21367:20;21364:1;21357:31;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21447:127;21508:10;21503:3;21499:20;21496:1;21489:31;21539:4;21536:1;21529:15;21563:4;21560:1;21553:15;21579:131;-1:-1:-1;;;;;;21653:32:1;;21643:43;;21633:71;;21700:1;21697;21690:12

Swarm Source

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