ETH Price: $3,418.37 (-0.60%)
Gas: 2 Gwei

Token

The Gala NFT (GALANFT)
 

Overview

Max Total Supply

999 GALANFT

Holders

489

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GALANFT
0x85303bc0848b36e88a632e35478e67b549cdc85d
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:
TheGalaNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 600 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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.7.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 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: @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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: TheGala.sol



/*

                    ..',;::::::::;,'...             .'.
                ..;codxxdoc;,,,,,,;::cccc,..        .cOl.
            .,lxO00Od:'..           ...,:lc,.     .cOKd.
          .'lx0KK0kd:.                    .,ll,.  .cOKKx.
        .,oOKK00Okl'                        .,lc..cO0KKx.
      .lk00000OOl.                           .:lok00KXk'
    .,dO000000Od'                              'lddk0KO;
    .;xOO000000k;                                .;cokKO:
    ;xkkOO000O0o.                                 .;cd00:
    dkkkkO0000O:.                                  .,lk0c
    xxxxkO0000k,                                    .'oOl.
    ddxxk00000x'                                     .,ol.
    ddodk00O00o.                                       ..
    ooodk00000o.
    llldkO0000o.               .......................................
    cclok00000o.              .';;;:::cccloodxxkkkkkxkkkxxddolcc:::;;'
    ccclk00000o.                  ........',coxO0KXXKXK0Oko:'......
    :::cd00000d'                            .,:cox0KK0OOxc.
    ;;::lk0000k,                             'ccccokOOOOd'
    ;;;;:d0000O:                             .clc::oO00Ol.
    ';;;;ck0000l.                            .cl:,,cx00O:
    .',,,;lk0KKx'                            'ol,,;:dO0k,
    ..,,,,lk0K0l.                          .:d;..;:ok0x'
      ..',''ck0KO:.                         'oc. .,;cx0d.
        ..'',:d0KO:.                       ,l:.   .,cdOl.
          ...',cx00o.                    .:l;.     .;okc.
            ....,cxOkl'.             ...;c:.        'lx:
              ....,cddoc;'.......',;:::,.          .;o,
                    ...,;::::;;;;;,'...              .;.

*/

pragma solidity >=0.7.0 <0.9.0;

contract TheGalaNFT is ERC721Enumerable, Ownable {
  // State Variables
    using Strings for uint256;
    address paymentContractAddress;
    // URI
    string baseURI;
    string baseExtension = ".json";
    string notRevealedURI;
    // Cost
    uint256 public cost = 0.03 ether;
    // Transactional Limits
    uint256 public maxWhitelistSupplyPlusOne = 775;
    uint256 public maxSupply = 999;
    uint256 public maxPerSessionPlusOne;
    uint256 public maxPerAddressPlusOne;
    // Boolean Operators
    bool public paused = true;
    bool public rsvpSale = false;
    bool public whitelistSale = false;
    bool public publicSale = false;
    bool public revealed = false;
    // RSVP Addresses
    address[] private rsvpAddresses;
    // Whitelist Addresses
    address[] private whitelistAddressesPhase1;
    address[] private whitelistAddressesPhase2;
    address[] private whitelistAddressesPhase3;
    address[] private whitelistAddressesPhase4;
    // Mapping of mints
    mapping(address => uint256) private mintedPerAddress;
    mapping(address => uint256) private whitelistPerAddress;
    mapping(address => uint256) private rsvpPerAddress;

    constructor(string memory _name, string memory _symbol,
                string memory _initBaseURI,
                string memory _initNotRevealedUri)
        ERC721(_name, _symbol) payable {
            setBaseURI(_initBaseURI);
            setNotRevealedURI(_initNotRevealedUri);
    }

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

  // External
    // Mint
    function mint(uint256 _mintAmount) public payable {
      uint256 supply = totalSupply();
      require(!paused, "MINT IS CURRENTLY INACTIVE");
      // Whitelist Phase
      if
      (whitelistSale == true) {
        require(isWhitelisted(msg.sender), "WALLET IS NOT WHITELISTED; DOUBLE-CHECK WALLET, OR AWAIT PUBLIC MINT");
        require(supply + _mintAmount < maxWhitelistSupplyPlusOne, "MAX WHITELIST SUPPLY EXCEEDED");
        require(0 < _mintAmount && _mintAmount < maxPerSessionPlusOne, "MAX WHITELIST ASSETS PER SESSION EXCEEDED");
        uint256 whitelistMintCount = whitelistPerAddress[msg.sender];
        require(whitelistMintCount + _mintAmount < maxPerAddressPlusOne, "MAX WHITELIST ASSETS PER WALLET EXCEEDED");
        require(msg.value >= cost * _mintAmount, "INSUFFICIENT FUNDS");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            whitelistPerAddress[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
      }
      // RSVP Phase
      else if
      (rsvpSale == true) {
        require(isRsvp(msg.sender), "YOU DID NOT RSVP; DOUBLE-CHECK WALLET, OR AWAIT PUBLIC MINT");
        require(supply + _mintAmount <= maxSupply, "MAX SUPPLY EXCEEDED");
        require(0 < _mintAmount && _mintAmount < maxPerSessionPlusOne, "MAX RSVP ASSETS PER SESSION EXCEEDED");
        uint256 rsvpMintCount = rsvpPerAddress[msg.sender];
        require(rsvpMintCount + _mintAmount < maxPerAddressPlusOne, "MAX RSVP ASSETS PER WALLET EXCEEDED");
        require(msg.value >= cost * _mintAmount, "INSUFFICIENT FUNDS");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            rsvpPerAddress[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
      }
      // Public Phase
      else {
        require(publicSale, "MINT CLOSED TO PUBLIC");
        require(supply + _mintAmount <= maxSupply, "MAX SUPPLY EXCEEDED");
        require(0 < _mintAmount && _mintAmount < maxPerSessionPlusOne, "MAX ASSETS PER SESSION EXCEEDED");
        uint256 addressMintCount = mintedPerAddress[msg.sender];
        require(addressMintCount + _mintAmount < maxPerAddressPlusOne, "MAX ASSETS PER WALLET EXCEEDED");
        require(msg.value >= cost * _mintAmount, "INSUFFICIENT FUNDS");
        for (uint256 i = 1; i <= _mintAmount; i++) {
            mintedPerAddress[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
      }
    }

    // RSVP Verification
    function isRsvp(address _user) public view returns (bool) {
      for (uint i = 0; i < rsvpAddresses.length; i++) {
        if (rsvpAddresses[i] == _user) {
          return true;
        }
      }
      return false;
    }

    // Whitelist Verification
    function isWhitelisted(address _user) public view returns (bool) {
      for (uint i = 0; i < whitelistAddressesPhase1.length; i++) {
        if (whitelistAddressesPhase1[i] == _user) {
          return true;
        }
      }
      for (uint j = 0; j < whitelistAddressesPhase2.length; j++) {
        if (whitelistAddressesPhase2[j] == _user) {
          return true;
        }
      }
      for (uint k = 0; k < whitelistAddressesPhase3.length; k++) {
        if (whitelistAddressesPhase3[k] == _user) {
          return true;
        }
      }
      for (uint n = 0; n < whitelistAddressesPhase4.length; n++) {
        if (whitelistAddressesPhase4[n] == _user) {
          return true;
        }
      }
      return false;
    }

    function walletOfOwner(address _owner)
      public
      view
      returns (uint256[] memory)
      {
      uint256 ownerTokenCount = balanceOf(_owner);
      uint256[] memory tokenIds = new uint256[](ownerTokenCount);
      for (uint256 i; i < ownerTokenCount; i++) {
        tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
      }
      return tokenIds;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
      if(revealed == false) {
          return notRevealedURI;
      }
      string memory currentBaseURI = _baseURI();
      return bytes(currentBaseURI).length > 0
          ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
          : "";
    }

  // Only Owner
    // Reveal URI
    function reveal() public onlyOwner {
      revealed = true;
    }
    // Transactional Setters
    function setCost(uint256 _newCost) public onlyOwner {
      cost = _newCost;
    }
    function setPerAddressLimitPlusOne(uint256 _limitPlusOne) public onlyOwner {
      maxPerAddressPlusOne = _limitPlusOne;
    }
    function setPerSessionLimitPlusOne(uint256 _newMintAmountLimitPlusOne) public onlyOwner {
      maxPerSessionPlusOne = _newMintAmountLimitPlusOne;
    }
    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
      maxSupply = _newMaxSupply;
    }
    function setPaymentContractAddress(address _newPaymentContractAddress) public onlyOwner {
      paymentContractAddress = _newPaymentContractAddress;
    }

    // URI Setters
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
      baseURI = _newBaseURI;
    }
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
      baseExtension = _newBaseExtension;
    }
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
      notRevealedURI = _notRevealedURI;
    }

    // Toggle Paused State
    function togglePause() external onlyOwner {
      paused = !paused;
    }

    // Toggle Whitelist Sale
    function toggleWhitelistSale() external onlyOwner {
      paused = false;
      rsvpSale = false;
      publicSale = false;
      if (whitelistSale == false) {
        setPerSessionLimitPlusOne(3);
        setPerAddressLimitPlusOne(3);
      }
      whitelistSale = !whitelistSale;
    }

    // Toggle RSVP Sale
    function toggleRsvpSale() external onlyOwner {
      paused = false;
      whitelistSale = false;
      publicSale = false;
      if (rsvpSale == false) {
        setPerSessionLimitPlusOne(2);
        setPerAddressLimitPlusOne(2);
      }
      rsvpSale = !rsvpSale;
    }

    // Toggle Public Sale
    function togglePublicSale() external onlyOwner {
      paused = false;
      whitelistSale = false;
      rsvpSale = false;
      if (publicSale == false) {
        setPerSessionLimitPlusOne(11);
        setPerAddressLimitPlusOne(11);
      }
      publicSale = !publicSale;
    }

    // Unique Address Setters
        // Verified RSVP Addresses
        function setRsvpUsers(address[] calldata _rsvpAddresses) external onlyOwner {
            delete rsvpAddresses;
            rsvpAddresses = _rsvpAddresses;
        }

        // Verified Whitelist Addresses
        function setWhitelistUsersPhase1(address[] calldata _whitelistAddressesPhase1) external onlyOwner {
            delete whitelistAddressesPhase1;
            whitelistAddressesPhase1 = _whitelistAddressesPhase1;
        }
        function setWhitelistUsersPhase2(address[] calldata _whitelistAddressesPhase2) external onlyOwner {
            delete whitelistAddressesPhase2;
            whitelistAddressesPhase2 = _whitelistAddressesPhase2;
        }
        function setWhitelistUsersPhase3(address[] calldata _whitelistAddressesPhase3) external onlyOwner {
            delete whitelistAddressesPhase3;
            whitelistAddressesPhase3 = _whitelistAddressesPhase3;
        }
        function setWhitelistUsersPhase4(address[] calldata _whitelistAddressesPhase4) external onlyOwner {
            delete whitelistAddressesPhase4;
            whitelistAddressesPhase4 = _whitelistAddressesPhase4;
        }

    // Team Mint Execution
    function teamMint(uint256[] calldata _teamMintAmount, address[] calldata _wallet) external onlyOwner {
      require(_teamMintAmount.length == _wallet.length);
      for (uint256 j = 0; j < _teamMintAmount.length; j++) {
        uint256 supply = totalSupply();
        uint256 _amount = _teamMintAmount[j];
        address _to = _wallet[j];
        for (uint256 i = 1; i <= _amount; i++) {
            _safeMint(_to, supply + i);
        }
      }
    }
    
    // Team Withdrawal
    function withdraw() external payable onlyOwner {
      (bool xs, ) = payable(paymentContractAddress).call{value: address(this).balance}("");
      require(xs);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"payable","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isRsvp","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerSessionPlusOne","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":"maxWhitelistSupplyPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rsvpSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","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":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPaymentContractAddress","type":"address"}],"name":"setPaymentContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limitPlusOne","type":"uint256"}],"name":"setPerAddressLimitPlusOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintAmountLimitPlusOne","type":"uint256"}],"name":"setPerSessionLimitPlusOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rsvpAddresses","type":"address[]"}],"name":"setRsvpUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddressesPhase1","type":"address[]"}],"name":"setWhitelistUsersPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddressesPhase2","type":"address[]"}],"name":"setWhitelistUsersPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddressesPhase3","type":"address[]"}],"name":"setWhitelistUsersPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddressesPhase4","type":"address[]"}],"name":"setWhitelistUsersPhase4","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":"_teamMintAmount","type":"uint256[]"},{"internalType":"address[]","name":"_wallet","type":"address[]"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRsvpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620001d8565b50666a94d74f430000600f556103076010556103e76011556014805464ffffffffff19166001179055604051620036d638819003908190833981016040819052620000739162000335565b8351849084906200008c906000906020850190620001d8565b508051620000a2906001906020840190620001d8565b505050620000bf620000b9620000df60201b60201c565b620000e3565b620000ca8262000135565b620000d58162000158565b5050505062000441565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013f62000177565b80516200015490600c906020840190620001d8565b5050565b6200016262000177565b80516200015490600e906020840190620001d8565b600a546001600160a01b03163314620001d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001e690620003ee565b90600052602060002090601f0160209004810192826200020a576000855562000255565b82601f106200022557805160ff191683800117855562000255565b8280016001018555821562000255579182015b828111156200025557825182559160200191906001019062000238565b506200026392915062000267565b5090565b5b8082111562000263576000815560010162000268565b600082601f8301126200029057600080fd5b81516001600160401b0380821115620002ad57620002ad6200042b565b604051601f8301601f19908116603f01168101908282118183101715620002d857620002d86200042b565b81604052838152602092508683858801011115620002f557600080fd5b600091505b83821015620003195785820183015181830184015290820190620002fa565b838211156200032b5760008385830101525b9695505050505050565b600080600080608085870312156200034c57600080fd5b84516001600160401b03808211156200036457600080fd5b62000372888389016200027e565b955060208701519150808211156200038957600080fd5b62000397888389016200027e565b94506040870151915080821115620003ae57600080fd5b620003bc888389016200027e565b93506060870151915080821115620003d357600080fd5b50620003e2878288016200027e565b91505092959194509250565b600181811c908216806200040357607f821691505b602082108114156200042557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61328580620004516000396000f3fe60806040526004361061034a5760003560e01c806351830227116101bb578063a0712d68116100f7578063da3ef23f11610095578063ef9b01131161006f578063ef9b011314610939578063f2c4ce1e1461094f578063f2e7e1691461096f578063f2fde38b1461098f57600080fd5b8063da3ef23f146108bb578063e222c7f9146108db578063e985e9c5146108f057600080fd5b8063b88d4fde116100d1578063b88d4fde14610850578063c4ae316814610870578063c87b56dd14610885578063d5abeb01146108a557600080fd5b8063a0712d6814610808578063a22cb4651461081b578063a475b5dd1461083b57600080fd5b80636f8b44b0116101645780637a7c829c1161013e5780637a7c829c1461079f5780638da5cb5b146107b5578063932bc8ea146107d357806395d89b41146107f357600080fd5b80636f8b44b01461074a57806370a082311461076a578063715018a61461078a57600080fd5b806359eda1b51161019557806359eda1b5146106fb5780635c975abb146107105780636352211e1461072a57600080fd5b8063518302271461069957806355b85778146106bb57806355f804b3146106db57600080fd5b80632533c7cd1161028a5780633ef567a811610233578063438b63001161020d578063438b63001461060c57806344a0d68a146106395780634f6ccce7146106595780635007f8f31461067957600080fd5b80633ef567a8146105ac5780633f117b85146105cc57806342842e0e146105ec57600080fd5b806333bc1c5c1161026457806333bc1c5c146105635780633af32abf146105845780633ccfd60b146105a457600080fd5b80632533c7cd146105035780632f745c591461052357806331ffd6f11461054357600080fd5b806313faede6116102f75780631d3e44b8116102d15780631d3e44b814610484578063211e62dd146104a357806322134e1d146104c357806323b872dd146104e357600080fd5b806313faede61461044457806318160ddd1461045a5780631c78198e1461046f57600080fd5b8063095ea7b311610328578063095ea7b3146103de5780630f72cf221461040057806313a23d0c1461042457600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004612eb4565b6109af565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103996109da565b60405161037b91906130c0565b3480156103b257600080fd5b506103c66103c1366004612f37565b610a6c565b6040516001600160a01b03909116815260200161037b565b3480156103ea57600080fd5b506103fe6103f9366004612ddc565b610a93565b005b34801561040c57600080fd5b5061041660135481565b60405190815260200161037b565b34801561043057600080fd5b5061036f61043f366004612c9a565b610bae565b34801561045057600080fd5b50610416600f5481565b34801561046657600080fd5b50600854610416565b34801561047b57600080fd5b506103fe610c18565b34801561049057600080fd5b5060145461036f90610100900460ff1681565b3480156104af57600080fd5b506103fe6104be366004612e06565b610c6c565b3480156104cf57600080fd5b506103fe6104de366004612f37565b610c8c565b3480156104ef57600080fd5b506103fe6104fe366004612ce8565b610c99565b34801561050f57600080fd5b506103fe61051e366004612e48565b610d11565b34801561052f57600080fd5b5061041661053e366004612ddc565b610dd2565b34801561054f57600080fd5b5060145461036f9062010000900460ff1681565b34801561056f57600080fd5b5060145461036f906301000000900460ff1681565b34801561059057600080fd5b5061036f61059f366004612c9a565b610e7a565b6103fe610ffe565b3480156105b857600080fd5b506103fe6105c7366004612e06565b611069565b3480156105d857600080fd5b506103fe6105e7366004612c9a565b611089565b3480156105f857600080fd5b506103fe610607366004612ce8565b6110b3565b34801561061857600080fd5b5061062c610627366004612c9a565b6110ce565b60405161037b919061307c565b34801561064557600080fd5b506103fe610654366004612f37565b611170565b34801561066557600080fd5b50610416610674366004612f37565b61117d565b34801561068557600080fd5b506103fe610694366004612e06565b611221565b3480156106a557600080fd5b5060145461036f90640100000000900460ff1681565b3480156106c757600080fd5b506103fe6106d6366004612f37565b611241565b3480156106e757600080fd5b506103fe6106f6366004612eee565b61124e565b34801561070757600080fd5b506103fe61126d565b34801561071c57600080fd5b5060145461036f9060ff1681565b34801561073657600080fd5b506103c6610745366004612f37565b6112c4565b34801561075657600080fd5b506103fe610765366004612f37565b611329565b34801561077657600080fd5b50610416610785366004612c9a565b611336565b34801561079657600080fd5b506103fe6113bc565b3480156107ab57600080fd5b5061041660125481565b3480156107c157600080fd5b50600a546001600160a01b03166103c6565b3480156107df57600080fd5b506103fe6107ee366004612e06565b6113d0565b3480156107ff57600080fd5b506103996113f0565b6103fe610816366004612f37565b6113ff565b34801561082757600080fd5b506103fe610836366004612da0565b611b52565b34801561084757600080fd5b506103fe611b5d565b34801561085c57600080fd5b506103fe61086b366004612d24565b611b7c565b34801561087c57600080fd5b506103fe611bf5565b34801561089157600080fd5b506103996108a0366004612f37565b611c11565b3480156108b157600080fd5b5061041660115481565b3480156108c757600080fd5b506103fe6108d6366004612eee565b611da1565b3480156108e757600080fd5b506103fe611dbc565b3480156108fc57600080fd5b5061036f61090b366004612cb5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094557600080fd5b5061041660105481565b34801561095b57600080fd5b506103fe61096a366004612eee565b611e15565b34801561097b57600080fd5b506103fe61098a366004612e06565b611e30565b34801561099b57600080fd5b506103fe6109aa366004612c9a565b611e50565b60006001600160e01b0319821663780e9d6360e01b14806109d457506109d482611ec6565b92915050565b6060600080546109e990613161565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590613161565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b5050505050905090565b6000610a7782611f16565b506000908152600460205260409020546001600160a01b031690565b6000610a9e826112c4565b9050806001600160a01b0316836001600160a01b03161415610b115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b2d5750610b2d813361090b565b610b9f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b08565b610ba98383611f7a565b505050565b6000805b601554811015610c0f57826001600160a01b031660158281548110610bd957610bd961320d565b6000918252602090912001546001600160a01b03161415610bfd5750600192915050565b80610c078161319c565b915050610bb2565b50600092915050565b610c20611fe8565b6014805463ffff00ff191690819055610100900460ff16610c4f57610c456002611241565b610c4f6002610c8c565b6014805461ff001981166101009182900460ff1615909102179055565b610c74611fe8565b610c8060156000612ab2565b610ba960158383612ad0565b610c94611fe8565b601355565b610ca33382612042565b610d065760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b08565b610ba98383836120c1565b610d19611fe8565b828114610d2557600080fd5b60005b83811015610dcb576000610d3b60085490565b90506000868684818110610d5157610d5161320d565b9050602002013590506000858585818110610d6e57610d6e61320d565b9050602002016020810190610d839190612c9a565b905060015b828111610db457610da282610d9d83876130d3565b612268565b80610dac8161319c565b915050610d88565b505050508080610dc39061319c565b915050610d28565b5050505050565b6000610ddd83611336565b8210610e515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b08565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601654811015610edb57826001600160a01b031660168281548110610ea557610ea561320d565b6000918252602090912001546001600160a01b03161415610ec95750600192915050565b80610ed38161319c565b915050610e7e565b5060005b601754811015610f3c57826001600160a01b031660178281548110610f0657610f0661320d565b6000918252602090912001546001600160a01b03161415610f2a5750600192915050565b80610f348161319c565b915050610edf565b5060005b601854811015610f9d57826001600160a01b031660188281548110610f6757610f6761320d565b6000918252602090912001546001600160a01b03161415610f8b5750600192915050565b80610f958161319c565b915050610f40565b5060005b601954811015610c0f57826001600160a01b031660198281548110610fc857610fc861320d565b6000918252602090912001546001600160a01b03161415610fec5750600192915050565b80610ff68161319c565b915050610fa1565b611006611fe8565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611053576040519150601f19603f3d011682016040523d82523d6000602084013e611058565b606091505b505090508061106657600080fd5b50565b611071611fe8565b61107d60196000612ab2565b610ba960198383612ad0565b611091611fe8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610ba983838360405180602001604052806000815250611b7c565b606060006110db83611336565b905060008167ffffffffffffffff8111156110f8576110f8613223565b604051908082528060200260200182016040528015611121578160200160208202803683370190505b50905060005b82811015611168576111398582610dd2565b82828151811061114b5761114b61320d565b6020908102919091010152806111608161319c565b915050611127565b509392505050565b611178611fe8565b600f55565b600061118860085490565b82106111fc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b08565b6008828154811061120f5761120f61320d565b90600052602060002001549050919050565b611229611fe8565b61123560176000612ab2565b610ba960178383612ad0565b611249611fe8565b601255565b611256611fe8565b805161126990600c906020840190612b33565b5050565b611275611fe8565b6014805463ff00ffff19169081905562010000900460ff166112a55761129b6003611241565b6112a56003610c8c565b6014805462ff0000198116620100009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109d45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b08565b611331611fe8565b601155565b60006001600160a01b0382166113a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b08565b506001600160a01b031660009081526003602052604090205490565b6113c4611fe8565b6113ce6000612282565b565b6113d8611fe8565b6113e460166000612ab2565b610ba960168383612ad0565b6060600180546109e990613161565b600061140a60085490565b60145490915060ff16156114605760405162461bcd60e51b815260206004820152601a60248201527f4d494e542049532043555252454e544c5920494e4143544956450000000000006044820152606401610b08565b60145462010000900460ff161515600114156116e65761147f33610e7a565b6114ff5760405162461bcd60e51b8152602060048201526044602482018190527f57414c4c4554204953204e4f542057484954454c49535445443b20444f55424c908201527f452d434845434b2057414c4c45542c204f52204157414954205055424c4943206064820152631352539560e21b608482015260a401610b08565b60105461150c83836130d3565b106115595760405162461bcd60e51b815260206004820152601d60248201527f4d41582057484954454c49535420535550504c592045584345454445440000006044820152606401610b08565b81600010801561156a575060125482105b6115c85760405162461bcd60e51b815260206004820152602960248201527f4d41582057484954454c49535420415353455453205045522053455353494f4e60448201526808115610d15151115160ba1b6064820152608401610b08565b336000908152601b60205260409020546013546115e584836130d3565b106116435760405162461bcd60e51b815260206004820152602860248201527f4d41582057484954454c49535420415353455453205045522057414c4c455420604482015267115610d15151115160c21b6064820152608401610b08565b82600f5461165191906130ff565b3410156116955760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601b602052604081208054916116ba8361319c565b909155506116ce905033610d9d83866130d3565b806116d88161319c565b915050611698565b50505050565b60145460ff610100909104161515600114156119445761170533610bae565b6117775760405162461bcd60e51b815260206004820152603b60248201527f594f5520444944204e4f5420525356503b20444f55424c452d434845434b205760448201527f414c4c45542c204f52204157414954205055424c4943204d494e5400000000006064820152608401610b08565b60115461178483836130d3565b11156117c85760405162461bcd60e51b81526020600482015260136024820152721350560814d55414131648115610d151511151606a1b6044820152606401610b08565b8160001080156117d9575060125482105b6118315760405162461bcd60e51b8152602060048201526024808201527f4d4158205253565020415353455453205045522053455353494f4e20455843456044820152631151115160e21b6064820152608401610b08565b336000908152601c602052604090205460135461184e84836130d3565b106118a75760405162461bcd60e51b815260206004820152602360248201527f4d4158205253565020415353455453205045522057414c4c455420455843454560448201526211115160ea1b6064820152608401610b08565b82600f546118b591906130ff565b3410156118f95760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601c6020526040812080549161191e8361319c565b90915550611932905033610d9d83866130d3565b8061193c8161319c565b9150506118fc565b6014546301000000900460ff1661199d5760405162461bcd60e51b815260206004820152601560248201527f4d494e5420434c4f53454420544f205055424c494300000000000000000000006044820152606401610b08565b6011546119aa83836130d3565b11156119ee5760405162461bcd60e51b81526020600482015260136024820152721350560814d55414131648115610d151511151606a1b6044820152606401610b08565b8160001080156119ff575060125482105b611a4b5760405162461bcd60e51b815260206004820152601f60248201527f4d415820415353455453205045522053455353494f4e204558434545444544006044820152606401610b08565b336000908152601a6020526040902054601354611a6884836130d3565b10611ab55760405162461bcd60e51b815260206004820152601e60248201527f4d415820415353455453205045522057414c4c455420455843454544454400006044820152606401610b08565b82600f54611ac391906130ff565b341015611b075760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601a60205260408120805491611b2c8361319c565b90915550611b40905033610d9d83866130d3565b80611b4a8161319c565b915050611b0a565b6112693383836122d4565b611b65611fe8565b6014805464ff000000001916640100000000179055565b611b863383612042565b611be95760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b08565b6116e0848484846123a3565b611bfd611fe8565b6014805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316611c9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b08565b601454640100000000900460ff16611d4257600e8054611cbd90613161565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce990613161565b8015611d365780601f10611d0b57610100808354040283529160200191611d36565b820191906000526020600020905b815481529060010190602001808311611d1957829003601f168201915b50505050509050919050565b6000611d4c612421565b90506000815111611d6c5760405180602001604052806000815250611d9a565b80611d7684612430565b600d604051602001611d8a93929190612f7c565b6040516020818303038152906040525b9392505050565b611da9611fe8565b805161126990600d906020840190612b33565b611dc4611fe8565b6014805462ffffff1916908190556301000000900460ff16611df457611dea600b611241565b611df4600b610c8c565b6014805463ff00000019811663010000009182900460ff1615909102179055565b611e1d611fe8565b805161126990600e906020840190612b33565b611e38611fe8565b611e4460186000612ab2565b610ba960188383612ad0565b611e58611fe8565b6001600160a01b038116611ebd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b08565b61106681612282565b60006001600160e01b031982166380ac58cd60e01b1480611ef757506001600160e01b03198216635b5e139f60e01b145b806109d457506301ffc9a760e01b6001600160e01b03198316146109d4565b6000818152600260205260409020546001600160a01b03166110665760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b08565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611faf826112c4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146113ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b08565b60008061204e836112c4565b9050806001600160a01b0316846001600160a01b0316148061209557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806120b95750836001600160a01b03166120ae84610a6c565b6001600160a01b0316145b949350505050565b826001600160a01b03166120d4826112c4565b6001600160a01b0316146121385760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b08565b6001600160a01b03821661219a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b08565b6121a5838383612546565b6121b0600082611f7a565b6001600160a01b03831660009081526003602052604081208054600192906121d990849061311e565b90915550506001600160a01b03821660009081526003602052604081208054600192906122079084906130d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112698282604051806020016040528060008152506125fe565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b08565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123ae8484846120c1565b6123ba8484848461267c565b6116e05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b6060600c80546109e990613161565b6060816124545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561247e57806124688161319c565b91506124779050600a836130eb565b9150612458565b60008167ffffffffffffffff81111561249957612499613223565b6040519080825280601f01601f1916602001820160405280156124c3576020820181803683370190505b5090505b84156120b9576124d860018361311e565b91506124e5600a866131b7565b6124f09060306130d3565b60f81b8183815181106125055761250561320d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061253f600a866130eb565b94506124c7565b6001600160a01b0383166125a15761259c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125c4565b816001600160a01b0316836001600160a01b0316146125c4576125c483826127d4565b6001600160a01b0382166125db57610ba981612871565b826001600160a01b0316826001600160a01b031614610ba957610ba98282612920565b6126088383612964565b612615600084848461267c565b610ba95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b60006001600160a01b0384163b156127c957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126c0903390899088908890600401613040565b602060405180830381600087803b1580156126da57600080fd5b505af192505050801561270a575060408051601f3d908101601f1916820190925261270791810190612ed1565b60015b6127af573d808015612738576040519150601f19603f3d011682016040523d82523d6000602084013e61273d565b606091505b5080516127a75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120b9565b506001949350505050565b600060016127e184611336565b6127eb919061311e565b60008381526007602052604090205490915080821461283e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128839060019061311e565b600083815260096020526040812054600880549394509092849081106128ab576128ab61320d565b9060005260206000200154905080600883815481106128cc576128cc61320d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612904576129046131f7565b6001900381819060005260206000200160009055905550505050565b600061292b83611336565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b08565b6000818152600260205260409020546001600160a01b031615612a1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b08565b612a2b60008383612546565b6001600160a01b0382166000908152600360205260408120805460019290612a549084906130d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906110669190612ba7565b828054828255906000526020600020908101928215612b23579160200282015b82811115612b235781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612af0565b50612b2f929150612ba7565b5090565b828054612b3f90613161565b90600052602060002090601f016020900481019282612b615760008555612b23565b82601f10612b7a57805160ff1916838001178555612b23565b82800160010185558215612b23579182015b82811115612b23578251825591602001919060010190612b8c565b5b80821115612b2f5760008155600101612ba8565b600067ffffffffffffffff80841115612bd757612bd7613223565b604051601f8501601f19908116603f01168101908282118183101715612bff57612bff613223565b81604052809350858152868686011115612c1857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c4957600080fd5b919050565b60008083601f840112612c6057600080fd5b50813567ffffffffffffffff811115612c7857600080fd5b6020830191508360208260051b8501011115612c9357600080fd5b9250929050565b600060208284031215612cac57600080fd5b611d9a82612c32565b60008060408385031215612cc857600080fd5b612cd183612c32565b9150612cdf60208401612c32565b90509250929050565b600080600060608486031215612cfd57600080fd5b612d0684612c32565b9250612d1460208501612c32565b9150604084013590509250925092565b60008060008060808587031215612d3a57600080fd5b612d4385612c32565b9350612d5160208601612c32565b925060408501359150606085013567ffffffffffffffff811115612d7457600080fd5b8501601f81018713612d8557600080fd5b612d9487823560208401612bbc565b91505092959194509250565b60008060408385031215612db357600080fd5b612dbc83612c32565b915060208301358015158114612dd157600080fd5b809150509250929050565b60008060408385031215612def57600080fd5b612df883612c32565b946020939093013593505050565b60008060208385031215612e1957600080fd5b823567ffffffffffffffff811115612e3057600080fd5b612e3c85828601612c4e565b90969095509350505050565b60008060008060408587031215612e5e57600080fd5b843567ffffffffffffffff80821115612e7657600080fd5b612e8288838901612c4e565b90965094506020870135915080821115612e9b57600080fd5b50612ea887828801612c4e565b95989497509550505050565b600060208284031215612ec657600080fd5b8135611d9a81613239565b600060208284031215612ee357600080fd5b8151611d9a81613239565b600060208284031215612f0057600080fd5b813567ffffffffffffffff811115612f1757600080fd5b8201601f81018413612f2857600080fd5b6120b984823560208401612bbc565b600060208284031215612f4957600080fd5b5035919050565b60008151808452612f68816020860160208601613135565b601f01601f19169290920160200192915050565b600084516020612f8f8285838a01613135565b855191840191612fa28184848a01613135565b8554920191600090600181811c9080831680612fbf57607f831692505b858310811415612fdd57634e487b7160e01b85526022600452602485fd5b808015612ff157600181146130025761302f565b60ff1985168852838801955061302f565b60008b81526020902060005b858110156130275781548a82015290840190880161300e565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130726080830184612f50565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130b457835183529284019291840191600101613098565b50909695505050505050565b602081526000611d9a6020830184612f50565b600082198211156130e6576130e66131cb565b500190565b6000826130fa576130fa6131e1565b500490565b6000816000190483118215151615613119576131196131cb565b500290565b600082821015613130576131306131cb565b500390565b60005b83811015613150578181015183820152602001613138565b838111156116e05750506000910152565b600181811c9082168061317557607f821691505b6020821081141561319657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131b0576131b06131cb565b5060010190565b6000826131c6576131c66131e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106657600080fdfea264697066735822122088168af0c2d2509a5b353a72c5808b3f5a0837d11553caf68be2152bfc31641064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000c5468652047616c61204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747414c414e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000469706673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657062766139434c4142793950413647774b4e355055425773753754577a4755725574344b61584468474e762f00000000000000000000

Deployed Bytecode

0x60806040526004361061034a5760003560e01c806351830227116101bb578063a0712d68116100f7578063da3ef23f11610095578063ef9b01131161006f578063ef9b011314610939578063f2c4ce1e1461094f578063f2e7e1691461096f578063f2fde38b1461098f57600080fd5b8063da3ef23f146108bb578063e222c7f9146108db578063e985e9c5146108f057600080fd5b8063b88d4fde116100d1578063b88d4fde14610850578063c4ae316814610870578063c87b56dd14610885578063d5abeb01146108a557600080fd5b8063a0712d6814610808578063a22cb4651461081b578063a475b5dd1461083b57600080fd5b80636f8b44b0116101645780637a7c829c1161013e5780637a7c829c1461079f5780638da5cb5b146107b5578063932bc8ea146107d357806395d89b41146107f357600080fd5b80636f8b44b01461074a57806370a082311461076a578063715018a61461078a57600080fd5b806359eda1b51161019557806359eda1b5146106fb5780635c975abb146107105780636352211e1461072a57600080fd5b8063518302271461069957806355b85778146106bb57806355f804b3146106db57600080fd5b80632533c7cd1161028a5780633ef567a811610233578063438b63001161020d578063438b63001461060c57806344a0d68a146106395780634f6ccce7146106595780635007f8f31461067957600080fd5b80633ef567a8146105ac5780633f117b85146105cc57806342842e0e146105ec57600080fd5b806333bc1c5c1161026457806333bc1c5c146105635780633af32abf146105845780633ccfd60b146105a457600080fd5b80632533c7cd146105035780632f745c591461052357806331ffd6f11461054357600080fd5b806313faede6116102f75780631d3e44b8116102d15780631d3e44b814610484578063211e62dd146104a357806322134e1d146104c357806323b872dd146104e357600080fd5b806313faede61461044457806318160ddd1461045a5780631c78198e1461046f57600080fd5b8063095ea7b311610328578063095ea7b3146103de5780630f72cf221461040057806313a23d0c1461042457600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a366004612eb4565b6109af565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103996109da565b60405161037b91906130c0565b3480156103b257600080fd5b506103c66103c1366004612f37565b610a6c565b6040516001600160a01b03909116815260200161037b565b3480156103ea57600080fd5b506103fe6103f9366004612ddc565b610a93565b005b34801561040c57600080fd5b5061041660135481565b60405190815260200161037b565b34801561043057600080fd5b5061036f61043f366004612c9a565b610bae565b34801561045057600080fd5b50610416600f5481565b34801561046657600080fd5b50600854610416565b34801561047b57600080fd5b506103fe610c18565b34801561049057600080fd5b5060145461036f90610100900460ff1681565b3480156104af57600080fd5b506103fe6104be366004612e06565b610c6c565b3480156104cf57600080fd5b506103fe6104de366004612f37565b610c8c565b3480156104ef57600080fd5b506103fe6104fe366004612ce8565b610c99565b34801561050f57600080fd5b506103fe61051e366004612e48565b610d11565b34801561052f57600080fd5b5061041661053e366004612ddc565b610dd2565b34801561054f57600080fd5b5060145461036f9062010000900460ff1681565b34801561056f57600080fd5b5060145461036f906301000000900460ff1681565b34801561059057600080fd5b5061036f61059f366004612c9a565b610e7a565b6103fe610ffe565b3480156105b857600080fd5b506103fe6105c7366004612e06565b611069565b3480156105d857600080fd5b506103fe6105e7366004612c9a565b611089565b3480156105f857600080fd5b506103fe610607366004612ce8565b6110b3565b34801561061857600080fd5b5061062c610627366004612c9a565b6110ce565b60405161037b919061307c565b34801561064557600080fd5b506103fe610654366004612f37565b611170565b34801561066557600080fd5b50610416610674366004612f37565b61117d565b34801561068557600080fd5b506103fe610694366004612e06565b611221565b3480156106a557600080fd5b5060145461036f90640100000000900460ff1681565b3480156106c757600080fd5b506103fe6106d6366004612f37565b611241565b3480156106e757600080fd5b506103fe6106f6366004612eee565b61124e565b34801561070757600080fd5b506103fe61126d565b34801561071c57600080fd5b5060145461036f9060ff1681565b34801561073657600080fd5b506103c6610745366004612f37565b6112c4565b34801561075657600080fd5b506103fe610765366004612f37565b611329565b34801561077657600080fd5b50610416610785366004612c9a565b611336565b34801561079657600080fd5b506103fe6113bc565b3480156107ab57600080fd5b5061041660125481565b3480156107c157600080fd5b50600a546001600160a01b03166103c6565b3480156107df57600080fd5b506103fe6107ee366004612e06565b6113d0565b3480156107ff57600080fd5b506103996113f0565b6103fe610816366004612f37565b6113ff565b34801561082757600080fd5b506103fe610836366004612da0565b611b52565b34801561084757600080fd5b506103fe611b5d565b34801561085c57600080fd5b506103fe61086b366004612d24565b611b7c565b34801561087c57600080fd5b506103fe611bf5565b34801561089157600080fd5b506103996108a0366004612f37565b611c11565b3480156108b157600080fd5b5061041660115481565b3480156108c757600080fd5b506103fe6108d6366004612eee565b611da1565b3480156108e757600080fd5b506103fe611dbc565b3480156108fc57600080fd5b5061036f61090b366004612cb5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561094557600080fd5b5061041660105481565b34801561095b57600080fd5b506103fe61096a366004612eee565b611e15565b34801561097b57600080fd5b506103fe61098a366004612e06565b611e30565b34801561099b57600080fd5b506103fe6109aa366004612c9a565b611e50565b60006001600160e01b0319821663780e9d6360e01b14806109d457506109d482611ec6565b92915050565b6060600080546109e990613161565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1590613161565b8015610a625780601f10610a3757610100808354040283529160200191610a62565b820191906000526020600020905b815481529060010190602001808311610a4557829003601f168201915b5050505050905090565b6000610a7782611f16565b506000908152600460205260409020546001600160a01b031690565b6000610a9e826112c4565b9050806001600160a01b0316836001600160a01b03161415610b115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b2d5750610b2d813361090b565b610b9f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b08565b610ba98383611f7a565b505050565b6000805b601554811015610c0f57826001600160a01b031660158281548110610bd957610bd961320d565b6000918252602090912001546001600160a01b03161415610bfd5750600192915050565b80610c078161319c565b915050610bb2565b50600092915050565b610c20611fe8565b6014805463ffff00ff191690819055610100900460ff16610c4f57610c456002611241565b610c4f6002610c8c565b6014805461ff001981166101009182900460ff1615909102179055565b610c74611fe8565b610c8060156000612ab2565b610ba960158383612ad0565b610c94611fe8565b601355565b610ca33382612042565b610d065760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b08565b610ba98383836120c1565b610d19611fe8565b828114610d2557600080fd5b60005b83811015610dcb576000610d3b60085490565b90506000868684818110610d5157610d5161320d565b9050602002013590506000858585818110610d6e57610d6e61320d565b9050602002016020810190610d839190612c9a565b905060015b828111610db457610da282610d9d83876130d3565b612268565b80610dac8161319c565b915050610d88565b505050508080610dc39061319c565b915050610d28565b5050505050565b6000610ddd83611336565b8210610e515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b08565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601654811015610edb57826001600160a01b031660168281548110610ea557610ea561320d565b6000918252602090912001546001600160a01b03161415610ec95750600192915050565b80610ed38161319c565b915050610e7e565b5060005b601754811015610f3c57826001600160a01b031660178281548110610f0657610f0661320d565b6000918252602090912001546001600160a01b03161415610f2a5750600192915050565b80610f348161319c565b915050610edf565b5060005b601854811015610f9d57826001600160a01b031660188281548110610f6757610f6761320d565b6000918252602090912001546001600160a01b03161415610f8b5750600192915050565b80610f958161319c565b915050610f40565b5060005b601954811015610c0f57826001600160a01b031660198281548110610fc857610fc861320d565b6000918252602090912001546001600160a01b03161415610fec5750600192915050565b80610ff68161319c565b915050610fa1565b611006611fe8565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611053576040519150601f19603f3d011682016040523d82523d6000602084013e611058565b606091505b505090508061106657600080fd5b50565b611071611fe8565b61107d60196000612ab2565b610ba960198383612ad0565b611091611fe8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610ba983838360405180602001604052806000815250611b7c565b606060006110db83611336565b905060008167ffffffffffffffff8111156110f8576110f8613223565b604051908082528060200260200182016040528015611121578160200160208202803683370190505b50905060005b82811015611168576111398582610dd2565b82828151811061114b5761114b61320d565b6020908102919091010152806111608161319c565b915050611127565b509392505050565b611178611fe8565b600f55565b600061118860085490565b82106111fc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b08565b6008828154811061120f5761120f61320d565b90600052602060002001549050919050565b611229611fe8565b61123560176000612ab2565b610ba960178383612ad0565b611249611fe8565b601255565b611256611fe8565b805161126990600c906020840190612b33565b5050565b611275611fe8565b6014805463ff00ffff19169081905562010000900460ff166112a55761129b6003611241565b6112a56003610c8c565b6014805462ff0000198116620100009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806109d45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b08565b611331611fe8565b601155565b60006001600160a01b0382166113a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b08565b506001600160a01b031660009081526003602052604090205490565b6113c4611fe8565b6113ce6000612282565b565b6113d8611fe8565b6113e460166000612ab2565b610ba960168383612ad0565b6060600180546109e990613161565b600061140a60085490565b60145490915060ff16156114605760405162461bcd60e51b815260206004820152601a60248201527f4d494e542049532043555252454e544c5920494e4143544956450000000000006044820152606401610b08565b60145462010000900460ff161515600114156116e65761147f33610e7a565b6114ff5760405162461bcd60e51b8152602060048201526044602482018190527f57414c4c4554204953204e4f542057484954454c49535445443b20444f55424c908201527f452d434845434b2057414c4c45542c204f52204157414954205055424c4943206064820152631352539560e21b608482015260a401610b08565b60105461150c83836130d3565b106115595760405162461bcd60e51b815260206004820152601d60248201527f4d41582057484954454c49535420535550504c592045584345454445440000006044820152606401610b08565b81600010801561156a575060125482105b6115c85760405162461bcd60e51b815260206004820152602960248201527f4d41582057484954454c49535420415353455453205045522053455353494f4e60448201526808115610d15151115160ba1b6064820152608401610b08565b336000908152601b60205260409020546013546115e584836130d3565b106116435760405162461bcd60e51b815260206004820152602860248201527f4d41582057484954454c49535420415353455453205045522057414c4c455420604482015267115610d15151115160c21b6064820152608401610b08565b82600f5461165191906130ff565b3410156116955760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601b602052604081208054916116ba8361319c565b909155506116ce905033610d9d83866130d3565b806116d88161319c565b915050611698565b50505050565b60145460ff610100909104161515600114156119445761170533610bae565b6117775760405162461bcd60e51b815260206004820152603b60248201527f594f5520444944204e4f5420525356503b20444f55424c452d434845434b205760448201527f414c4c45542c204f52204157414954205055424c4943204d494e5400000000006064820152608401610b08565b60115461178483836130d3565b11156117c85760405162461bcd60e51b81526020600482015260136024820152721350560814d55414131648115610d151511151606a1b6044820152606401610b08565b8160001080156117d9575060125482105b6118315760405162461bcd60e51b8152602060048201526024808201527f4d4158205253565020415353455453205045522053455353494f4e20455843456044820152631151115160e21b6064820152608401610b08565b336000908152601c602052604090205460135461184e84836130d3565b106118a75760405162461bcd60e51b815260206004820152602360248201527f4d4158205253565020415353455453205045522057414c4c455420455843454560448201526211115160ea1b6064820152608401610b08565b82600f546118b591906130ff565b3410156118f95760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601c6020526040812080549161191e8361319c565b90915550611932905033610d9d83866130d3565b8061193c8161319c565b9150506118fc565b6014546301000000900460ff1661199d5760405162461bcd60e51b815260206004820152601560248201527f4d494e5420434c4f53454420544f205055424c494300000000000000000000006044820152606401610b08565b6011546119aa83836130d3565b11156119ee5760405162461bcd60e51b81526020600482015260136024820152721350560814d55414131648115610d151511151606a1b6044820152606401610b08565b8160001080156119ff575060125482105b611a4b5760405162461bcd60e51b815260206004820152601f60248201527f4d415820415353455453205045522053455353494f4e204558434545444544006044820152606401610b08565b336000908152601a6020526040902054601354611a6884836130d3565b10611ab55760405162461bcd60e51b815260206004820152601e60248201527f4d415820415353455453205045522057414c4c455420455843454544454400006044820152606401610b08565b82600f54611ac391906130ff565b341015611b075760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b08565b60015b8381116116e057336000908152601a60205260408120805491611b2c8361319c565b90915550611b40905033610d9d83866130d3565b80611b4a8161319c565b915050611b0a565b6112693383836122d4565b611b65611fe8565b6014805464ff000000001916640100000000179055565b611b863383612042565b611be95760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b6064820152608401610b08565b6116e0848484846123a3565b611bfd611fe8565b6014805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316611c9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b08565b601454640100000000900460ff16611d4257600e8054611cbd90613161565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce990613161565b8015611d365780601f10611d0b57610100808354040283529160200191611d36565b820191906000526020600020905b815481529060010190602001808311611d1957829003601f168201915b50505050509050919050565b6000611d4c612421565b90506000815111611d6c5760405180602001604052806000815250611d9a565b80611d7684612430565b600d604051602001611d8a93929190612f7c565b6040516020818303038152906040525b9392505050565b611da9611fe8565b805161126990600d906020840190612b33565b611dc4611fe8565b6014805462ffffff1916908190556301000000900460ff16611df457611dea600b611241565b611df4600b610c8c565b6014805463ff00000019811663010000009182900460ff1615909102179055565b611e1d611fe8565b805161126990600e906020840190612b33565b611e38611fe8565b611e4460186000612ab2565b610ba960188383612ad0565b611e58611fe8565b6001600160a01b038116611ebd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b08565b61106681612282565b60006001600160e01b031982166380ac58cd60e01b1480611ef757506001600160e01b03198216635b5e139f60e01b145b806109d457506301ffc9a760e01b6001600160e01b03198316146109d4565b6000818152600260205260409020546001600160a01b03166110665760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b08565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611faf826112c4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146113ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b08565b60008061204e836112c4565b9050806001600160a01b0316846001600160a01b0316148061209557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806120b95750836001600160a01b03166120ae84610a6c565b6001600160a01b0316145b949350505050565b826001600160a01b03166120d4826112c4565b6001600160a01b0316146121385760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b08565b6001600160a01b03821661219a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b08565b6121a5838383612546565b6121b0600082611f7a565b6001600160a01b03831660009081526003602052604081208054600192906121d990849061311e565b90915550506001600160a01b03821660009081526003602052604081208054600192906122079084906130d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6112698282604051806020016040528060008152506125fe565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b08565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123ae8484846120c1565b6123ba8484848461267c565b6116e05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b6060600c80546109e990613161565b6060816124545750506040805180820190915260018152600360fc1b602082015290565b8160005b811561247e57806124688161319c565b91506124779050600a836130eb565b9150612458565b60008167ffffffffffffffff81111561249957612499613223565b6040519080825280601f01601f1916602001820160405280156124c3576020820181803683370190505b5090505b84156120b9576124d860018361311e565b91506124e5600a866131b7565b6124f09060306130d3565b60f81b8183815181106125055761250561320d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061253f600a866130eb565b94506124c7565b6001600160a01b0383166125a15761259c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125c4565b816001600160a01b0316836001600160a01b0316146125c4576125c483826127d4565b6001600160a01b0382166125db57610ba981612871565b826001600160a01b0316826001600160a01b031614610ba957610ba98282612920565b6126088383612964565b612615600084848461267c565b610ba95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b60006001600160a01b0384163b156127c957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126c0903390899088908890600401613040565b602060405180830381600087803b1580156126da57600080fd5b505af192505050801561270a575060408051601f3d908101601f1916820190925261270791810190612ed1565b60015b6127af573d808015612738576040519150601f19603f3d011682016040523d82523d6000602084013e61273d565b606091505b5080516127a75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610b08565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120b9565b506001949350505050565b600060016127e184611336565b6127eb919061311e565b60008381526007602052604090205490915080821461283e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906128839060019061311e565b600083815260096020526040812054600880549394509092849081106128ab576128ab61320d565b9060005260206000200154905080600883815481106128cc576128cc61320d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612904576129046131f7565b6001900381819060005260206000200160009055905550505050565b600061292b83611336565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166129ba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b08565b6000818152600260205260409020546001600160a01b031615612a1f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b08565b612a2b60008383612546565b6001600160a01b0382166000908152600360205260408120805460019290612a549084906130d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805460008255906000526020600020908101906110669190612ba7565b828054828255906000526020600020908101928215612b23579160200282015b82811115612b235781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612af0565b50612b2f929150612ba7565b5090565b828054612b3f90613161565b90600052602060002090601f016020900481019282612b615760008555612b23565b82601f10612b7a57805160ff1916838001178555612b23565b82800160010185558215612b23579182015b82811115612b23578251825591602001919060010190612b8c565b5b80821115612b2f5760008155600101612ba8565b600067ffffffffffffffff80841115612bd757612bd7613223565b604051601f8501601f19908116603f01168101908282118183101715612bff57612bff613223565b81604052809350858152868686011115612c1857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c4957600080fd5b919050565b60008083601f840112612c6057600080fd5b50813567ffffffffffffffff811115612c7857600080fd5b6020830191508360208260051b8501011115612c9357600080fd5b9250929050565b600060208284031215612cac57600080fd5b611d9a82612c32565b60008060408385031215612cc857600080fd5b612cd183612c32565b9150612cdf60208401612c32565b90509250929050565b600080600060608486031215612cfd57600080fd5b612d0684612c32565b9250612d1460208501612c32565b9150604084013590509250925092565b60008060008060808587031215612d3a57600080fd5b612d4385612c32565b9350612d5160208601612c32565b925060408501359150606085013567ffffffffffffffff811115612d7457600080fd5b8501601f81018713612d8557600080fd5b612d9487823560208401612bbc565b91505092959194509250565b60008060408385031215612db357600080fd5b612dbc83612c32565b915060208301358015158114612dd157600080fd5b809150509250929050565b60008060408385031215612def57600080fd5b612df883612c32565b946020939093013593505050565b60008060208385031215612e1957600080fd5b823567ffffffffffffffff811115612e3057600080fd5b612e3c85828601612c4e565b90969095509350505050565b60008060008060408587031215612e5e57600080fd5b843567ffffffffffffffff80821115612e7657600080fd5b612e8288838901612c4e565b90965094506020870135915080821115612e9b57600080fd5b50612ea887828801612c4e565b95989497509550505050565b600060208284031215612ec657600080fd5b8135611d9a81613239565b600060208284031215612ee357600080fd5b8151611d9a81613239565b600060208284031215612f0057600080fd5b813567ffffffffffffffff811115612f1757600080fd5b8201601f81018413612f2857600080fd5b6120b984823560208401612bbc565b600060208284031215612f4957600080fd5b5035919050565b60008151808452612f68816020860160208601613135565b601f01601f19169290920160200192915050565b600084516020612f8f8285838a01613135565b855191840191612fa28184848a01613135565b8554920191600090600181811c9080831680612fbf57607f831692505b858310811415612fdd57634e487b7160e01b85526022600452602485fd5b808015612ff157600181146130025761302f565b60ff1985168852838801955061302f565b60008b81526020902060005b858110156130275781548a82015290840190880161300e565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130726080830184612f50565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130b457835183529284019291840191600101613098565b50909695505050505050565b602081526000611d9a6020830184612f50565b600082198211156130e6576130e66131cb565b500190565b6000826130fa576130fa6131e1565b500490565b6000816000190483118215151615613119576131196131cb565b500290565b600082821015613130576131306131cb565b500390565b60005b83811015613150578181015183820152602001613138565b838111156116e05750506000910152565b600181811c9082168061317557607f821691505b6020821081141561319657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131b0576131b06131cb565b5060010190565b6000826131c6576131c66131e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106657600080fdfea264697066735822122088168af0c2d2509a5b353a72c5808b3f5a0837d11553caf68be2152bfc31641064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000c5468652047616c61204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747414c414e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000469706673000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d657062766139434c4142793950413647774b4e355055425773753754577a4755725574344b61584468474e762f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Gala NFT
Arg [1] : _symbol (string): GALANFT
Arg [2] : _initBaseURI (string): ipfs
Arg [3] : _initNotRevealedUri (string): ipfs://Qmepbva9CLABy9PA6GwKN5PUBWsu7TWzGUrUt4KaXDhGNv/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 5468652047616c61204e46540000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 47414c414e465400000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 6970667300000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d657062766139434c4142793950413647774b4e35505542
Arg [12] : 5773753754577a4755725574344b61584468474e762f00000000000000000000


Deployed Bytecode Sourcemap

47972:10197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40045:224;;;;;;;;;;-1:-1:-1;40045:224:0;;;;;:::i;:::-;;:::i;:::-;;;9211:14:1;;9204:22;9186:41;;9174:2;9159:18;40045:224:0;;;;;;;;26779:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28292:171::-;;;;;;;;;;-1:-1:-1;28292:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7826:55:1;;;7808:74;;7796:2;7781:18;28292:171:0;7662:226:1;27809:417:0;;;;;;;;;;-1:-1:-1;27809:417:0;;;;;:::i;:::-;;:::i;:::-;;48430:35;;;;;;;;;;;;;;;;;;;20940:25:1;;;20928:2;20913:18;48430:35:0;20794:177:1;52100:230:0;;;;;;;;;;-1:-1:-1;52100:230:0;;;;;:::i;:::-;;:::i;48230:32::-;;;;;;;;;;;;;;;;40685:113;;;;;;;;;;-1:-1:-1;40773:10:0;:17;40685:113;;55636:281;;;;;;;;;;;;;:::i;48530:28::-;;;;;;;;;;-1:-1:-1;48530:28:0;;;;;;;;;;;56320:168;;;;;;;;;;-1:-1:-1;56320:168:0;;;;;:::i;:::-;;:::i;54206:128::-;;;;;;;;;;-1:-1:-1;54206:128:0;;;;;:::i;:::-;;:::i;28992:336::-;;;;;;;;;;-1:-1:-1;28992:336:0;;;;;:::i;:::-;;:::i;57499:463::-;;;;;;;;;;-1:-1:-1;57499:463:0;;;;;:::i;:::-;;:::i;40353:256::-;;;;;;;;;;-1:-1:-1;40353:256:0;;;;;:::i;:::-;;:::i;48565:33::-;;;;;;;;;;-1:-1:-1;48565:33:0;;;;;;;;;;;48605:30;;;;;;;;;;-1:-1:-1;48605:30:0;;;;;;;;;;;52369:754;;;;;;;;;;-1:-1:-1;52369:754:0;;;;;:::i;:::-;;:::i;57998:168::-;;;:::i;57240:223::-;;;;;;;;;;-1:-1:-1;57240:223:0;;;;;:::i;:::-;;:::i;54610:156::-;;;;;;;;;;-1:-1:-1;54610:156:0;;;;;:::i;:::-;;:::i;29399:185::-;;;;;;;;;;-1:-1:-1;29399:185:0;;;;;:::i;:::-;;:::i;53131:372::-;;;;;;;;;;-1:-1:-1;53131:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54116:84::-;;;;;;;;;;-1:-1:-1;54116:84:0;;;;;:::i;:::-;;:::i;40875:233::-;;;;;;;;;;-1:-1:-1;40875:233:0;;;;;:::i;:::-;;:::i;56774:223::-;;;;;;;;;;-1:-1:-1;56774:223:0;;;;;:::i;:::-;;:::i;48642:28::-;;;;;;;;;;-1:-1:-1;48642:28:0;;;;;;;;;;;54340:154;;;;;;;;;;-1:-1:-1;54340:154:0;;;;;:::i;:::-;;:::i;54794:102::-;;;;;;;;;;-1:-1:-1;54794:102:0;;;;;:::i;:::-;;:::i;55307:296::-;;;;;;;;;;;;;:::i;48498:25::-;;;;;;;;;;-1:-1:-1;48498:25:0;;;;;;;;26490:222;;;;;;;;;;-1:-1:-1;26490:222:0;;;;;:::i;:::-;;:::i;54500:104::-;;;;;;;;;;-1:-1:-1;54500:104:0;;;;;:::i;:::-;;:::i;26221:207::-;;;;;;;;;;-1:-1:-1;26221:207:0;;;;;:::i;:::-;;:::i;21131:103::-;;;;;;;;;;;;;:::i;48388:35::-;;;;;;;;;;;;;;;;20483:87;;;;;;;;;;-1:-1:-1;20556:6:0;;-1:-1:-1;;;;;20556:6:0;20483:87;;56541:223;;;;;;;;;;-1:-1:-1;56541:223:0;;;;;:::i;:::-;;:::i;26948:104::-;;;;;;;;;;;;;:::i;49625:2441::-;;;;;;:::i;:::-;;:::i;28535:155::-;;;;;;;;;;-1:-1:-1;28535:155:0;;;;;:::i;:::-;;:::i;54013:67::-;;;;;;;;;;;;;:::i;29655:323::-;;;;;;;;;;-1:-1:-1;29655:323:0;;;;;:::i;:::-;;:::i;55194:75::-;;;;;;;;;;;;;:::i;53511:458::-;;;;;;;;;;-1:-1:-1;53511:458:0;;;;;:::i;:::-;;:::i;48351:30::-;;;;;;;;;;;;;;;;54902:126;;;;;;;;;;-1:-1:-1;54902:126:0;;;;;:::i;:::-;;:::i;55952:289::-;;;;;;;;;;;;;:::i;28761:164::-;;;;;;;;;;-1:-1:-1;28761:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28761:164;48298:46;;;;;;;;;;;;;;;;55034:124;;;;;;;;;;-1:-1:-1;55034:124:0;;;;;:::i;:::-;;:::i;57007:223::-;;;;;;;;;;-1:-1:-1;57007:223:0;;;;;:::i;:::-;;:::i;21389:201::-;;;;;;;;;;-1:-1:-1;21389:201:0;;;;;:::i;:::-;;:::i;40045:224::-;40147:4;-1:-1:-1;;;;;;40171:50:0;;-1:-1:-1;;;40171:50:0;;:90;;;40225:36;40249:11;40225:23;:36::i;:::-;40164:97;40045:224;-1:-1:-1;;40045:224:0:o;26779:100::-;26833:13;26866:5;26859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26779:100;:::o;28292:171::-;28368:7;28388:23;28403:7;28388:14;:23::i;:::-;-1:-1:-1;28431:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28431:24:0;;28292:171::o;27809:417::-;27890:13;27906:23;27921:7;27906:14;:23::i;:::-;27890:39;;27954:5;-1:-1:-1;;;;;27948:11:0;:2;-1:-1:-1;;;;;27948:11:0;;;27940:57;;;;-1:-1:-1;;;27940:57:0;;18533:2:1;27940:57:0;;;18515:21:1;18572:2;18552:18;;;18545:30;18611:34;18591:18;;;18584:62;-1:-1:-1;;;18662:18:1;;;18655:31;18703:19;;27940:57:0;;;;;;;;;19114:10;-1:-1:-1;;;;;28032:21:0;;;;:62;;-1:-1:-1;28057:37:0;28074:5;19114:10;28761:164;:::i;28057:37::-;28010:174;;;;-1:-1:-1;;;28010:174:0;;15548:2:1;28010:174:0;;;15530:21:1;15587:2;15567:18;;;15560:30;15626:34;15606:18;;;15599:62;15697:32;15677:18;;;15670:60;15747:19;;28010:174:0;15346:426:1;28010:174:0;28197:21;28206:2;28210:7;28197:8;:21::i;:::-;27879:347;27809:417;;:::o;52100:230::-;52152:4;;52167:135;52188:13;:20;52184:24;;52167:135;;;52250:5;-1:-1:-1;;;;;52230:25:0;:13;52244:1;52230:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52230:16:0;:25;52226:67;;;-1:-1:-1;52277:4:0;;52100:230;-1:-1:-1;;52100:230:0:o;52226:67::-;52210:3;;;;:::i;:::-;;;;52167:135;;;-1:-1:-1;52317:5:0;;52100:230;-1:-1:-1;;52100:230:0:o;55636:281::-;20369:13;:11;:13::i;:::-;55690:6:::1;:14:::0;;-1:-1:-1;;55743:18:0;;;;;55690:14:::1;55774:8:::0;::::1;55690:14;55774:8;55770:111;;55804:28;55830:1;55804:25;:28::i;:::-;55843;55869:1;55843:25;:28::i;:::-;55901:8;::::0;;-1:-1:-1;;55889:20:0;::::1;55901:8;::::0;;;::::1;;;55900:9;55889:20:::0;;::::1;;::::0;;55636:281::o;56320:168::-;20369:13;:11;:13::i;:::-;56411:20:::1;56418:13;;56411:20;:::i;:::-;56446:30;:13;56462:14:::0;;56446:30:::1;:::i;54206:128::-:0;20369:13;:11;:13::i;:::-;54290:20:::1;:36:::0;54206:128::o;28992:336::-;29187:41;19114:10;29220:7;29187:18;:41::i;:::-;29179:100;;;;-1:-1:-1;;;29179:100:0;;20104:2:1;29179:100:0;;;20086:21:1;20143:2;20123:18;;;20116:30;20182:34;20162:18;;;20155:62;-1:-1:-1;;;20233:18:1;;;20226:44;20287:19;;29179:100:0;19902:410:1;29179:100:0;29292:28;29302:4;29308:2;29312:7;29292:9;:28::i;57499:463::-;20369:13;:11;:13::i;:::-;57617:40;;::::1;57609:49;;;::::0;::::1;;57672:9;57667:288;57687:26:::0;;::::1;57667:288;;;57731:14;57748:13;40773:10:::0;:17;;40685:113;57748:13:::1;57731:30;;57772:15;57790;;57806:1;57790:18;;;;;;;:::i;:::-;;;;;;;57772:36;;57819:11;57833:7;;57841:1;57833:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57819:24:::0;-1:-1:-1;57871:1:0::1;57854:92;57879:7;57874:1;:12;57854:92;;57908:26;57918:3:::0;57923:10:::1;57932:1:::0;57923:6;:10:::1;:::i;:::-;57908:9;:26::i;:::-;57888:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57854:92;;;;57720:235;;;57715:3;;;;;:::i;:::-;;;;57667:288;;;;57499:463:::0;;;;:::o;40353:256::-;40450:7;40486:23;40503:5;40486:16;:23::i;:::-;40478:5;:31;40470:87;;;;-1:-1:-1;;;40470:87:0;;10418:2:1;40470:87:0;;;10400:21:1;10457:2;10437:18;;;10430:30;10496:34;10476:18;;;10469:62;10567:13;10547:18;;;10540:41;10598:19;;40470:87:0;10216:407:1;40470:87:0;-1:-1:-1;;;;;;40575:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40353:256::o;52369:754::-;52428:4;;52443:157;52464:24;:31;52460:35;;52443:157;;;52548:5;-1:-1:-1;;;;;52517:36:0;:24;52542:1;52517:27;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52517:27:0;:36;52513:78;;;-1:-1:-1;52575:4:0;;52369:754;-1:-1:-1;;52369:754:0:o;52513:78::-;52497:3;;;;:::i;:::-;;;;52443:157;;;;52613:6;52608:157;52629:24;:31;52625:35;;52608:157;;;52713:5;-1:-1:-1;;;;;52682:36:0;:24;52707:1;52682:27;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52682:27:0;:36;52678:78;;;-1:-1:-1;52740:4:0;;52369:754;-1:-1:-1;;52369:754:0:o;52678:78::-;52662:3;;;;:::i;:::-;;;;52608:157;;;;52778:6;52773:157;52794:24;:31;52790:35;;52773:157;;;52878:5;-1:-1:-1;;;;;52847:36:0;:24;52872:1;52847:27;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52847:27:0;:36;52843:78;;;-1:-1:-1;52905:4:0;;52369:754;-1:-1:-1;;52369:754:0:o;52843:78::-;52827:3;;;;:::i;:::-;;;;52773:157;;;;52943:6;52938:157;52959:24;:31;52955:35;;52938:157;;;53043:5;-1:-1:-1;;;;;53012:36:0;:24;53037:1;53012:27;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;53012:27:0;:36;53008:78;;;-1:-1:-1;53070:4:0;;52369:754;-1:-1:-1;;52369:754:0:o;53008:78::-;52992:3;;;;:::i;:::-;;;;52938:157;;57998:168;20369:13;:11;:13::i;:::-;58076:22:::1;::::0;58068:70:::1;::::0;58055:7:::1;::::0;-1:-1:-1;;;;;58076:22:0::1;::::0;58112:21:::1;::::0;58055:7;58068:70;58055:7;58068:70;58112:21;58076:22;58068:70:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58054:84;;;58155:2;58147:11;;;::::0;::::1;;58045:121;57998:168::o:0;57240:223::-;20369:13;:11;:13::i;:::-;57353:31:::1;57360:24;;57353:31;:::i;:::-;57399:52;:24;57426:25:::0;;57399:52:::1;:::i;54610:156::-:0;20369:13;:11;:13::i;:::-;54707:22:::1;:51:::0;;-1:-1:-1;;;;;;54707:51:0::1;-1:-1:-1::0;;;;;54707:51:0;;;::::1;::::0;;;::::1;::::0;;54610:156::o;29399:185::-;29537:39;29554:4;29560:2;29564:7;29537:39;;;;;;;;;;;;:16;:39::i;53131:372::-;53212:16;53246:23;53272:17;53282:6;53272:9;:17::i;:::-;53246:43;;53298:25;53340:15;53326:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53326:30:0;;53298:58;;53370:9;53365:107;53385:15;53381:1;:19;53365:107;;;53432:30;53452:6;53460:1;53432:19;:30::i;:::-;53418:8;53427:1;53418:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53402:3;;;;:::i;:::-;;;;53365:107;;;-1:-1:-1;53487:8:0;53131:372;-1:-1:-1;;;53131:372:0:o;54116:84::-;20369:13;:11;:13::i;:::-;54177:4:::1;:15:::0;54116:84::o;40875:233::-;40950:7;40986:30;40773:10;:17;;40685:113;40986:30;40978:5;:38;40970:95;;;;-1:-1:-1;;;40970:95:0;;19691:2:1;40970:95:0;;;19673:21:1;19730:2;19710:18;;;19703:30;19769:34;19749:18;;;19742:62;19840:14;19820:18;;;19813:42;19872:19;;40970:95:0;19489:408:1;40970:95:0;41083:10;41094:5;41083:17;;;;;;;;:::i;:::-;;;;;;;;;41076:24;;40875:233;;;:::o;56774:223::-;20369:13;:11;:13::i;:::-;56887:31:::1;56894:24;;56887:31;:::i;:::-;56933:52;:24;56960:25:::0;;56933:52:::1;:::i;54340:154::-:0;20369:13;:11;:13::i;:::-;54437:20:::1;:49:::0;54340:154::o;54794:102::-;20369:13;:11;:13::i;:::-;54867:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54794:102:::0;:::o;55307:296::-;20369:13;:11;:13::i;:::-;55366:6:::1;:14:::0;;-1:-1:-1;;55414:18:0;;;;;55445:13;;::::1;55366:14;55445:13;55441:116;;55480:28;55506:1;55480:25;:28::i;:::-;55519;55545:1;55519:25;:28::i;:::-;55582:13;::::0;;-1:-1:-1;;55565:30:0;::::1;55582:13:::0;;;;::::1;;;55581:14;55565:30:::0;;::::1;;::::0;;55307:296::o;26490:222::-;26562:7;26598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26598:16:0;26633:19;26625:56;;;;-1:-1:-1;;;26625:56:0;;18180:2:1;26625:56:0;;;18162:21:1;18219:2;18199:18;;;18192:30;18258:26;18238:18;;;18231:54;18302:18;;26625:56:0;17978:348:1;54500:104:0;20369:13;:11;:13::i;:::-;54571:9:::1;:25:::0;54500:104::o;26221:207::-;26293:7;-1:-1:-1;;;;;26321:19:0;;26313:73;;;;-1:-1:-1;;;26313:73:0;;14300:2:1;26313:73:0;;;14282:21:1;14339:2;14319:18;;;14312:30;14378:34;14358:18;;;14351:62;-1:-1:-1;;;14429:18:1;;;14422:39;14478:19;;26313:73:0;14098:405:1;26313:73:0;-1:-1:-1;;;;;;26404:16:0;;;;;:9;:16;;;;;;;26221:207::o;21131:103::-;20369:13;:11;:13::i;:::-;21196:30:::1;21223:1;21196:18;:30::i;:::-;21131:103::o:0;56541:223::-;20369:13;:11;:13::i;:::-;56654:31:::1;56661:24;;56654:31;:::i;:::-;56700:52;:24;56727:25:::0;;56700:52:::1;:::i;26948:104::-:0;27004:13;27037:7;27030:14;;;;;:::i;49625:2441::-;49684:14;49701:13;40773:10;:17;;40685:113;49701:13;49732:6;;49684:30;;-1:-1:-1;49732:6:0;;49731:7;49723:46;;;;-1:-1:-1;;;49723:46:0;;16701:2:1;49723:46:0;;;16683:21:1;16740:2;16720:18;;;16713:30;16779:28;16759:18;;;16752:56;16825:18;;49723:46:0;16499:350:1;49723:46:0;49815:13;;;;;;;:21;;49832:4;49815:21;49804:2255;;;49857:25;49871:10;49857:13;:25::i;:::-;49849:106;;;;-1:-1:-1;;;49849:106:0;;20519:2:1;49849:106:0;;;20501:21:1;20558:2;20538:18;;;20531:30;;;20597:34;20577:18;;;20570:62;20668:34;20648:18;;;20641:62;-1:-1:-1;;;20719:19:1;;;20712:35;20764:19;;49849:106:0;20317:472:1;49849:106:0;49997:25;;49974:20;49983:11;49974:6;:20;:::i;:::-;:48;49966:90;;;;-1:-1:-1;;;49966:90:0;;12778:2:1;49966:90:0;;;12760:21:1;12817:2;12797:18;;;12790:30;12856:31;12836:18;;;12829:59;12905:18;;49966:90:0;12576:353:1;49966:90:0;50079:11;50075:1;:15;:53;;;;;50108:20;;50094:11;:34;50075:53;50067:107;;;;-1:-1:-1;;;50067:107:0;;14710:2:1;50067:107:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:34;14768:18;;;14761:62;-1:-1:-1;;;14839:18:1;;;14832:39;14888:19;;50067:107:0;14508:405:1;50067:107:0;50234:10;50185:26;50214:31;;;:19;:31;;;;;;50299:20;;50264:32;50285:11;50214:31;50264:32;:::i;:::-;:55;50256:108;;;;-1:-1:-1;;;50256:108:0;;19282:2:1;50256:108:0;;;19264:21:1;19321:2;19301:18;;;19294:30;19360:34;19340:18;;;19333:62;-1:-1:-1;;;19411:18:1;;;19404:38;19459:19;;50256:108:0;19080:404:1;50256:108:0;50403:11;50396:4;;:18;;;;:::i;:::-;50383:9;:31;;50375:62;;;;-1:-1:-1;;;50375:62:0;;18935:2:1;50375:62:0;;;18917:21:1;18974:2;18954:18;;;18947:30;-1:-1:-1;;;18993:18:1;;;18986:48;19051:18;;50375:62:0;18733:342:1;50375:62:0;50465:1;50448:151;50473:11;50468:1;:16;50448:151;;50526:10;50506:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;-1:-1:-1;50554:33:0;;-1:-1:-1;50564:10:0;50576;50585:1;50576:6;:10;:::i;50554:33::-;50486:3;;;;:::i;:::-;;;;50448:151;;;;49838:770;54867:21:::1;54794:102:::0;:::o;49804:2255::-;50653:8;;;;;;;;:16;;:8;:16;50642:1417;;;50690:18;50697:10;50690:6;:18::i;:::-;50682:90;;;;-1:-1:-1;;;50682:90:0;;15120:2:1;50682:90:0;;;15102:21:1;15159:2;15139:18;;;15132:30;15198:34;15178:18;;;15171:62;15269:29;15249:18;;;15242:57;15316:19;;50682:90:0;14918:423:1;50682:90:0;50815:9;;50791:20;50800:11;50791:6;:20;:::i;:::-;:33;;50783:65;;;;-1:-1:-1;;;50783:65:0;;17472:2:1;50783:65:0;;;17454:21:1;17511:2;17491:18;;;17484:30;-1:-1:-1;;;17530:18:1;;;17523:49;17589:18;;50783:65:0;17270:343:1;50783:65:0;50871:11;50867:1;:15;:53;;;;;50900:20;;50886:11;:34;50867:53;50859:102;;;;-1:-1:-1;;;50859:102:0;;13895:2:1;50859:102:0;;;13877:21:1;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;-1:-1:-1;;;14024:18:1;;;14017:34;14068:19;;50859:102:0;13693:400:1;50859:102:0;51011:10;50972:21;50996:26;;;:14;:26;;;;;;51071:20;;51041:27;51057:11;50996:26;51041:27;:::i;:::-;:50;51033:98;;;;-1:-1:-1;;;51033:98:0;;10014:2:1;51033:98:0;;;9996:21:1;10053:2;10033:18;;;10026:30;10092:34;10072:18;;;10065:62;-1:-1:-1;;;10143:18:1;;;10136:33;10186:19;;51033:98:0;9812:399:1;51033:98:0;51170:11;51163:4;;:18;;;;:::i;:::-;51150:9;:31;;51142:62;;;;-1:-1:-1;;;51142:62:0;;18935:2:1;51142:62:0;;;18917:21:1;18974:2;18954:18;;;18947:30;-1:-1:-1;;;18993:18:1;;;18986:48;19051:18;;51142:62:0;18733:342:1;51142:62:0;51232:1;51215:146;51240:11;51235:1;:16;51215:146;;51288:10;51273:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;51316:33:0;;-1:-1:-1;51326:10:0;51338;51347:1;51338:6;:10;:::i;51316:33::-;51253:3;;;;:::i;:::-;;;;51215:146;;50642:1417;51425:10;;;;;;;51417:44;;;;-1:-1:-1;;;51417:44:0;;9664:2:1;51417:44:0;;;9646:21:1;9703:2;9683:18;;;9676:30;9742:23;9722:18;;;9715:51;9783:18;;51417:44:0;9462:345:1;51417:44:0;51504:9;;51480:20;51489:11;51480:6;:20;:::i;:::-;:33;;51472:65;;;;-1:-1:-1;;;51472:65:0;;17472:2:1;51472:65:0;;;17454:21:1;17511:2;17491:18;;;17484:30;-1:-1:-1;;;17530:18:1;;;17523:49;17589:18;;51472:65:0;17270:343:1;51472:65:0;51560:11;51556:1;:15;:53;;;;;51589:20;;51575:11;:34;51556:53;51548:97;;;;-1:-1:-1;;;51548:97:0;;17820:2:1;51548:97:0;;;17802:21:1;17859:2;17839:18;;;17832:30;17898:33;17878:18;;;17871:61;17949:18;;51548:97:0;17618:355:1;51548:97:0;51700:10;51656:24;51683:28;;;:16;:28;;;;;;51763:20;;51730:30;51749:11;51683:28;51730:30;:::i;:::-;:53;51722:96;;;;-1:-1:-1;;;51722:96:0;;12419:2:1;51722:96:0;;;12401:21:1;12458:2;12438:18;;;12431:30;12497:32;12477:18;;;12470:60;12547:18;;51722:96:0;12217:354:1;51722:96:0;51857:11;51850:4;;:18;;;;:::i;:::-;51837:9;:31;;51829:62;;;;-1:-1:-1;;;51829:62:0;;18935:2:1;51829:62:0;;;18917:21:1;18974:2;18954:18;;;18947:30;-1:-1:-1;;;18993:18:1;;;18986:48;19051:18;;51829:62:0;18733:342:1;51829:62:0;51919:1;51902:148;51927:11;51922:1;:16;51902:148;;51977:10;51960:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;-1:-1:-1;52005:33:0;;-1:-1:-1;52015:10:0;52027;52036:1;52027:6;:10;:::i;52005:33::-;51940:3;;;;:::i;:::-;;;;51902:148;;28535:155;28630:52;19114:10;28663:8;28673;28630:18;:52::i;54013:67::-;20369:13;:11;:13::i;:::-;54057:8:::1;:15:::0;;-1:-1:-1;;54057:15:0::1;::::0;::::1;::::0;;54013:67::o;29655:323::-;29829:41;19114:10;29862:7;29829:18;:41::i;:::-;29821:100;;;;-1:-1:-1;;;29821:100:0;;20104:2:1;29821:100:0;;;20086:21:1;20143:2;20123:18;;;20116:30;20182:34;20162:18;;;20155:62;-1:-1:-1;;;20233:18:1;;;20226:44;20287:19;;29821:100:0;19902:410:1;29821:100:0;29932:38;29946:4;29952:2;29956:7;29965:4;29932:13;:38::i;55194:75::-;20369:13;:11;:13::i;:::-;55255:6:::1;::::0;;-1:-1:-1;;55245:16:0;::::1;55255:6;::::0;;::::1;55254:7;55245:16;::::0;;55194:75::o;53511:458::-;31550:4;31574:16;;;:7;:16;;;;;;53584:13;;-1:-1:-1;;;;;31574:16:0;53608:76;;;;-1:-1:-1;;;53608:76:0;;17056:2:1;53608:76:0;;;17038:21:1;17095:2;17075:18;;;17068:30;17134:34;17114:18;;;17107:62;17205:17;17185:18;;;17178:45;17240:19;;53608:76:0;16854:411:1;53608:76:0;53696:8;;;;;;;53693:66;;53735:14;53728:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53511:458;;;:::o;53693:66::-;53767:28;53798:10;:8;:10::i;:::-;53767:41;;53855:1;53830:14;53824:28;:32;:137;;;;;;;;;;;;;;;;;53894:14;53910:18;:7;:16;:18::i;:::-;53930:13;53877:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53824:137;53817:144;53511:458;-1:-1:-1;;;53511:458:0:o;54902:126::-;20369:13;:11;:13::i;:::-;54987:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;55952:289::-:0;20369:13;:11;:13::i;:::-;56008:6:::1;:14:::0;;-1:-1:-1;;56061:16:0;;;;;56090:10;;::::1;56008:14;56090:10;56086:115;;56122:29;56148:2;56122:25;:29::i;:::-;56162;56188:2;56162:25;:29::i;:::-;56223:10;::::0;;-1:-1:-1;;56209:24:0;::::1;56223:10:::0;;;;::::1;;;56222:11;56209:24:::0;;::::1;;::::0;;55952:289::o;55034:124::-;20369:13;:11;:13::i;:::-;55118:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;57007:223::-:0;20369:13;:11;:13::i;:::-;57120:31:::1;57127:24;;57120:31;:::i;:::-;57166:52;:24;57193:25:::0;;57166:52:::1;:::i;21389:201::-:0;20369:13;:11;:13::i;:::-;-1:-1:-1;;;;;21478:22:0;::::1;21470:73;;;::::0;-1:-1:-1;;;21470:73:0;;11249:2:1;21470:73:0::1;::::0;::::1;11231:21:1::0;11288:2;11268:18;;;11261:30;11327:34;11307:18;;;11300:62;-1:-1:-1;;;11378:18:1;;;11371:36;11424:19;;21470:73:0::1;11047:402:1::0;21470:73:0::1;21554:28;21573:8;21554:18;:28::i;25852:305::-:0;25954:4;-1:-1:-1;;;;;;25991:40:0;;-1:-1:-1;;;25991:40:0;;:105;;-1:-1:-1;;;;;;;26048:48:0;;-1:-1:-1;;;26048:48:0;25991:105;:158;;;-1:-1:-1;;;;;;;;;;11533:40:0;;;26113:36;11424:157;36267:135;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;36341:53;;;;-1:-1:-1;;;36341:53:0;;18180:2:1;36341:53:0;;;18162:21:1;18219:2;18199:18;;;18192:30;18258:26;18238:18;;;18231:54;18302:18;;36341:53:0;17978:348:1;35546:174:0;35621:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35621:29:0;-1:-1:-1;;;;;35621:29:0;;;;;;;;:24;;35675:23;35621:24;35675:14;:23::i;:::-;-1:-1:-1;;;;;35666:46:0;;;;;;;;;;;35546:174;;:::o;20648:132::-;20556:6;;-1:-1:-1;;;;;20556:6:0;19114:10;20712:23;20704:68;;;;-1:-1:-1;;;20704:68:0;;16340:2:1;20704:68:0;;;16322:21:1;;;16359:18;;;16352:30;16418:34;16398:18;;;16391:62;16470:18;;20704:68:0;16138:356:1;31779:264:0;31872:4;31889:13;31905:23;31920:7;31905:14;:23::i;:::-;31889:39;;31958:5;-1:-1:-1;;;;;31947:16:0;:7;-1:-1:-1;;;;;31947:16:0;;:52;;;-1:-1:-1;;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31967:32;31947:87;;;;32027:7;-1:-1:-1;;;;;32003:31:0;:20;32015:7;32003:11;:20::i;:::-;-1:-1:-1;;;;;32003:31:0;;31947:87;31939:96;31779:264;-1:-1:-1;;;;31779:264:0:o;34802:625::-;34961:4;-1:-1:-1;;;;;34934:31:0;:23;34949:7;34934:14;:23::i;:::-;-1:-1:-1;;;;;34934:31:0;;34926:81;;;;-1:-1:-1;;;34926:81:0;;11656:2:1;34926:81:0;;;11638:21:1;11695:2;11675:18;;;11668:30;11734:34;11714:18;;;11707:62;-1:-1:-1;;;11785:18:1;;;11778:35;11830:19;;34926:81:0;11454:401:1;34926:81:0;-1:-1:-1;;;;;35026:16:0;;35018:65;;;;-1:-1:-1;;;35018:65:0;;13136:2:1;35018:65:0;;;13118:21:1;13175:2;13155:18;;;13148:30;13214:34;13194:18;;;13187:62;-1:-1:-1;;;13265:18:1;;;13258:34;13309:19;;35018:65:0;12934:400:1;35018:65:0;35096:39;35117:4;35123:2;35127:7;35096:20;:39::i;:::-;35200:29;35217:1;35221:7;35200:8;:29::i;:::-;-1:-1:-1;;;;;35242:15:0;;;;;;:9;:15;;;;;:20;;35261:1;;35242:15;:20;;35261:1;;35242:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35273:13:0;;;;;;:9;:13;;;;;:18;;35290:1;;35273:13;:18;;35290:1;;35273:18;:::i;:::-;;;;-1:-1:-1;;35302:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35302:21:0;-1:-1:-1;;;;;35302:21:0;;;;;;;;;35341:27;;35302:16;;35341:27;;;;;;;27879:347;27809:417;;:::o;32385:110::-;32461:26;32471:2;32475:7;32461:26;;;;;;;;;;;;:9;:26::i;21750:191::-;21843:6;;;-1:-1:-1;;;;;21860:17:0;;;-1:-1:-1;;;;;;21860:17:0;;;;;;;21893:40;;21843:6;;;21860:17;21843:6;;21893:40;;21824:16;;21893:40;21813:128;21750:191;:::o;35863:315::-;36018:8;-1:-1:-1;;;;;36009:17:0;:5;-1:-1:-1;;;;;36009:17:0;;;36001:55;;;;-1:-1:-1;;;36001:55:0;;13541:2:1;36001:55:0;;;13523:21:1;13580:2;13560:18;;;13553:30;13619:27;13599:18;;;13592:55;13664:18;;36001:55:0;13339:349:1;36001:55:0;-1:-1:-1;;;;;36067:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36067:46:0;;;;;;;;;;36129:41;;9186::1;;;36129::0;;9159:18:1;36129:41:0;;;;;;;35863:315;;;:::o;30859:313::-;31015:28;31025:4;31031:2;31035:7;31015:9;:28::i;:::-;31062:47;31085:4;31091:2;31095:7;31104:4;31062:22;:47::i;:::-;31054:110;;;;-1:-1:-1;;;31054:110:0;;10830:2:1;31054:110:0;;;10812:21:1;10869:2;10849:18;;;10842:30;10908:34;10888:18;;;10881:62;-1:-1:-1;;;10959:18:1;;;10952:48;11017:19;;31054:110:0;10628:414:1;49483:106:0;49543:13;49574:7;49567:14;;;;;:::i;22378:723::-;22434:13;22655:10;22651:53;;-1:-1:-1;;22682:10:0;;;;;;;;;;;;-1:-1:-1;;;22682:10:0;;;;;22378:723::o;22651:53::-;22729:5;22714:12;22770:78;22777:9;;22770:78;;22803:8;;;;:::i;:::-;;-1:-1:-1;22826:10:0;;-1:-1:-1;22834:2:0;22826:10;;:::i;:::-;;;22770:78;;;22858:19;22890:6;22880:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22880:17:0;;22858:39;;22908:154;22915:10;;22908:154;;22942:11;22952:1;22942:11;;:::i;:::-;;-1:-1:-1;23011:10:0;23019:2;23011:5;:10;:::i;:::-;22998:24;;:2;:24;:::i;:::-;22985:39;;22968:6;22975;22968:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;23039:11:0;23048:2;23039:11;;:::i;:::-;;;22908:154;;41721:589;-1:-1:-1;;;;;41927:18:0;;41923:187;;41962:40;41994:7;43137:10;:17;;43110:24;;;;:15;:24;;;;;:44;;;43165:24;;;;;;;;;;;;43033:164;41962:40;41923:187;;;42032:2;-1:-1:-1;;;;;42024:10:0;:4;-1:-1:-1;;;;;42024:10:0;;42020:90;;42051:47;42084:4;42090:7;42051:32;:47::i;:::-;-1:-1:-1;;;;;42124:16:0;;42120:183;;42157:45;42194:7;42157:36;:45::i;42120:183::-;42230:4;-1:-1:-1;;;;;42224:10:0;:2;-1:-1:-1;;;;;42224:10:0;;42220:83;;42251:40;42279:2;42283:7;42251:27;:40::i;32722:319::-;32851:18;32857:2;32861:7;32851:5;:18::i;:::-;32902:53;32933:1;32937:2;32941:7;32950:4;32902:22;:53::i;:::-;32880:153;;;;-1:-1:-1;;;32880:153:0;;10830:2:1;32880:153:0;;;10812:21:1;10869:2;10849:18;;;10842:30;10908:34;10888:18;;;10881:62;-1:-1:-1;;;10959:18:1;;;10952:48;11017:19;;32880:153:0;10628:414:1;36966:853:0;37120:4;-1:-1:-1;;;;;37141:13:0;;1563:19;:23;37137:675;;37177:71;;-1:-1:-1;;;37177:71:0;;-1:-1:-1;;;;;37177:36:0;;;;;:71;;19114:10;;37228:4;;37234:7;;37243:4;;37177:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37177:71:0;;;;;;;;-1:-1:-1;;37177:71:0;;;;;;;;;;;;:::i;:::-;;;37173:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37418:13:0;;37414:328;;37461:60;;-1:-1:-1;;;37461:60:0;;10830:2:1;37461:60:0;;;10812:21:1;10869:2;10849:18;;;10842:30;10908:34;10888:18;;;10881:62;-1:-1:-1;;;10959:18:1;;;10952:48;11017:19;;37461:60:0;10628:414:1;37414:328:0;37692:6;37686:13;37677:6;37673:2;37669:15;37662:38;37173:584;-1:-1:-1;;;;;;37299:51:0;-1:-1:-1;;;37299:51:0;;-1:-1:-1;37292:58:0;;37137:675;-1:-1:-1;37796:4:0;36966:853;;;;;;:::o;43824:988::-;44090:22;44140:1;44115:22;44132:4;44115:16;:22::i;:::-;:26;;;;:::i;:::-;44152:18;44173:26;;;:17;:26;;;;;;44090:51;;-1:-1:-1;44306:28:0;;;44302:328;;-1:-1:-1;;;;;44373:18:0;;44351:19;44373:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44424:30;;;;;;:44;;;44541:30;;:17;:30;;;;;:43;;;44302:328;-1:-1:-1;44726:26:0;;;;:17;:26;;;;;;;;44719:33;;;-1:-1:-1;;;;;44770:18:0;;;;;:12;:18;;;;;:34;;;;;;;44763:41;43824:988::o;45107:1079::-;45385:10;:17;45360:22;;45385:21;;45405:1;;45385:21;:::i;:::-;45417:18;45438:24;;;:15;:24;;;;;;45811:10;:26;;45360:46;;-1:-1:-1;45438:24:0;;45360:46;;45811:26;;;;;;:::i;:::-;;;;;;;;;45789:48;;45875:11;45850:10;45861;45850:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45955:28;;;:15;:28;;;;;;;:41;;;46127:24;;;;;46120:31;46162:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45178:1008;;;45107:1079;:::o;42611:221::-;42696:14;42713:20;42730:2;42713:16;:20::i;:::-;-1:-1:-1;;;;;42744:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42789:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42611:221:0:o;33377:439::-;-1:-1:-1;;;;;33457:16:0;;33449:61;;;;-1:-1:-1;;;33449:61:0;;15979:2:1;33449:61:0;;;15961:21:1;;;15998:18;;;15991:30;16057:34;16037:18;;;16030:62;16109:18;;33449:61:0;15777:356:1;33449:61:0;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;:30;33521:58;;;;-1:-1:-1;;;33521:58:0;;12062:2:1;33521:58:0;;;12044:21:1;12101:2;12081:18;;;12074:30;12140;12120:18;;;12113:58;12188:18;;33521:58:0;11860:352:1;33521:58:0;33592:45;33621:1;33625:2;33629:7;33592:20;:45::i;:::-;-1:-1:-1;;;;;33650:13:0;;;;;;:9;:13;;;;;:18;;33667:1;;33650:13;:18;;33667:1;;33650:18;:::i;:::-;;;;-1:-1:-1;;33679:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33679:21:0;-1:-1:-1;;;;;33679:21:0;;;;;;;;33718:33;;33679:16;;;33718:33;;33679:16;;33718:33;54867:21:::1;54794:102:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:367::-;914:8;924:6;978:3;971:4;963:6;959:17;955:27;945:55;;996:1;993;986:12;945:55;-1:-1:-1;1019:20:1;;1062:18;1051:30;;1048:50;;;1094:1;1091;1084:12;1048:50;1131:4;1123:6;1119:17;1107:29;;1191:3;1184:4;1174:6;1171:1;1167:14;1159:6;1155:27;1151:38;1148:47;1145:67;;;1208:1;1205;1198:12;1145:67;851:367;;;;;:::o;1223:186::-;1282:6;1335:2;1323:9;1314:7;1310:23;1306:32;1303:52;;;1351:1;1348;1341:12;1303:52;1374:29;1393:9;1374:29;:::i;1414:260::-;1482:6;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1582:29;1601:9;1582:29;:::i;:::-;1572:39;;1630:38;1664:2;1653:9;1649:18;1630:38;:::i;:::-;1620:48;;1414:260;;;;;:::o;1679:328::-;1756:6;1764;1772;1825:2;1813:9;1804:7;1800:23;1796:32;1793:52;;;1841:1;1838;1831:12;1793:52;1864:29;1883:9;1864:29;:::i;:::-;1854:39;;1912:38;1946:2;1935:9;1931:18;1912:38;:::i;:::-;1902:48;;1997:2;1986:9;1982:18;1969:32;1959:42;;1679:328;;;;;:::o;2012:666::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2224:29;2243:9;2224:29;:::i;:::-;2214:39;;2272:38;2306:2;2295:9;2291:18;2272:38;:::i;:::-;2262:48;;2357:2;2346:9;2342:18;2329:32;2319:42;;2412:2;2401:9;2397:18;2384:32;2439:18;2431:6;2428:30;2425:50;;;2471:1;2468;2461:12;2425:50;2494:22;;2547:4;2539:13;;2535:27;-1:-1:-1;2525:55:1;;2576:1;2573;2566:12;2525:55;2599:73;2664:7;2659:2;2646:16;2641:2;2637;2633:11;2599:73;:::i;:::-;2589:83;;;2012:666;;;;;;;:::o;2683:347::-;2748:6;2756;2809:2;2797:9;2788:7;2784:23;2780:32;2777:52;;;2825:1;2822;2815:12;2777:52;2848:29;2867:9;2848:29;:::i;:::-;2838:39;;2927:2;2916:9;2912:18;2899:32;2974:5;2967:13;2960:21;2953:5;2950:32;2940:60;;2996:1;2993;2986:12;2940:60;3019:5;3009:15;;;2683:347;;;;;:::o;3035:254::-;3103:6;3111;3164:2;3152:9;3143:7;3139:23;3135:32;3132:52;;;3180:1;3177;3170:12;3132:52;3203:29;3222:9;3203:29;:::i;:::-;3193:39;3279:2;3264:18;;;;3251:32;;-1:-1:-1;;;3035:254:1:o;3294:437::-;3380:6;3388;3441:2;3429:9;3420:7;3416:23;3412:32;3409:52;;;3457:1;3454;3447:12;3409:52;3497:9;3484:23;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3601:70;3663:7;3654:6;3643:9;3639:22;3601:70;:::i;:::-;3690:8;;3575:96;;-1:-1:-1;3294:437:1;-1:-1:-1;;;;3294:437:1:o;3736:773::-;3858:6;3866;3874;3882;3935:2;3923:9;3914:7;3910:23;3906:32;3903:52;;;3951:1;3948;3941:12;3903:52;3991:9;3978:23;4020:18;4061:2;4053:6;4050:14;4047:34;;;4077:1;4074;4067:12;4047:34;4116:70;4178:7;4169:6;4158:9;4154:22;4116:70;:::i;:::-;4205:8;;-1:-1:-1;4090:96:1;-1:-1:-1;4293:2:1;4278:18;;4265:32;;-1:-1:-1;4309:16:1;;;4306:36;;;4338:1;4335;4328:12;4306:36;;4377:72;4441:7;4430:8;4419:9;4415:24;4377:72;:::i;:::-;3736:773;;;;-1:-1:-1;4468:8:1;-1:-1:-1;;;;3736:773:1:o;4514:245::-;4572:6;4625:2;4613:9;4604:7;4600:23;4596:32;4593:52;;;4641:1;4638;4631:12;4593:52;4680:9;4667:23;4699:30;4723:5;4699:30;:::i;4764:249::-;4833:6;4886:2;4874:9;4865:7;4861:23;4857:32;4854:52;;;4902:1;4899;4892:12;4854:52;4934:9;4928:16;4953:30;4977:5;4953:30;:::i;5018:450::-;5087:6;5140:2;5128:9;5119:7;5115:23;5111:32;5108:52;;;5156:1;5153;5146:12;5108:52;5196:9;5183:23;5229:18;5221:6;5218:30;5215:50;;;5261:1;5258;5251:12;5215:50;5284:22;;5337:4;5329:13;;5325:27;-1:-1:-1;5315:55:1;;5366:1;5363;5356:12;5315:55;5389:73;5454:7;5449:2;5436:16;5431:2;5427;5423:11;5389:73;:::i;5473:180::-;5532:6;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;-1:-1:-1;5624:23:1;;5473:180;-1:-1:-1;5473:180:1:o;5658:257::-;5699:3;5737:5;5731:12;5764:6;5759:3;5752:19;5780:63;5836:6;5829:4;5824:3;5820:14;5813:4;5806:5;5802:16;5780:63;:::i;:::-;5897:2;5876:15;-1:-1:-1;;5872:29:1;5863:39;;;;5904:4;5859:50;;5658:257;-1:-1:-1;;5658:257:1:o;5920:1527::-;6144:3;6182:6;6176:13;6208:4;6221:51;6265:6;6260:3;6255:2;6247:6;6243:15;6221:51;:::i;:::-;6335:13;;6294:16;;;;6357:55;6335:13;6294:16;6379:15;;;6357:55;:::i;:::-;6501:13;;6434:20;;;6474:1;;6561;6583:18;;;;6636;;;;6663:93;;6741:4;6731:8;6727:19;6715:31;;6663:93;6804:2;6794:8;6791:16;6771:18;6768:40;6765:167;;;-1:-1:-1;;;6831:33:1;;6887:4;6884:1;6877:15;6917:4;6838:3;6905:17;6765:167;6948:18;6975:110;;;;7099:1;7094:328;;;;6941:481;;6975:110;-1:-1:-1;;7010:24:1;;6996:39;;7055:20;;;;-1:-1:-1;6975:110:1;;7094:328;21049:1;21042:14;;;21086:4;21073:18;;7189:1;7203:169;7217:8;7214:1;7211:15;7203:169;;;7299:14;;7284:13;;;7277:37;7342:16;;;;7234:10;;7203:169;;;7207:3;;7403:8;7396:5;7392:20;7385:27;;6941:481;-1:-1:-1;7438:3:1;;5920:1527;-1:-1:-1;;;;;;;;;;;5920:1527:1:o;7893:511::-;8087:4;-1:-1:-1;;;;;8197:2:1;8189:6;8185:15;8174:9;8167:34;8249:2;8241:6;8237:15;8232:2;8221:9;8217:18;8210:43;;8289:6;8284:2;8273:9;8269:18;8262:34;8332:3;8327:2;8316:9;8312:18;8305:31;8353:45;8393:3;8382:9;8378:19;8370:6;8353:45;:::i;:::-;8345:53;7893:511;-1:-1:-1;;;;;;7893:511:1:o;8409:632::-;8580:2;8632:21;;;8702:13;;8605:18;;;8724:22;;;8551:4;;8580:2;8803:15;;;;8777:2;8762:18;;;8551:4;8846:169;8860:6;8857:1;8854:13;8846:169;;;8921:13;;8909:26;;8990:15;;;;8955:12;;;;8882:1;8875:9;8846:169;;;-1:-1:-1;9032:3:1;;8409:632;-1:-1:-1;;;;;;8409:632:1:o;9238:219::-;9387:2;9376:9;9369:21;9350:4;9407:44;9447:2;9436:9;9432:18;9424:6;9407:44;:::i;21102:128::-;21142:3;21173:1;21169:6;21166:1;21163:13;21160:39;;;21179:18;;:::i;:::-;-1:-1:-1;21215:9:1;;21102:128::o;21235:120::-;21275:1;21301;21291:35;;21306:18;;:::i;:::-;-1:-1:-1;21340:9:1;;21235:120::o;21360:168::-;21400:7;21466:1;21462;21458:6;21454:14;21451:1;21448:21;21443:1;21436:9;21429:17;21425:45;21422:71;;;21473:18;;:::i;:::-;-1:-1:-1;21513:9:1;;21360:168::o;21533:125::-;21573:4;21601:1;21598;21595:8;21592:34;;;21606:18;;:::i;:::-;-1:-1:-1;21643:9:1;;21533:125::o;21663:258::-;21735:1;21745:113;21759:6;21756:1;21753:13;21745:113;;;21835:11;;;21829:18;21816:11;;;21809:39;21781:2;21774:10;21745:113;;;21876:6;21873:1;21870:13;21867:48;;;-1:-1:-1;;21911:1:1;21893:16;;21886:27;21663:258::o;21926:380::-;22005:1;22001:12;;;;22048;;;22069:61;;22123:4;22115:6;22111:17;22101:27;;22069:61;22176:2;22168:6;22165:14;22145:18;22142:38;22139:161;;;22222:10;22217:3;22213:20;22210:1;22203:31;22257:4;22254:1;22247:15;22285:4;22282:1;22275:15;22139:161;;21926:380;;;:::o;22311:135::-;22350:3;-1:-1:-1;;22371:17:1;;22368:43;;;22391:18;;:::i;:::-;-1:-1:-1;22438:1:1;22427:13;;22311:135::o;22451:112::-;22483:1;22509;22499:35;;22514:18;;:::i;:::-;-1:-1:-1;22548:9:1;;22451:112::o;22568:127::-;22629:10;22624:3;22620:20;22617:1;22610:31;22660:4;22657:1;22650:15;22684:4;22681:1;22674:15;22700:127;22761:10;22756:3;22752:20;22749:1;22742:31;22792:4;22789:1;22782:15;22816:4;22813:1;22806:15;22832:127;22893:10;22888:3;22884:20;22881:1;22874:31;22924:4;22921:1;22914:15;22948:4;22945:1;22938:15;22964:127;23025:10;23020:3;23016:20;23013:1;23006:31;23056:4;23053:1;23046:15;23080:4;23077:1;23070:15;23096:127;23157:10;23152:3;23148:20;23145:1;23138:31;23188:4;23185:1;23178:15;23212:4;23209:1;23202:15;23228:131;-1:-1:-1;;;;;;23302:32:1;;23292:43;;23282:71;;23349:1;23346;23339:12

Swarm Source

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