ETH Price: $2,610.78 (-0.79%)

Token

WeAreAllGoingToPride (WAGPRIDE)
 

Overview

Max Total Supply

5,000 WAGPRIDE

Holders

1,085

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WAGPRIDE
0xcbba95ff94252cb09be13dddc7790763e4b11a21
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:
WeAreAllGoingToPride

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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 = 1;

    // 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: goblintownai-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;
    }
}

//newerc.sol
pragma solidity ^0.8.0;


contract WeAreAllGoingToPride is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.002 ether;
    uint256 public maxSupply = 5000;
    uint256 public maxFree = 500;
    uint256 public maxperAddressFreeLimit = 1;
    uint256 public maxperAddressPublicMint = 10;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("WeAreAllGoingToPride", "WAGPRIDE") {
        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];
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "Max WeAreAllGoingToPride per address exceeded");
		require(_mintAmount > 0, "Cant mint 0 WeAreAllGoingToPride" );
		require(s + _mintAmount <= maxFree, "Cant exceed WeAreAllGoingToPrides supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(_mintAmount > 0, "Cant mint 0 WeAreAllGoingToPride");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more WeAreAllGoingToPride" );
        require(s + _mintAmount <= maxSupply, "Cant exceed WeAreAllGoingToPrideS supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    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 setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

    function setMaxperAddressFreeMint(uint256 _amount) public onlyOwner{
        maxperAddressFreeLimit = _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":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","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":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFree","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":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","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"}]

6080604052600160005566071afd498d0000600a55611388600b556101f4600c556001600d55600a600e553480156200003757600080fd5b50604080518082018252601481527f5765417265416c6c476f696e67546f5072696465000000000000000000000000602080830191825283518085019094526008845267574147505249444560c01b9084015281519192916200009d91600191620001d0565b508051620000b3906002906020840190620001d0565b505050620000d0620000ca6200010260201b60201c565b62000106565b6007805460ff60a01b191690556001600855604080516020810190915260008152620000fc9062000158565b620002b3565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001cc906009906020840190620001d0565b5050565b828054620001de9062000276565b90600052602060002090601f0160209004810192826200020257600085556200024d565b82601f106200021d57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024d57825182559160200191906001019062000230565b506200025b9291506200025f565b5090565b5b808211156200025b576000815560010162000260565b600181811c908216806200028b57607f821691505b60208210811415620002ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6125d480620002c36000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610600578063d5abeb0114610620578063dc4e66b514610636578063e985e9c514610656578063f2fde38b1461069f57600080fd5b8063a0712d681461057a578063a22cb4651461058d578063a4146733146105ad578063b88d4fde146105c0578063bde12d73146105e057600080fd5b806377ad99f0116100f257806377ad99f0146104e75780637c6b172d146104fa5780638da5cb5b1461052757806395d89b411461054557806396ea3a471461055a57600080fd5b80636352211e1461047d5780636c0360eb1461049d57806370a08231146104b2578063715018a6146104d257600080fd5b80632f745c59116101b1578063485a68a311610175578063485a68a3146103f25780634f6ccce71461040857806355f804b31461042857806356569a1d146104485780635c975abb1461045e57600080fd5b80632f745c591461037457806334c8fd75146103945780633ccfd60b146103aa57806342842e0e146103b257806344a0d68a146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063228025e81461033457806323b872dd1461035457600080fd5b806301ffc9a71461022a578063022d67dd1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612259565b6106bf565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046122dc565b61072c565b005b34801561028d57600080fd5b50610296610764565b604051610256919061239d565b3480156102af57600080fd5b506102c36102be3660046122dc565b6107f6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f63660046121c3565b610881565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b5061027f61034f3660046122dc565b610999565b34801561036057600080fd5b5061027f61036f3660046120cf565b610a1a565b34801561038057600080fd5b5061031161038f3660046121c3565b610a25565b3480156103a057600080fd5b50610311600e5481565b61027f610b82565b3480156103be57600080fd5b5061027f6103cd3660046120cf565b610c04565b3480156103de57600080fd5b5061027f6103ed3660046122dc565b610c1f565b3480156103fe57600080fd5b50610311600c5481565b34801561041457600080fd5b506103116104233660046122dc565b610c4e565b34801561043457600080fd5b5061027f610443366004612293565b610cb0565b34801561045457600080fd5b50610311600d5481565b34801561046a57600080fd5b50600754600160a01b900460ff1661024a565b34801561048957600080fd5b506102c36104983660046122dc565b610cf1565b3480156104a957600080fd5b50610296610d03565b3480156104be57600080fd5b506103116104cd366004612081565b610d91565b3480156104de57600080fd5b5061027f610e22565b61027f6104f53660046122dc565b610e58565b34801561050657600080fd5b50610311610515366004612081565b600f6020526000908152604090205481565b34801561053357600080fd5b506007546001600160a01b03166102c3565b34801561055157600080fd5b50610296610ed7565b34801561056657600080fd5b5061027f6105753660046121ed565b610ee6565b61027f6105883660046122dc565b61106f565b34801561059957600080fd5b5061027f6105a8366004612187565b61120e565b61027f6105bb3660046122dc565b6112d3565b3480156105cc57600080fd5b5061027f6105db36600461210b565b6114bb565b3480156105ec57600080fd5b5061027f6105fb3660046122dc565b6114f4565b34801561060c57600080fd5b5061029661061b3660046122dc565b611523565b34801561062c57600080fd5b50610311600b5481565b34801561064257600080fd5b5061027f6106513660046122dc565b6115e2565b34801561066257600080fd5b5061024a61067136600461209c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b5061027f6106ba366004612081565b611611565b60006001600160e01b031982166380ac58cd60e01b14806106f057506001600160e01b03198216635b5e139f60e01b145b8061070b57506001600160e01b0319821663780e9d6360e01b145b8061072657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906123b0565b60405180910390fd5b600e55565b606060018054610773906124c6565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906124c6565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803826000541190565b6108655760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610756565b506000908152600560205260409020546001600160a01b031690565b600061088c82610cf1565b9050806001600160a01b0316836001600160a01b031614156108fb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610756565b336001600160a01b038216148061091757506109178133610671565b6109895760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610756565b6109948383836116a9565b505050565b6007546001600160a01b031633146109c35760405162461bcd60e51b8152600401610756906123b0565b600b54811115610a155760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610756565b600b55565b610994838383611705565b6000610a3083610d91565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610756565b600080549080805b83811015610b22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b195786841415610b125750935061072692505050565b6001909301925b50600101610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610756565b6007546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610756906123b0565b604051600090339047908381818185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b50565b610994838383604051806020016040528060008152506114bb565b6007546001600160a01b03163314610c495760405162461bcd60e51b8152600401610756906123b0565b600a55565b600080548210610cac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610756565b5090565b6007546001600160a01b03163314610cda5760405162461bcd60e51b8152600401610756906123b0565b8051610ced906009906020840190611f13565b5050565b6000610cfc826119ea565b5192915050565b60098054610d10906124c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906124c6565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610756565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610756906123b0565b610e566000611ac1565b565b6007546001600160a01b03163314610e825760405162461bcd60e51b8152600401610756906123b0565b604051600090339083908381818185875af1925050503d8060008114610ec4576040519150601f19603f3d011682016040523d82523d6000602084013e610ec9565b606091505b5050905080610ced57600080fd5b606060028054610773906124c6565b6007546001600160a01b03163314610f105760405162461bcd60e51b8152600401610756906123b0565b828114610f695760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610756565b600080610f7560005490565b905060005b85811015610fb857868682818110610f9457610f9461255c565b9050602002013583610fa69190612438565b9250610fb181612501565b9050610f7a565b50600b54610fc68383612438565b1115610fff5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610756565b6000915060005b83811015611066576110568585838181106110235761102361255c565b90506020020160208101906110389190612081565b88888481811061104a5761104a61255c565b90506020020135611b13565b61105f81612501565b9050611006565b50505050505050565b600260085414156110c25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b6002600855600054816111175760405162461bcd60e51b815260206004820181905260248201527f43616e74206d696e742030205765417265416c6c476f696e67546f50726964656044820152606401610756565b600e548211156111755760405162461bcd60e51b815260206004820152602360248201527f43616e74206d696e74206d6f7265205765417265416c6c476f696e67546f507260448201526269646560e81b6064820152608401610756565b600b546111828383612438565b11156111e15760405162461bcd60e51b815260206004820152602860248201527f43616e7420657863656564205765417265416c6c476f696e67546f50726964656044820152675320737570706c7960c01b6064820152608401610756565b81600a546111ef9190612464565b3410156111fb57600080fd5b6112053383611b13565b50506001600855565b6001600160a01b0382163314156112675760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610756565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156113265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b600260085560008054338252600f602052604090912054600d5461134a8483612438565b11156113ae5760405162461bcd60e51b815260206004820152602d60248201527f4d6178205765417265416c6c476f696e67546f5072696465207065722061646460448201526c1c995cdcc8195e18d959591959609a1b6064820152608401610756565b600083116113fe5760405162461bcd60e51b815260206004820181905260248201527f43616e74206d696e742030205765417265416c6c476f696e67546f50726964656044820152606401610756565b600c5461140b8484612438565b111561146a5760405162461bcd60e51b815260206004820152602860248201527f43616e7420657863656564205765417265416c6c476f696e67546f50726964656044820152677320737570706c7960c01b6064820152608401610756565b60005b838110156114a657336000908152600f6020526040812080549161149083612501565b91905055508061149f90612501565b905061146d565b506114b13384611b13565b5050600160085550565b6114c6848484611705565b6114d284848484611b2d565b6114ee5760405162461bcd60e51b8152600401610756906123e5565b50505050565b6007546001600160a01b0316331461151e5760405162461bcd60e51b8152600401610756906123b0565b600c55565b6060611530826000541190565b6115865760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610756565b6000611590611c3b565b905060008151116115b057604051806020016040528060008152506115db565b806115ba84611c4a565b6040516020016115cb929190612321565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461160c5760405162461bcd60e51b8152600401610756906123b0565b600d55565b6007546001600160a01b0316331461163b5760405162461bcd60e51b8152600401610756906123b0565b6001600160a01b0381166116a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b610c0181611ac1565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611710826119ea565b80519091506000906001600160a01b0316336001600160a01b0316148061174757503361173c846107f6565b6001600160a01b0316145b80611759575081516117599033610671565b9050806117c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610756565b846001600160a01b031682600001516001600160a01b0316146118375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610756565b6001600160a01b03841661189b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610756565b6118ab60008484600001516116a9565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119a057611953816000541190565b156119a0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a09826000541190565b611a685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610756565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ab7579392505050565b5060001901611a6a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced828260405180602001604052806000815250611d48565b60006001600160a01b0384163b15611c2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b71903390899088908890600401612360565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb891810190612276565b60015b611c15573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0d5760405162461bcd60e51b8152600401610756906123e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c33565b5060015b949350505050565b606060098054610773906124c6565b606081611c6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c985780611c8281612501565b9150611c919050600a83612450565b9150611c72565b60008167ffffffffffffffff811115611cb357611cb3612572565b6040519080825280601f01601f191660200182016040528015611cdd576020820181803683370190505b5090505b8415611c3357611cf2600183612483565b9150611cff600a8661251c565b611d0a906030612438565b60f81b818381518110611d1f57611d1f61255c565b60200101906001600160f81b031916908160001a905350611d41600a86612450565b9450611ce1565b61099483838360016000546001600160a01b038516611db35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610756565b83611e115760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610756565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f0a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611efe57611ee26000888488611b2d565b611efe5760405162461bcd60e51b8152600401610756906123e5565b60019182019101611e8f565b506000556119e3565b828054611f1f906124c6565b90600052602060002090601f016020900481019282611f415760008555611f87565b82601f10611f5a57805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f87578251825591602001919060010190611f6c565b50610cac9291505b80821115610cac5760008155600101611f8f565b600067ffffffffffffffff80841115611fbe57611fbe612572565b604051601f8501601f19908116603f01168101908282118183101715611fe657611fe6612572565b81604052809350858152868686011115611fff57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203057600080fd5b919050565b60008083601f84011261204757600080fd5b50813567ffffffffffffffff81111561205f57600080fd5b6020830191508360208260051b850101111561207a57600080fd5b9250929050565b60006020828403121561209357600080fd5b6115db82612019565b600080604083850312156120af57600080fd5b6120b883612019565b91506120c660208401612019565b90509250929050565b6000806000606084860312156120e457600080fd5b6120ed84612019565b92506120fb60208501612019565b9150604084013590509250925092565b6000806000806080858703121561212157600080fd5b61212a85612019565b935061213860208601612019565b925060408501359150606085013567ffffffffffffffff81111561215b57600080fd5b8501601f8101871361216c57600080fd5b61217b87823560208401611fa3565b91505092959194509250565b6000806040838503121561219a57600080fd5b6121a383612019565b9150602083013580151581146121b857600080fd5b809150509250929050565b600080604083850312156121d657600080fd5b6121df83612019565b946020939093013593505050565b6000806000806040858703121561220357600080fd5b843567ffffffffffffffff8082111561221b57600080fd5b61222788838901612035565b9096509450602087013591508082111561224057600080fd5b5061224d87828801612035565b95989497509550505050565b60006020828403121561226b57600080fd5b81356115db81612588565b60006020828403121561228857600080fd5b81516115db81612588565b6000602082840312156122a557600080fd5b813567ffffffffffffffff8111156122bc57600080fd5b8201601f810184136122cd57600080fd5b611c3384823560208401611fa3565b6000602082840312156122ee57600080fd5b5035919050565b6000815180845261230d81602086016020860161249a565b601f01601f19169290920160200192915050565b6000835161233381846020880161249a565b83519083019061234781836020880161249a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612393908301846122f5565b9695505050505050565b6020815260006115db60208301846122f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561244b5761244b612530565b500190565b60008261245f5761245f612546565b500490565b600081600019048311821515161561247e5761247e612530565b500290565b60008282101561249557612495612530565b500390565b60005b838110156124b557818101518382015260200161249d565b838111156114ee5750506000910152565b600181811c908216806124da57607f821691505b602082108114156124fb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561251557612515612530565b5060010190565b60008261252b5761252b612546565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea2646970667358221220908057a96c969efcc9aa276ed6077447bfae57f1d6166b6267727f828c6040f064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd14610600578063d5abeb0114610620578063dc4e66b514610636578063e985e9c514610656578063f2fde38b1461069f57600080fd5b8063a0712d681461057a578063a22cb4651461058d578063a4146733146105ad578063b88d4fde146105c0578063bde12d73146105e057600080fd5b806377ad99f0116100f257806377ad99f0146104e75780637c6b172d146104fa5780638da5cb5b1461052757806395d89b411461054557806396ea3a471461055a57600080fd5b80636352211e1461047d5780636c0360eb1461049d57806370a08231146104b2578063715018a6146104d257600080fd5b80632f745c59116101b1578063485a68a311610175578063485a68a3146103f25780634f6ccce71461040857806355f804b31461042857806356569a1d146104485780635c975abb1461045e57600080fd5b80632f745c591461037457806334c8fd75146103945780633ccfd60b146103aa57806342842e0e146103b257806344a0d68a146103d257600080fd5b8063095ea7b3116101f8578063095ea7b3146102db57806313faede6146102fb57806318160ddd1461031f578063228025e81461033457806323b872dd1461035457600080fd5b806301ffc9a71461022a578063022d67dd1461025f57806306fdde0314610281578063081812fc146102a3575b600080fd5b34801561023657600080fd5b5061024a610245366004612259565b6106bf565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027f61027a3660046122dc565b61072c565b005b34801561028d57600080fd5b50610296610764565b604051610256919061239d565b3480156102af57600080fd5b506102c36102be3660046122dc565b6107f6565b6040516001600160a01b039091168152602001610256565b3480156102e757600080fd5b5061027f6102f63660046121c3565b610881565b34801561030757600080fd5b50610311600a5481565b604051908152602001610256565b34801561032b57600080fd5b50600054610311565b34801561034057600080fd5b5061027f61034f3660046122dc565b610999565b34801561036057600080fd5b5061027f61036f3660046120cf565b610a1a565b34801561038057600080fd5b5061031161038f3660046121c3565b610a25565b3480156103a057600080fd5b50610311600e5481565b61027f610b82565b3480156103be57600080fd5b5061027f6103cd3660046120cf565b610c04565b3480156103de57600080fd5b5061027f6103ed3660046122dc565b610c1f565b3480156103fe57600080fd5b50610311600c5481565b34801561041457600080fd5b506103116104233660046122dc565b610c4e565b34801561043457600080fd5b5061027f610443366004612293565b610cb0565b34801561045457600080fd5b50610311600d5481565b34801561046a57600080fd5b50600754600160a01b900460ff1661024a565b34801561048957600080fd5b506102c36104983660046122dc565b610cf1565b3480156104a957600080fd5b50610296610d03565b3480156104be57600080fd5b506103116104cd366004612081565b610d91565b3480156104de57600080fd5b5061027f610e22565b61027f6104f53660046122dc565b610e58565b34801561050657600080fd5b50610311610515366004612081565b600f6020526000908152604090205481565b34801561053357600080fd5b506007546001600160a01b03166102c3565b34801561055157600080fd5b50610296610ed7565b34801561056657600080fd5b5061027f6105753660046121ed565b610ee6565b61027f6105883660046122dc565b61106f565b34801561059957600080fd5b5061027f6105a8366004612187565b61120e565b61027f6105bb3660046122dc565b6112d3565b3480156105cc57600080fd5b5061027f6105db36600461210b565b6114bb565b3480156105ec57600080fd5b5061027f6105fb3660046122dc565b6114f4565b34801561060c57600080fd5b5061029661061b3660046122dc565b611523565b34801561062c57600080fd5b50610311600b5481565b34801561064257600080fd5b5061027f6106513660046122dc565b6115e2565b34801561066257600080fd5b5061024a61067136600461209c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b5061027f6106ba366004612081565b611611565b60006001600160e01b031982166380ac58cd60e01b14806106f057506001600160e01b03198216635b5e139f60e01b145b8061070b57506001600160e01b0319821663780e9d6360e01b145b8061072657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906123b0565b60405180910390fd5b600e55565b606060018054610773906124c6565b80601f016020809104026020016040519081016040528092919081815260200182805461079f906124c6565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000610803826000541190565b6108655760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610756565b506000908152600560205260409020546001600160a01b031690565b600061088c82610cf1565b9050806001600160a01b0316836001600160a01b031614156108fb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610756565b336001600160a01b038216148061091757506109178133610671565b6109895760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610756565b6109948383836116a9565b505050565b6007546001600160a01b031633146109c35760405162461bcd60e51b8152600401610756906123b0565b600b54811115610a155760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420696e637265617365206d617820737570706c790000000000006044820152606401610756565b600b55565b610994838383611705565b6000610a3083610d91565b8210610a895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610756565b600080549080805b83811015610b22576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b195786841415610b125750935061072692505050565b6001909301925b50600101610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610756565b6007546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610756906123b0565b604051600090339047908381818185875af1925050503d8060008114610bee576040519150601f19603f3d011682016040523d82523d6000602084013e610bf3565b606091505b5050905080610c0157600080fd5b50565b610994838383604051806020016040528060008152506114bb565b6007546001600160a01b03163314610c495760405162461bcd60e51b8152600401610756906123b0565b600a55565b600080548210610cac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610756565b5090565b6007546001600160a01b03163314610cda5760405162461bcd60e51b8152600401610756906123b0565b8051610ced906009906020840190611f13565b5050565b6000610cfc826119ea565b5192915050565b60098054610d10906124c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3c906124c6565b8015610d895780601f10610d5e57610100808354040283529160200191610d89565b820191906000526020600020905b815481529060010190602001808311610d6c57829003601f168201915b505050505081565b60006001600160a01b038216610dfd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610756565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610756906123b0565b610e566000611ac1565b565b6007546001600160a01b03163314610e825760405162461bcd60e51b8152600401610756906123b0565b604051600090339083908381818185875af1925050503d8060008114610ec4576040519150601f19603f3d011682016040523d82523d6000602084013e610ec9565b606091505b5050905080610ced57600080fd5b606060028054610773906124c6565b6007546001600160a01b03163314610f105760405162461bcd60e51b8152600401610756906123b0565b828114610f695760405162461bcd60e51b815260206004820152602160248201527f50726f76696465207175616e74697469657320616e6420726563697069656e746044820152607360f81b6064820152608401610756565b600080610f7560005490565b905060005b85811015610fb857868682818110610f9457610f9461255c565b9050602002013583610fa69190612438565b9250610fb181612501565b9050610f7a565b50600b54610fc68383612438565b1115610fff5760405162461bcd60e51b8152602060048201526008602482015267546f6f206d616e7960c01b6044820152606401610756565b6000915060005b83811015611066576110568585838181106110235761102361255c565b90506020020160208101906110389190612081565b88888481811061104a5761104a61255c565b90506020020135611b13565b61105f81612501565b9050611006565b50505050505050565b600260085414156110c25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b6002600855600054816111175760405162461bcd60e51b815260206004820181905260248201527f43616e74206d696e742030205765417265416c6c476f696e67546f50726964656044820152606401610756565b600e548211156111755760405162461bcd60e51b815260206004820152602360248201527f43616e74206d696e74206d6f7265205765417265416c6c476f696e67546f507260448201526269646560e81b6064820152608401610756565b600b546111828383612438565b11156111e15760405162461bcd60e51b815260206004820152602860248201527f43616e7420657863656564205765417265416c6c476f696e67546f50726964656044820152675320737570706c7960c01b6064820152608401610756565b81600a546111ef9190612464565b3410156111fb57600080fd5b6112053383611b13565b50506001600855565b6001600160a01b0382163314156112675760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610756565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260085414156113265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610756565b600260085560008054338252600f602052604090912054600d5461134a8483612438565b11156113ae5760405162461bcd60e51b815260206004820152602d60248201527f4d6178205765417265416c6c476f696e67546f5072696465207065722061646460448201526c1c995cdcc8195e18d959591959609a1b6064820152608401610756565b600083116113fe5760405162461bcd60e51b815260206004820181905260248201527f43616e74206d696e742030205765417265416c6c476f696e67546f50726964656044820152606401610756565b600c5461140b8484612438565b111561146a5760405162461bcd60e51b815260206004820152602860248201527f43616e7420657863656564205765417265416c6c476f696e67546f50726964656044820152677320737570706c7960c01b6064820152608401610756565b60005b838110156114a657336000908152600f6020526040812080549161149083612501565b91905055508061149f90612501565b905061146d565b506114b13384611b13565b5050600160085550565b6114c6848484611705565b6114d284848484611b2d565b6114ee5760405162461bcd60e51b8152600401610756906123e5565b50505050565b6007546001600160a01b0316331461151e5760405162461bcd60e51b8152600401610756906123b0565b600c55565b6060611530826000541190565b6115865760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610756565b6000611590611c3b565b905060008151116115b057604051806020016040528060008152506115db565b806115ba84611c4a565b6040516020016115cb929190612321565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461160c5760405162461bcd60e51b8152600401610756906123b0565b600d55565b6007546001600160a01b0316331461163b5760405162461bcd60e51b8152600401610756906123b0565b6001600160a01b0381166116a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b610c0181611ac1565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611710826119ea565b80519091506000906001600160a01b0316336001600160a01b0316148061174757503361173c846107f6565b6001600160a01b0316145b80611759575081516117599033610671565b9050806117c35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610756565b846001600160a01b031682600001516001600160a01b0316146118375760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610756565b6001600160a01b03841661189b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610756565b6118ab60008484600001516116a9565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166119a057611953816000541190565b156119a0578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611a09826000541190565b611a685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610756565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ab7579392505050565b5060001901611a6a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced828260405180602001604052806000815250611d48565b60006001600160a01b0384163b15611c2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b71903390899088908890600401612360565b602060405180830381600087803b158015611b8b57600080fd5b505af1925050508015611bbb575060408051601f3d908101601f19168201909252611bb891810190612276565b60015b611c15573d808015611be9576040519150601f19603f3d011682016040523d82523d6000602084013e611bee565b606091505b508051611c0d5760405162461bcd60e51b8152600401610756906123e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c33565b5060015b949350505050565b606060098054610773906124c6565b606081611c6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c985780611c8281612501565b9150611c919050600a83612450565b9150611c72565b60008167ffffffffffffffff811115611cb357611cb3612572565b6040519080825280601f01601f191660200182016040528015611cdd576020820181803683370190505b5090505b8415611c3357611cf2600183612483565b9150611cff600a8661251c565b611d0a906030612438565b60f81b818381518110611d1f57611d1f61255c565b60200101906001600160f81b031916908160001a905350611d41600a86612450565b9450611ce1565b61099483838360016000546001600160a01b038516611db35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610756565b83611e115760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610756565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611f0a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611efe57611ee26000888488611b2d565b611efe5760405162461bcd60e51b8152600401610756906123e5565b60019182019101611e8f565b506000556119e3565b828054611f1f906124c6565b90600052602060002090601f016020900481019282611f415760008555611f87565b82601f10611f5a57805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f87578251825591602001919060010190611f6c565b50610cac9291505b80821115610cac5760008155600101611f8f565b600067ffffffffffffffff80841115611fbe57611fbe612572565b604051601f8501601f19908116603f01168101908282118183101715611fe657611fe6612572565b81604052809350858152868686011115611fff57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203057600080fd5b919050565b60008083601f84011261204757600080fd5b50813567ffffffffffffffff81111561205f57600080fd5b6020830191508360208260051b850101111561207a57600080fd5b9250929050565b60006020828403121561209357600080fd5b6115db82612019565b600080604083850312156120af57600080fd5b6120b883612019565b91506120c660208401612019565b90509250929050565b6000806000606084860312156120e457600080fd5b6120ed84612019565b92506120fb60208501612019565b9150604084013590509250925092565b6000806000806080858703121561212157600080fd5b61212a85612019565b935061213860208601612019565b925060408501359150606085013567ffffffffffffffff81111561215b57600080fd5b8501601f8101871361216c57600080fd5b61217b87823560208401611fa3565b91505092959194509250565b6000806040838503121561219a57600080fd5b6121a383612019565b9150602083013580151581146121b857600080fd5b809150509250929050565b600080604083850312156121d657600080fd5b6121df83612019565b946020939093013593505050565b6000806000806040858703121561220357600080fd5b843567ffffffffffffffff8082111561221b57600080fd5b61222788838901612035565b9096509450602087013591508082111561224057600080fd5b5061224d87828801612035565b95989497509550505050565b60006020828403121561226b57600080fd5b81356115db81612588565b60006020828403121561228857600080fd5b81516115db81612588565b6000602082840312156122a557600080fd5b813567ffffffffffffffff8111156122bc57600080fd5b8201601f810184136122cd57600080fd5b611c3384823560208401611fa3565b6000602082840312156122ee57600080fd5b5035919050565b6000815180845261230d81602086016020860161249a565b601f01601f19169290920160200192915050565b6000835161233381846020880161249a565b83519083019061234781836020880161249a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612393908301846122f5565b9695505050505050565b6020815260006115db60208301846122f5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561244b5761244b612530565b500190565b60008261245f5761245f612546565b500490565b600081600019048311821515161561247e5761247e612530565b500290565b60008282101561249557612495612530565b500390565b60005b838110156124b557818101518382015260200161249d565b838111156114ee5750506000910152565b600181811c908216806124da57607f821691505b602082108114156124fb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561251557612515612530565b5060010190565b60008261252b5761252b612546565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea2646970667358221220908057a96c969efcc9aa276ed6077447bfae57f1d6166b6267727f828c6040f064736f6c63430008070033

Deployed Bytecode Sourcemap

45163:4098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24840:372;;;;;;;;;;-1:-1:-1;24840:372:0;;;;;:::i;:::-;;:::i;:::-;;;7173:14:1;;7166:22;7148:41;;7136:2;7121:18;24840:372:0;;;;;;;;48632:122;;;;;;;;;;-1:-1:-1;48632:122:0;;;;;:::i;:::-;;:::i;:::-;;26726:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28288:214::-;;;;;;;;;;-1:-1:-1;28288:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6471:32:1;;;6453:51;;6441:2;6426:18;28288:214:0;6307:203:1;27809:413:0;;;;;;;;;;-1:-1:-1;27809:413:0;;;;;:::i;:::-;;:::i;45307:33::-;;;;;;;;;;;;;;;;;;;18712:25:1;;;18700:2;18685:18;45307:33:0;18566:177:1;23097:100:0;;;;;;;;;;-1:-1:-1;23150:7:0;23177:12;23097:100;;48200:182;;;;;;;;;;-1:-1:-1;48200:182:0;;;;;:::i;:::-;;:::i;29164:162::-;;;;;;;;;;-1:-1:-1;29164:162:0;;;;;:::i;:::-;;:::i;23761:1007::-;;;;;;;;;;-1:-1:-1;23761:1007:0;;;;;:::i;:::-;;:::i;45468:43::-;;;;;;;;;;;;;;;;48886:192;;;:::i;29397:177::-;;;;;;;;;;-1:-1:-1;29397:177:0;;;;;:::i;:::-;;:::i;48106:86::-;;;;;;;;;;-1:-1:-1;48106:86:0;;;;;:::i;:::-;;:::i;45385:28::-;;;;;;;;;;;;;;;;23274:187;;;;;;;;;;-1:-1:-1;23274:187:0;;;;;:::i;:::-;;:::i;48520:104::-;;;;;;;;;;-1:-1:-1;48520:104:0;;;;;:::i;:::-;;:::i;45420:41::-;;;;;;;;;;;;;;;;39014:86;;;;;;;;;;-1:-1:-1;39085:7:0;;-1:-1:-1;;;39085:7:0;;;;39014:86;;26535:124;;;;;;;;;;-1:-1:-1;26535:124:0;;;;;:::i;:::-;;:::i;45279:21::-;;;;;;;;;;;;;:::i;25276:221::-;;;;;;;;;;-1:-1:-1;25276:221:0;;;;;:::i;:::-;;:::i;41831:94::-;;;;;;;;;;;;;:::i;49086:172::-;;;;;;:::i;:::-;;:::i;45520:59::-;;;;;;;;;;-1:-1:-1;45520:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;41180:87;;;;;;;;;;-1:-1:-1;41253:6:0;;-1:-1:-1;;;;;41253:6:0;41180:87;;26895:104;;;;;;;;;;;;;:::i;46974:667::-;;;;;;;;;;-1:-1:-1;46974:667:0;;;;;:::i;:::-;;:::i;46483:483::-;;;;;;:::i;:::-;;:::i;28574:288::-;;;;;;;;;;-1:-1:-1;28574:288:0;;;;;:::i;:::-;;:::i;45805:668::-;;;;;;:::i;:::-;;:::i;29645:355::-;;;;;;;;;;-1:-1:-1;29645:355:0;;;;;:::i;:::-;;:::i;48389:123::-;;;;;;;;;;-1:-1:-1;48389:123:0;;;;;:::i;:::-;;:::i;47649:445::-;;;;;;;;;;-1:-1:-1;47649:445:0;;;;;:::i;:::-;;:::i;45347:31::-;;;;;;;;;;;;;;;;48762:118;;;;;;;;;;-1:-1:-1;48762:118:0;;;;;:::i;:::-;;:::i;28933:164::-;;;;;;;;;;-1:-1:-1;28933:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29054:25:0;;;29030:4;29054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28933:164;42080:229;;;;;;;;;;-1:-1:-1;42080:229:0;;;;;:::i;:::-;;:::i;24840:372::-;24942:4;-1:-1:-1;;;;;;24979:40:0;;-1:-1:-1;;;24979:40:0;;:105;;-1:-1:-1;;;;;;;25036:48:0;;-1:-1:-1;;;25036:48:0;24979:105;:172;;;-1:-1:-1;;;;;;;25101:50:0;;-1:-1:-1;;;25101:50:0;24979:172;:225;;;-1:-1:-1;;;;;;;;;;14465:40:0;;;25168:36;24959:245;24840:372;-1:-1:-1;;24840:372:0:o;48632:122::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;;;;;;;;;48713:23:::1;:33:::0;48632:122::o;26726:100::-;26780:13;26813:5;26806:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26726:100;:::o;28288:214::-;28356:7;28384:16;28392:7;30312:4;30346:12;-1:-1:-1;30336:22:0;30255:111;28384:16;28376:74;;;;-1:-1:-1;;;28376:74:0;;18354:2:1;28376:74:0;;;18336:21:1;18393:2;18373:18;;;18366:30;18432:34;18412:18;;;18405:62;-1:-1:-1;;;18483:18:1;;;18476:43;18536:19;;28376:74:0;18152:409:1;28376:74:0;-1:-1:-1;28470:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28470:24:0;;28288:214::o;27809:413::-;27882:13;27898:24;27914:7;27898:15;:24::i;:::-;27882:40;;27947:5;-1:-1:-1;;;;;27941:11:0;:2;-1:-1:-1;;;;;27941:11:0;;;27933:58;;;;-1:-1:-1;;;27933:58:0;;15529:2:1;27933:58:0;;;15511:21:1;15568:2;15548:18;;;15541:30;15607:34;15587:18;;;15580:62;-1:-1:-1;;;15658:18:1;;;15651:32;15700:19;;27933:58:0;15327:398:1;27933:58:0;2883:10;-1:-1:-1;;;;;28026:21:0;;;;:62;;-1:-1:-1;28051:37:0;28068:5;2883:10;28933:164;:::i;28051:37::-;28004:169;;;;-1:-1:-1;;;28004:169:0;;12049:2:1;28004:169:0;;;12031:21:1;12088:2;12068:18;;;12061:30;12127:34;12107:18;;;12100:62;12198:27;12178:18;;;12171:55;12243:19;;28004:169:0;11847:421:1;28004:169:0;28186:28;28195:2;28199:7;28208:5;28186:8;:28::i;:::-;27871:351;27809:413;;:::o;48200:182::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48298:9:::1;;48281:13;:26;;48273:65;;;::::0;-1:-1:-1;;;48273:65:0;;12475:2:1;48273:65:0::1;::::0;::::1;12457:21:1::0;12514:2;12494:18;;;12487:30;12553:28;12533:18;;;12526:56;12599:18;;48273:65:0::1;12273:350:1::0;48273:65:0::1;48349:9;:25:::0;48200:182::o;29164:162::-;29290:28;29300:4;29306:2;29310:7;29290:9;:28::i;23761:1007::-;23850:7;23886:16;23896:5;23886:9;:16::i;:::-;23878:5;:24;23870:71;;;;-1:-1:-1;;;23870:71:0;;7626:2:1;23870:71:0;;;7608:21:1;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:1;;;7748:32;7797:19;;23870:71:0;7424:398:1;23870:71:0;23952:22;23177:12;;;23952:22;;24215:466;24235:14;24231:1;:18;24215:466;;;24275:31;24309:14;;;:11;:14;;;;;;;;;24275:48;;;;;;;;;-1:-1:-1;;;;;24275:48:0;;;;;-1:-1:-1;;;24275:48:0;;;;;;;;;;;;24346:28;24342:111;;24419:14;;;-1:-1:-1;24342:111:0;24496:5;-1:-1:-1;;;;;24475:26:0;:17;-1:-1:-1;;;;;24475:26:0;;24471:195;;;24545:5;24530:11;:20;24526:85;;;-1:-1:-1;24586:1:0;-1:-1:-1;24579:8:0;;-1:-1:-1;;;24579:8:0;24526:85;24633:13;;;;;24471:195;-1:-1:-1;24251:3:0;;24215:466;;;-1:-1:-1;24704:56:0;;-1:-1:-1;;;24704:56:0;;17163:2:1;24704:56:0;;;17145:21:1;17202:2;17182:18;;;17175:30;17241:34;17221:18;;;17214:62;-1:-1:-1;;;17292:18:1;;;17285:44;17346:19;;24704:56:0;16961:410:1;48886:192:0;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48961:82:::1;::::0;48943:12:::1;::::0;48969:10:::1;::::0;49007:21:::1;::::0;48943:12;48961:82;48943:12;48961:82;49007:21;48969:10;48961:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48942:101;;;49062:7;49054:16;;;::::0;::::1;;48931:147;48886:192::o:0;29397:177::-;29527:39;29544:4;29550:2;29554:7;29527:39;;;;;;;;;;;;:16;:39::i;48106:86::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48169:4:::1;:15:::0;48106:86::o;23274:187::-;23341:7;23177:12;;23369:5;:21;23361:69;;;;-1:-1:-1;;;23361:69:0;;10062:2:1;23361:69:0;;;10044:21:1;10101:2;10081:18;;;10074:30;10140:34;10120:18;;;10113:62;-1:-1:-1;;;10191:18:1;;;10184:33;10234:19;;23361:69:0;9860:399:1;23361:69:0;-1:-1:-1;23448:5:0;23274:187::o;48520:104::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48595:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48520:104:::0;:::o;26535:124::-;26599:7;26626:20;26638:7;26626:11;:20::i;:::-;:25;;26535:124;-1:-1:-1;;26535:124:0:o;45279:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25276:221::-;25340:7;-1:-1:-1;;;;;25368:19:0;;25360:75;;;;-1:-1:-1;;;25360:75:0;;12830:2:1;25360:75:0;;;12812:21:1;12869:2;12849:18;;;12842:30;12908:34;12888:18;;;12881:62;-1:-1:-1;;;12959:18:1;;;12952:41;13010:19;;25360:75:0;12628:407:1;25360:75:0;-1:-1:-1;;;;;;25461:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25461:27:0;;25276:221::o;41831:94::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;41896:21:::1;41914:1;41896:9;:21::i;:::-;41831:94::o:0;49086:172::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;49179:44:::1;::::0;49161:12:::1;::::0;49187:10:::1;::::0;49211:7;;49161:12;49179:44;49161:12;49179:44;49211:7;49187:10;49179:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49160:63;;;49242:7;49234:16;;;::::0;::::1;26895:104:::0;26951:13;26984:7;26977:14;;;;;:::i;46974:667::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;47122:35;;::::1;47100:118;;;::::0;-1:-1:-1;;;47100:118:0;;11647:2:1;47100:118:0::1;::::0;::::1;11629:21:1::0;11686:2;11666:18;;;11659:30;11725:34;11705:18;;;11698:62;-1:-1:-1;;;11776:18:1;;;11769:31;11817:19;;47100:118:0::1;11445:397:1::0;47100:118:0::1;47229:21;47265:9:::0;47277:13:::1;23150:7:::0;23177:12;;23097:100;47277:13:::1;47265:25;;47306:9;47301:101;47321:19:::0;;::::1;47301:101;;;47379:8;;47388:1;47379:11;;;;;;;:::i;:::-;;;;;;;47362:28;;;;;:::i;:::-;::::0;-1:-1:-1;47342:3:0::1;::::0;::::1;:::i;:::-;;;47301:101;;;-1:-1:-1::0;47441:9:0::1;::::0;47420:17:::1;47424:13:::0;47420:1;:17:::1;:::i;:::-;:30;;47412:51;;;::::0;-1:-1:-1;;;47412:51:0;;13649:2:1;47412:51:0::1;::::0;::::1;13631:21:1::0;13688:1;13668:18;;;13661:29;-1:-1:-1;;;13706:18:1;;;13699:38;13754:18;;47412:51:0::1;13447:331:1::0;47412:51:0::1;47474:20;;;47510:9;47505:110;47525:20:::0;;::::1;47505:110;;;47567:36;47577:9;;47587:1;47577:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47591:8;;47600:1;47591:11;;;;;;;:::i;:::-;;;;;;;47567:9;:36::i;:::-;47547:3;::::0;::::1;:::i;:::-;;;47505:110;;;-1:-1:-1::0;;;;;;;46974:667:0:o;46483:483::-;44175:1;44771:7;;:19;;44763:63;;;;-1:-1:-1;;;44763:63:0;;17578:2:1;44763:63:0;;;17560:21:1;17617:2;17597:18;;;17590:30;17656:33;17636:18;;;17629:61;17707:18;;44763:63:0;17376:355:1;44763:63:0;44175:1;44904:7;:18;46557:9:::1;23177:12:::0;46601:15;46593:60:::1;;;::::0;-1:-1:-1;;;46593:60:0;;10872:2:1;46593:60:0::1;::::0;::::1;10854:21:1::0;;;10891:18;;;10884:30;10950:34;10930:18;;;10923:62;11002:18;;46593:60:0::1;10670:356:1::0;46593:60:0::1;46687:23;;46672:11;:38;;46664:87;;;::::0;-1:-1:-1;;;46664:87:0;;8029:2:1;46664:87:0::1;::::0;::::1;8011:21:1::0;8068:2;8048:18;;;8041:30;8107:34;8087:18;;;8080:62;-1:-1:-1;;;8158:18:1;;;8151:33;8201:19;;46664:87:0::1;7827:399:1::0;46664:87:0::1;46789:9;::::0;46770:15:::1;46774:11:::0;46770:1;:15:::1;:::i;:::-;:28;;46762:81;;;::::0;-1:-1:-1;;;46762:81:0;;9653:2:1;46762:81:0::1;::::0;::::1;9635:21:1::0;9692:2;9672:18;;;9665:30;9731:34;9711:18;;;9704:62;-1:-1:-1;;;9782:18:1;;;9775:38;9830:19;;46762:81:0::1;9451:404:1::0;46762:81:0::1;46882:11;46875:4;;:18;;;;:::i;:::-;46862:9;:31;;46854:40;;;::::0;::::1;;46905:34;46915:10;46927:11;46905:9;:34::i;:::-;-1:-1:-1::0;;44131:1:0;45083:7;:22;46483:483::o;28574:288::-;-1:-1:-1;;;;;28669:24:0;;2883:10;28669:24;;28661:63;;;;-1:-1:-1;;;28661:63:0;;14346:2:1;28661:63:0;;;14328:21:1;14385:2;14365:18;;;14358:30;14424:28;14404:18;;;14397:56;14470:18;;28661:63:0;14144:350:1;28661:63:0;2883:10;28737:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28737:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28737:53:0;;;;;;;;;;28806:48;;7148:41:1;;;28737:42:0;;2883:10;28806:48;;7121:18:1;28806:48:0;;;;;;;28574:288;;:::o;45805:668::-;44175:1;44771:7;;:19;;44763:63;;;;-1:-1:-1;;;44763:63:0;;17578:2:1;44763:63:0;;;17560:21:1;17617:2;17597:18;;;17590:30;17656:33;17636:18;;;17629:61;17707:18;;44763:63:0;17376:355:1;44763:63:0;44175:1;44904:7;:18;45876:9:::1;23177:12:::0;;45970:10:::1;45945:36:::0;;:24:::1;:36;::::0;;;;;;46040:22:::1;::::0;46000:36:::1;46025:11:::0;45945:36;46000::::1;:::i;:::-;:62;;45992:120;;;::::0;-1:-1:-1;;;45992:120:0;;11233:2:1;45992:120:0::1;::::0;::::1;11215:21:1::0;11272:2;11252:18;;;11245:30;11311:34;11291:18;;;11284:62;-1:-1:-1;;;11362:18:1;;;11355:43;11415:19;;45992:120:0::1;11031:409:1::0;45992:120:0::1;46139:1;46125:11;:15;46117:61;;;::::0;-1:-1:-1;;;46117:61:0;;10872:2:1;46117:61:0::1;::::0;::::1;10854:21:1::0;;;10891:18;;;10884:30;10950:34;10930:18;;;10923:62;11002:18;;46117:61:0::1;10670:356:1::0;46117:61:0::1;46210:7;::::0;46191:15:::1;46195:11:::0;46191:1;:15:::1;:::i;:::-;:26;;46183:80;;;::::0;-1:-1:-1;;;46183:80:0;;15120:2:1;46183:80:0::1;::::0;::::1;15102:21:1::0;15159:2;15139:18;;;15132:30;15198:34;15178:18;;;15171:62;-1:-1:-1;;;15249:18:1;;;15242:38;15297:19;;46183:80:0::1;14918:404:1::0;46183:80:0::1;46273:9;46268:103;46292:11;46288:1;:15;46268:103;;;46350:10;46325:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;46305:3;;;;:::i;:::-;;;46268:103;;;;46381:34;46391:10;46403:11;46381:9;:34::i;:::-;-1:-1:-1::0;;44131:1:0;45083:7;:22;-1:-1:-1;45805:668:0:o;29645:355::-;29804:28;29814:4;29820:2;29824:7;29804:9;:28::i;:::-;29865:48;29888:4;29894:2;29898:7;29907:5;29865:22;:48::i;:::-;29843:149;;;;-1:-1:-1;;;29843:149:0;;;;;;;:::i;:::-;29645:355;;;;:::o;48389:123::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48477:7:::1;:27:::0;48389:123::o;47649:445::-;47767:13;47806:16;47814:7;30312:4;30346:12;-1:-1:-1;30336:22:0;30255:111;47806:16;47798:62;;;;-1:-1:-1;;;47798:62:0;;8433:2:1;47798:62:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:31;8603:19;;47798:62:0;8231:397:1;47798:62:0;47871:28;47902:10;:8;:10::i;:::-;47871:41;;47974:1;47949:14;47943:28;:32;:143;;;;;;;;;;;;;;;;;48019:14;48035:18;:7;:16;:18::i;:::-;48002:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47943:143;47923:163;47649:445;-1:-1:-1;;;47649:445:0:o;48762:118::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;48840:22:::1;:32:::0;48762:118::o;42080:229::-;41253:6;;-1:-1:-1;;;;;41253:6:0;2883:10;41400:23;41392:68;;;;-1:-1:-1;;;41392:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42183:22:0;::::1;42161:110;;;::::0;-1:-1:-1;;;42161:110:0;;8835:2:1;42161:110:0::1;::::0;::::1;8817:21:1::0;8874:2;8854:18;;;8847:30;8913:34;8893:18;;;8886:62;-1:-1:-1;;;8964:18:1;;;8957:36;9010:19;;42161:110:0::1;8633:402:1::0;42161:110:0::1;42282:19;42292:8;42282:9;:19::i;35175:196::-:0;35290:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35290:29:0;-1:-1:-1;;;;;35290:29:0;;;;;;;;;35335:28;;35290:24;;35335:28;;;;;;;35175:196;;;:::o;33055:2002::-;33170:35;33208:20;33220:7;33208:11;:20::i;:::-;33283:18;;33170:58;;-1:-1:-1;33241:22:0;;-1:-1:-1;;;;;33267:34:0;2883:10;-1:-1:-1;;;;;33267:34:0;;:87;;;-1:-1:-1;2883:10:0;33318:20;33330:7;33318:11;:20::i;:::-;-1:-1:-1;;;;;33318:36:0;;33267:87;:154;;;-1:-1:-1;33388:18:0;;33371:50;;2883:10;28933:164;:::i;33371:50::-;33241:181;;33443:17;33435:80;;;;-1:-1:-1;;;33435:80:0;;14701:2:1;33435:80:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;-1:-1:-1;;;14830:18:1;;;14823:48;14888:19;;33435:80:0;14499:414:1;33435:80:0;33558:4;-1:-1:-1;;;;;33536:26:0;:13;:18;;;-1:-1:-1;;;;;33536:26:0;;33528:77;;;;-1:-1:-1;;;33528:77:0;;13242:2:1;33528:77:0;;;13224:21:1;13281:2;13261:18;;;13254:30;13320:34;13300:18;;;13293:62;-1:-1:-1;;;13371:18:1;;;13364:36;13417:19;;33528:77:0;13040:402:1;33528:77:0;-1:-1:-1;;;;;33624:16:0;;33616:66;;;;-1:-1:-1;;;33616:66:0;;10466:2:1;33616:66:0;;;10448:21:1;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:35;10640:19;;33616:66:0;10264:401:1;33616:66:0;33803:49;33820:1;33824:7;33833:13;:18;;;33803:8;:49::i;:::-;-1:-1:-1;;;;;34148:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34148:31:0;;;-1:-1:-1;;;;;34148:31:0;;;-1:-1:-1;;34148:31:0;;;;;;;34194:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34194:29:0;;;;;;;;;;;;;34240:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34285:61:0;;;;-1:-1:-1;;;34330:15:0;34285:61;;;;;;34620:11;;;34650:24;;;;;:29;34620:11;;34650:29;34646:295;;34718:20;34726:11;30312:4;30346:12;-1:-1:-1;30336:22:0;30255:111;34718:20;34714:212;;;34795:18;;;34763:24;;;:11;:24;;;;;;;;:50;;34878:28;;;;34836:70;;-1:-1:-1;;;34836:70:0;-1:-1:-1;;;;;;34836:70:0;;;-1:-1:-1;;;;;34763:50:0;;;34836:70;;;;;;;34714:212;34123:829;34988:7;34984:2;-1:-1:-1;;;;;34969:27:0;34978:4;-1:-1:-1;;;;;34969:27:0;;;;;;;;;;;35007:42;33159:1898;;33055:2002;;;:::o;25936:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26039:16:0;26047:7;30312:4;30346:12;-1:-1:-1;30336:22:0;30255:111;26039:16;26031:71;;;;-1:-1:-1;;;26031:71:0;;9242:2:1;26031:71:0;;;9224:21:1;9281:2;9261:18;;;9254:30;9320:34;9300:18;;;9293:62;-1:-1:-1;;;9371:18:1;;;9364:40;9421:19;;26031:71:0;9040:406:1;26031:71:0;26160:7;26140:245;26207:31;26241:17;;;:11;:17;;;;;;;;;26207:51;;;;;;;;;-1:-1:-1;;;;;26207:51:0;;;;;-1:-1:-1;;;26207:51:0;;;;;;;;;;;;26281:28;26277:93;;26341:9;25936:537;-1:-1:-1;;;25936:537:0:o;26277:93::-;-1:-1:-1;;;26180:6:0;26140:245;;42317:173;42392:6;;;-1:-1:-1;;;;;42409:17:0;;;-1:-1:-1;;;;;;42409:17:0;;;;;;;42442:40;;42392:6;;;42409:17;42392:6;;42442:40;;42373:16;;42442:40;42362:128;42317:173;:::o;30374:104::-;30443:27;30453:2;30457:8;30443:27;;;;;;;;;;;;:9;:27::i;35936:804::-;36091:4;-1:-1:-1;;;;;36112:13:0;;4545:19;:23;36108:625;;36148:72;;-1:-1:-1;;;36148:72:0;;-1:-1:-1;;;;;36148:36:0;;;;;:72;;2883:10;;36199:4;;36205:7;;36214:5;;36148:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36148:72:0;;;;;;;;-1:-1:-1;;36148:72:0;;;;;;;;;;;;:::i;:::-;;;36144:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36394:13:0;;36390:273;;36437:61;;-1:-1:-1;;;36437:61:0;;;;;;;:::i;36390:273::-;36613:6;36607:13;36598:6;36594:2;36590:15;36583:38;36144:534;-1:-1:-1;;;;;;36271:55:0;-1:-1:-1;;;36271:55:0;;-1:-1:-1;36264:62:0;;36108:625;-1:-1:-1;36717:4:0;36108:625;35936:804;;;;;;:::o;45689:108::-;45749:13;45782:7;45775:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30841:163;30964:32;30970:2;30974:8;30984:5;30991:4;31402:20;31425:12;-1:-1:-1;;;;;31456:16:0;;31448:62;;;;-1:-1:-1;;;31448:62:0;;16352:2:1;31448:62:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:34;16410:18;;;16403:62;-1:-1:-1;;;16481:18:1;;;16474:31;16522:19;;31448:62:0;16150:397:1;31448:62:0;31529:13;31521:66;;;;-1:-1:-1;;;31521:66:0;;16754:2:1;31521:66:0;;;16736:21:1;16793:2;16773:18;;;16766:30;16832:34;16812:18;;;16805:62;-1:-1:-1;;;16883:18:1;;;16876:38;16931:19;;31521:66:0;16552:404:1;31521:66:0;-1:-1:-1;;;;;31939:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31939:45:0;;-1:-1:-1;;;;;31939:45:0;;;;;;;;;;31999:50;;;;;;;;;;;;;;32066:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32116:66:0;;;;-1:-1:-1;;;32166:15:0;32116:66;;;;;;;32066:25;;32251:415;32271:8;32267:1;:12;32251:415;;;32310:38;;32335:12;;-1:-1:-1;;;;;32310:38:0;;;32327:1;;32310:38;;32327:1;;32310:38;32371:4;32367:249;;;32434:59;32465:1;32469:2;32473:12;32487:5;32434:22;:59::i;:::-;32400:196;;;;-1:-1:-1;;;32400:196:0;;;;;;;:::i;:::-;32636:14;;;;;32281:3;32251:415;;;-1:-1:-1;32682:12:0;:27;32733:60;29645: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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:1;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:1;;5008:180;-1:-1:-1;5008:180:1:o;5193:257::-;5234:3;5272:5;5266:12;5299:6;5294:3;5287:19;5315:63;5371:6;5364:4;5359:3;5355:14;5348:4;5341:5;5337:16;5315:63;:::i;:::-;5432:2;5411:15;-1:-1:-1;;5407:29:1;5398:39;;;;5439:4;5394:50;;5193:257;-1:-1:-1;;5193:257:1:o;5455:637::-;5735:3;5773:6;5767:13;5789:53;5835:6;5830:3;5823:4;5815:6;5811:17;5789:53;:::i;:::-;5905:13;;5864:16;;;;5927:57;5905:13;5864:16;5961:4;5949:17;;5927:57;:::i;:::-;-1:-1:-1;;;6006:20:1;;6035:22;;;6084:1;6073:13;;5455:637;-1:-1:-1;;;;5455:637:1:o;6515:488::-;-1:-1:-1;;;;;6784:15:1;;;6766:34;;6836:15;;6831:2;6816:18;;6809:43;6883:2;6868:18;;6861:34;;;6931:3;6926:2;6911:18;;6904:31;;;6709:4;;6952:45;;6977:19;;6969:6;6952:45;:::i;:::-;6944:53;6515:488;-1:-1:-1;;;;;;6515:488:1:o;7200:219::-;7349:2;7338:9;7331:21;7312:4;7369:44;7409:2;7398:9;7394:18;7386:6;7369:44;:::i;13783:356::-;13985:2;13967:21;;;14004:18;;;13997:30;14063:34;14058:2;14043:18;;14036:62;14130:2;14115:18;;13783:356::o;15730:415::-;15932:2;15914:21;;;15971:2;15951:18;;;15944:30;16010:34;16005:2;15990:18;;15983:62;-1:-1:-1;;;16076:2:1;16061:18;;16054:49;16135:3;16120:19;;15730:415::o;18748:128::-;18788:3;18819:1;18815:6;18812:1;18809:13;18806:39;;;18825:18;;:::i;:::-;-1:-1:-1;18861:9:1;;18748:128::o;18881:120::-;18921:1;18947;18937:35;;18952:18;;:::i;:::-;-1:-1:-1;18986:9:1;;18881:120::o;19006:168::-;19046:7;19112:1;19108;19104:6;19100:14;19097:1;19094:21;19089:1;19082:9;19075:17;19071:45;19068:71;;;19119:18;;:::i;:::-;-1:-1:-1;19159:9:1;;19006:168::o;19179:125::-;19219:4;19247:1;19244;19241:8;19238:34;;;19252:18;;:::i;:::-;-1:-1:-1;19289:9:1;;19179:125::o;19309:258::-;19381:1;19391:113;19405:6;19402:1;19399:13;19391:113;;;19481:11;;;19475:18;19462:11;;;19455:39;19427:2;19420:10;19391:113;;;19522:6;19519:1;19516:13;19513:48;;;-1:-1:-1;;19557:1:1;19539:16;;19532:27;19309:258::o;19572:380::-;19651:1;19647:12;;;;19694;;;19715:61;;19769:4;19761:6;19757:17;19747:27;;19715:61;19822:2;19814:6;19811:14;19791:18;19788:38;19785:161;;;19868:10;19863:3;19859:20;19856:1;19849:31;19903:4;19900:1;19893:15;19931:4;19928:1;19921:15;19785:161;;19572:380;;;:::o;19957:135::-;19996:3;-1:-1:-1;;20017:17:1;;20014:43;;;20037:18;;:::i;:::-;-1:-1:-1;20084:1:1;20073:13;;19957:135::o;20097:112::-;20129:1;20155;20145:35;;20160:18;;:::i;:::-;-1:-1:-1;20194:9:1;;20097:112::o;20214:127::-;20275:10;20270:3;20266:20;20263:1;20256:31;20306:4;20303:1;20296:15;20330:4;20327:1;20320:15;20346:127;20407:10;20402:3;20398:20;20395:1;20388:31;20438:4;20435:1;20428:15;20462:4;20459:1;20452:15;20478:127;20539:10;20534:3;20530:20;20527:1;20520:31;20570:4;20567:1;20560:15;20594:4;20591:1;20584:15;20610:127;20671:10;20666:3;20662:20;20659:1;20652:31;20702:4;20699:1;20692:15;20726:4;20723:1;20716:15;20742:131;-1:-1:-1;;;;;;20816:32:1;;20806:43;;20796:71;;20863:1;20860;20853:12

Swarm Source

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