ETH Price: $3,097.13 (+2.11%)
Gas: 3 Gwei

Token

FULL SEND X Alien Frens (FSAF)
 

Overview

Max Total Supply

1,001 FSAF

Holders

633

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FSAF
0x6Ad6b507397884F25783b6aC4515b269b75b1395
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:
FULLSENDxAlienFrens

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



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



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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/FULLSENDxAlienFrens.sol



pragma solidity ^0.8.0;







contract FULLSENDxAlienFrens is ERC721, Ownable, ReentrancyGuard {
    string public baseURI;

    uint256 public constant MAX_SUPPLY = 1001;

    uint256 public cost = 0 ether;
    uint256 public maxPerWallet = 1;

    // used to validate whitelists
    bytes32 public whitelistMerkleRoot;

    bool public isPresaleActive;
    bool public isMainSaleActive;

    mapping(uint256 => string) internal tokenUris;
    mapping(address => uint256) internal walletCap;

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    constructor(string memory _baseURI) ERC721("FULL SEND X Alien Frens", "FSAF") {
        baseURI = _baseURI;
        isPresaleActive = false;
        isMainSaleActive = false;
    }

    /**
     * @dev validates merkleProof
     */
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price) {
        require(
            price == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    /**
    * @dev mints 1 token per whitelisted address, does not charge a fee
    */
    function mintWhitelist(
        bytes32[] calldata merkleProof
    )
        public
        payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        isCorrectPayment(cost)
        nonReentrant
    {
        require(isPresaleActive && !isMainSaleActive, "Whitelist must be active to mint tokens");
        require(walletCap[msg.sender] + 1 <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + 1 <= MAX_SUPPLY, "Purchase would exceed max number of tokens");
        
        _tokenSupply.increment();
        _mint(msg.sender, _tokenSupply.current());
        walletCap[msg.sender] += 1;
    }

    /**
    * @dev mints specified # of tokens to sender address
    */
    function mint()
        public
        payable
        isCorrectPayment(cost)
        nonReentrant
    {
        require(!isPresaleActive && isMainSaleActive, "Main sale must be active to mint.");
        require(walletCap[msg.sender] + 1 <= maxPerWallet, "Purchase would exceed max number of mints per wallet.");
        require(_tokenSupply.current() + 1 <= MAX_SUPPLY, "Purchase would exceed max number of tokens");

        _tokenSupply.increment();
        _mint(msg.sender, _tokenSupply.current());
        walletCap[msg.sender] += 1;
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
      public
      view
      virtual
      override
      returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
    }

    function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    // @dev Private mint function reserved for company.
    // @param _to The user receiving the tokens
    // @param _mintAmount The number of tokens to distribute
    function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "You can only mint more than 0 tokens");
        require(_tokenSupply.current() + _mintAmount <= MAX_SUPPLY, "Can't mint more than max supply");
        for (uint256 i = 0; i < _mintAmount; i++) {
            _tokenSupply.increment();
            _mint(_to, _tokenSupply.current());
        }
    }

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

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipMainSaleState() external onlyOwner {
        isMainSaleActive = !isMainSaleActive;
    }

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

    /**
     * @dev withdraw funds for to specified account
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMainSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","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":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009556001600a553480156200001b57600080fd5b5060405162002867380380620028678339810160408190526200003e91620001fb565b604080518082018252601781527f46554c4c2053454e44205820416c69656e204672656e730000000000000000006020808301918252835180850190945260048452632329a0a360e11b9084015281519192916200009f9160009162000155565b508051620000b590600190602084019062000155565b505050620000d2620000cc620000ff60201b60201c565b62000103565b60016007558051620000ec90600890602084019062000155565b5050600c805461ffff191690556200031d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016390620002ca565b90600052602060002090601f016020900481019282620001875760008555620001d2565b82601f10620001a257805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d2578251825591602001919060010190620001b5565b50620001e0929150620001e4565b5090565b5b80821115620001e05760008155600101620001e5565b600060208083850312156200020e578182fd5b82516001600160401b038082111562000225578384fd5b818501915085601f83011262000239578384fd5b8151818111156200024e576200024e62000307565b604051601f8201601f191681018501838111828210171562000274576200027462000307565b60405281815283820185018810156200028b578586fd5b8592505b81831015620002ae57838301850151818401860152918401916200028f565b81831115620002bf57858583830101525b979650505050505050565b600281046001821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61253a806200032d6000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063bd32fb661161006f578063bd32fb66146104f3578063c87b56dd14610513578063e985e9c514610533578063f2fde38b14610553578063f81227d414610573576101ee565b8063a22cb46514610489578063aa98e0c6146104a9578063b3b2cb7a146104be578063b88d4fde146104d3576101ee565b806370a08231116100dc57806370a082311461042a578063715018a61461044a5780638da5cb5b1461045f57806395d89b4114610474576101ee565b806355f804b3146103c057806360d938dc146103e05780636352211e146103f55780636c0360eb14610415576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461035857806344a0d68a1461037857806344d8438114610398578063453c2310146103ab576101ee565b806323b872dd146102f95780632aea3d231461031957806332cb6b0c1461032e5780633ccfd60b14610343576101ee565b80631249c58b116101c15780631249c58b1461029a57806313faede6146102a257806318160ddd146102c457806321ca4236146102d9576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611af6565b610588565b6040516102209190611cf7565b60405180910390f35b34801561023557600080fd5b5061023e6105d0565b6040516102209190611d0b565b34801561025757600080fd5b5061026b610266366004611ade565b610662565b6040516102209190611ca6565b34801561028457600080fd5b50610298610293366004611a46565b6106ae565b005b610298610746565b3480156102ae57600080fd5b506102b7610882565b6040516102209190611d02565b3480156102d057600080fd5b506102b7610888565b3480156102e557600080fd5b506102986102f4366004611a46565b610899565b34801561030557600080fd5b50610298610314366004611958565b610963565b34801561032557600080fd5b5061029861099b565b34801561033a57600080fd5b506102b76109f7565b34801561034f57600080fd5b506102986109fd565b34801561036457600080fd5b50610298610373366004611958565b610a6f565b34801561038457600080fd5b50610298610393366004611ade565b610a8a565b6102986103a6366004611a6f565b610ace565b3480156103b757600080fd5b506102b7610c8f565b3480156103cc57600080fd5b506102986103db366004611b2e565b610c95565b3480156103ec57600080fd5b50610213610ce7565b34801561040157600080fd5b5061026b610410366004611ade565b610cf0565b34801561042157600080fd5b5061023e610d25565b34801561043657600080fd5b506102b7610445366004611905565b610db3565b34801561045657600080fd5b50610298610df7565b34801561046b57600080fd5b5061026b610e42565b34801561048057600080fd5b5061023e610e51565b34801561049557600080fd5b506102986104a4366004611a0c565b610e60565b3480156104b557600080fd5b506102b7610f2e565b3480156104ca57600080fd5b50610213610f34565b3480156104df57600080fd5b506102986104ee366004611993565b610f42565b3480156104ff57600080fd5b5061029861050e366004611ade565b610f81565b34801561051f57600080fd5b5061023e61052e366004611ade565b610fc5565b34801561053f57600080fd5b5061021361054e366004611926565b61101e565b34801561055f57600080fd5b5061029861056e366004611905565b61104c565b34801561057f57600080fd5b506102986110bd565b60006001600160e01b031982166380ac58cd60e01b14806105b957506001600160e01b03198216635b5e139f60e01b145b806105c857506105c882611110565b90505b919050565b6060600080546105df90612442565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612442565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d82611129565b6106925760405162461bcd60e51b8152600401610689906121fd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b982610cf0565b9050806001600160a01b0316836001600160a01b031614156106ed5760405162461bcd60e51b8152600401610689906122c7565b806001600160a01b03166106ff611146565b6001600160a01b0316148061071b575061071b8161054e611146565b6107375760405162461bcd60e51b815260040161068990612038565b610741838361114a565b505050565b6009543481146107685760405162461bcd60e51b815260040161068990612359565b6002600754141561078b5760405162461bcd60e51b815260040161068990612390565b6002600755600c5460ff161580156107aa5750600c54610100900460ff165b6107c65760405162461bcd60e51b815260040161068990611fc0565b600a54336000908152600e60205260409020546107e49060016123d3565b11156108025760405162461bcd60e51b81526004016106899061215d565b6103e961080f600f6111b8565b61081a9060016123d3565b11156108385760405162461bcd60e51b815260040161068990611d1e565b610842600f6111bc565b61085533610850600f6111b8565b6111c5565b336000908152600e602052604081208054600192906108759084906123d3565b9091555050600160075550565b60095481565b6000610894600f6111b8565b905090565b6108a1611146565b6001600160a01b03166108b2610e42565b6001600160a01b0316146108d85760405162461bcd60e51b815260040161068990612249565b600081116108f85760405162461bcd60e51b815260040161068990611e7e565b6103e981610906600f6111b8565b61091091906123d3565b111561092e5760405162461bcd60e51b815260040161068990611ec2565b60005b8181101561074157610943600f6111bc565b61095183610850600f6111b8565b8061095b8161247d565b915050610931565b61097461096e611146565b826112a4565b6109905760405162461bcd60e51b815260040161068990612308565b610741838383611329565b6109a3611146565b6001600160a01b03166109b4610e42565b6001600160a01b0316146109da5760405162461bcd60e51b815260040161068990612249565b600c805461ff001981166101009182900460ff1615909102179055565b6103e981565b610a05611146565b6001600160a01b0316610a16610e42565b6001600160a01b031614610a3c5760405162461bcd60e51b815260040161068990612249565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6b573d6000803e3d6000fd5b5050565b61074183838360405180602001604052806000815250610f42565b610a92611146565b6001600160a01b0316610aa3610e42565b6001600160a01b031614610ac95760405162461bcd60e51b815260040161068990612249565b600955565b8181600b54610b3783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604051859250610b1c91503390602001611bcd565b60405160208183030381529060405280519060200120611456565b610b535760405162461bcd60e51b815260040161068990612001565b600954348114610b755760405162461bcd60e51b815260040161068990612359565b60026007541415610b985760405162461bcd60e51b815260040161068990612390565b6002600755600c5460ff168015610bb75750600c54610100900460ff16155b610bd35760405162461bcd60e51b815260040161068990611d68565b600a54336000908152600e6020526040902054610bf19060016123d3565b1115610c0f5760405162461bcd60e51b81526004016106899061215d565b6103e9610c1c600f6111b8565b610c279060016123d3565b1115610c455760405162461bcd60e51b815260040161068990611d1e565b610c4f600f6111bc565b610c5d33610850600f6111b8565b336000908152600e60205260408120805460019290610c7d9084906123d3565b90915550506001600755505050505050565b600a5481565b610c9d611146565b6001600160a01b0316610cae610e42565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161068990612249565b8051610a6b9060089060208401906117e5565b600c5460ff1681565b6000818152600260205260408120546001600160a01b0316806105c85760405162461bcd60e51b8152600401610689906120df565b60088054610d3290612442565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90612442565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b60006001600160a01b038216610ddb5760405162461bcd60e51b815260040161068990612095565b506001600160a01b031660009081526003602052604090205490565b610dff611146565b6001600160a01b0316610e10610e42565b6001600160a01b031614610e365760405162461bcd60e51b815260040161068990612249565b610e40600061146c565b565b6006546001600160a01b031690565b6060600180546105df90612442565b610e68611146565b6001600160a01b0316826001600160a01b03161415610e995760405162461bcd60e51b815260040161068990611f3d565b8060056000610ea6611146565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eea611146565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f229190611cf7565b60405180910390a35050565b600b5481565b600c54610100900460ff1681565b610f53610f4d611146565b836112a4565b610f6f5760405162461bcd60e51b815260040161068990612308565b610f7b848484846114be565b50505050565b610f89611146565b6001600160a01b0316610f9a610e42565b6001600160a01b031614610fc05760405162461bcd60e51b815260040161068990612249565b600b55565b6060610fd082611129565b610fec5760405162461bcd60e51b8152600401610689906121b2565b6008610ff7836114f1565b604051602001611008929190611bf8565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611054611146565b6001600160a01b0316611065610e42565b6001600160a01b03161461108b5760405162461bcd60e51b815260040161068990612249565b6001600160a01b0381166110b15760405162461bcd60e51b815260040161068990611e01565b6110ba8161146c565b50565b6110c5611146565b6001600160a01b03166110d6610e42565b6001600160a01b0316146110fc5760405162461bcd60e51b815260040161068990612249565b600c805460ff19811660ff90911615179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117f82610cf0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b80546001019055565b6001600160a01b0382166111eb5760405162461bcd60e51b815260040161068990612128565b6111f481611129565b156112115760405162461bcd60e51b815260040161068990611e47565b61121d60008383610741565b6001600160a01b03821660009081526003602052604081208054600192906112469084906123d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006112af82611129565b6112cb5760405162461bcd60e51b815260040161068990611f74565b60006112d683610cf0565b9050806001600160a01b0316846001600160a01b031614806113115750836001600160a01b031661130684610662565b6001600160a01b0316145b806113215750611321818561101e565b949350505050565b826001600160a01b031661133c82610cf0565b6001600160a01b0316146113625760405162461bcd60e51b81526004016106899061227e565b6001600160a01b0382166113885760405162461bcd60e51b815260040161068990611ef9565b611393838383610741565b61139e60008261114a565b6001600160a01b03831660009081526003602052604081208054600192906113c79084906123ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f59084906123d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611463858461160c565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114c9848484611329565b6114d5848484846116c4565b610f7b5760405162461bcd60e51b815260040161068990611daf565b60608161151657506040805180820190915260018152600360fc1b60208201526105cb565b8160005b8115611540578061152a8161247d565b91506115399050600a836123eb565b915061151a565b60008167ffffffffffffffff81111561156957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611593576020820181803683370190505b5090505b8415611321576115a86001836123ff565b91506115b5600a86612498565b6115c09060306123d3565b60f81b8183815181106115e357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611605600a866123eb565b9450611597565b600081815b84518110156116bc57600085828151811061163c57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161167d578281604051602001611660929190611bea565b6040516020818303038152906040528051906020012092506116a9565b8083604051602001611690929190611bea565b6040516020818303038152906040528051906020012092505b50806116b48161247d565b915050611611565b509392505050565b60006116d8846001600160a01b03166117df565b156117d457836001600160a01b031663150b7a026116f4611146565b8786866040518563ffffffff1660e01b81526004016117169493929190611cba565b602060405180830381600087803b15801561173057600080fd5b505af1925050508015611760575060408051601f3d908101601f1916820190925261175d91810190611b12565b60015b6117ba573d80801561178e576040519150601f19603f3d011682016040523d82523d6000602084013e611793565b606091505b5080516117b25760405162461bcd60e51b815260040161068990611daf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611321565b506001949350505050565b3b151590565b8280546117f190612442565b90600052602060002090601f0160209004810192826118135760008555611859565b82601f1061182c57805160ff1916838001178555611859565b82800160010185558215611859579182015b8281111561185957825182559160200191906001019061183e565b50611865929150611869565b5090565b5b80821115611865576000815560010161186a565b600067ffffffffffffffff80841115611899576118996124d8565b604051601f8501601f1916810160200182811182821017156118bd576118bd6124d8565b6040528481529150818385018610156118d557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105cb57600080fd5b600060208284031215611916578081fd5b61191f826118ee565b9392505050565b60008060408385031215611938578081fd5b611941836118ee565b915061194f602084016118ee565b90509250929050565b60008060006060848603121561196c578081fd5b611975846118ee565b9250611983602085016118ee565b9150604084013590509250925092565b600080600080608085870312156119a8578081fd5b6119b1856118ee565b93506119bf602086016118ee565b925060408501359150606085013567ffffffffffffffff8111156119e1578182fd5b8501601f810187136119f1578182fd5b611a008782356020840161187e565b91505092959194509250565b60008060408385031215611a1e578182fd5b611a27836118ee565b915060208301358015158114611a3b578182fd5b809150509250929050565b60008060408385031215611a58578182fd5b611a61836118ee565b946020939093013593505050565b60008060208385031215611a81578182fd5b823567ffffffffffffffff80821115611a98578384fd5b818501915085601f830112611aab578384fd5b813581811115611ab9578485fd5b8660208083028501011115611acc578485fd5b60209290920196919550909350505050565b600060208284031215611aef578081fd5b5035919050565b600060208284031215611b07578081fd5b813561191f816124ee565b600060208284031215611b23578081fd5b815161191f816124ee565b600060208284031215611b3f578081fd5b813567ffffffffffffffff811115611b55578182fd5b8201601f81018413611b65578182fd5b6113218482356020840161187e565b60008151808452611b8c816020860160208601612416565b601f01601f19169290920160200192915050565b60008151611bb2818560208601612416565b9290920192915050565b64173539b7b760d91b815260050190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b8254600090819060028104600180831680611c1457607f831692505b6020808410821415611c3457634e487b7160e01b87526022600452602487fd5b818015611c485760018114611c5957611c85565b60ff19861689528489019650611c85565b611c628b6123c7565b885b86811015611c7d5781548b820152908501908301611c64565b505084890196505b505050505050611c9d611c988286611ba0565b611bbc565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ced90830184611b74565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261191f6020830184611b74565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526027908201527f57686974656c697374206d7573742062652061637469766520746f206d696e7460408201526620746f6b656e7360c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6040820152636b656e7360e01b606082015260800190565b6020808252601f908201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746040820152601760f91b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252602b908201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960408201526a39ba32b73a103a37b5b2b760a91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b600082198211156123e6576123e66124ac565b500190565b6000826123fa576123fa6124c2565b500490565b600082821015612411576124116124ac565b500390565b60005b83811015612431578181015183820152602001612419565b83811115610f7b5750506000910152565b60028104600182168061245657607f821691505b6020821081141561247757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612491576124916124ac565b5060010190565b6000826124a7576124a76124c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ba57600080fdfea2646970667358221220b4dce600e6c4054a7b9c5d3a3d7b8d8e48844556e5c5c2d5ae361bcb9a251bb264736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637835776a4d7478505058673351783336615a7041634d725456427438714b5336437253477a73444543346f2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063bd32fb661161006f578063bd32fb66146104f3578063c87b56dd14610513578063e985e9c514610533578063f2fde38b14610553578063f81227d414610573576101ee565b8063a22cb46514610489578063aa98e0c6146104a9578063b3b2cb7a146104be578063b88d4fde146104d3576101ee565b806370a08231116100dc57806370a082311461042a578063715018a61461044a5780638da5cb5b1461045f57806395d89b4114610474576101ee565b806355f804b3146103c057806360d938dc146103e05780636352211e146103f55780636c0360eb14610415576101ee565b806323b872dd1161018557806342842e0e1161015457806342842e0e1461035857806344a0d68a1461037857806344d8438114610398578063453c2310146103ab576101ee565b806323b872dd146102f95780632aea3d231461031957806332cb6b0c1461032e5780633ccfd60b14610343576101ee565b80631249c58b116101c15780631249c58b1461029a57806313faede6146102a257806318160ddd146102c457806321ca4236146102d9576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611af6565b610588565b6040516102209190611cf7565b60405180910390f35b34801561023557600080fd5b5061023e6105d0565b6040516102209190611d0b565b34801561025757600080fd5b5061026b610266366004611ade565b610662565b6040516102209190611ca6565b34801561028457600080fd5b50610298610293366004611a46565b6106ae565b005b610298610746565b3480156102ae57600080fd5b506102b7610882565b6040516102209190611d02565b3480156102d057600080fd5b506102b7610888565b3480156102e557600080fd5b506102986102f4366004611a46565b610899565b34801561030557600080fd5b50610298610314366004611958565b610963565b34801561032557600080fd5b5061029861099b565b34801561033a57600080fd5b506102b76109f7565b34801561034f57600080fd5b506102986109fd565b34801561036457600080fd5b50610298610373366004611958565b610a6f565b34801561038457600080fd5b50610298610393366004611ade565b610a8a565b6102986103a6366004611a6f565b610ace565b3480156103b757600080fd5b506102b7610c8f565b3480156103cc57600080fd5b506102986103db366004611b2e565b610c95565b3480156103ec57600080fd5b50610213610ce7565b34801561040157600080fd5b5061026b610410366004611ade565b610cf0565b34801561042157600080fd5b5061023e610d25565b34801561043657600080fd5b506102b7610445366004611905565b610db3565b34801561045657600080fd5b50610298610df7565b34801561046b57600080fd5b5061026b610e42565b34801561048057600080fd5b5061023e610e51565b34801561049557600080fd5b506102986104a4366004611a0c565b610e60565b3480156104b557600080fd5b506102b7610f2e565b3480156104ca57600080fd5b50610213610f34565b3480156104df57600080fd5b506102986104ee366004611993565b610f42565b3480156104ff57600080fd5b5061029861050e366004611ade565b610f81565b34801561051f57600080fd5b5061023e61052e366004611ade565b610fc5565b34801561053f57600080fd5b5061021361054e366004611926565b61101e565b34801561055f57600080fd5b5061029861056e366004611905565b61104c565b34801561057f57600080fd5b506102986110bd565b60006001600160e01b031982166380ac58cd60e01b14806105b957506001600160e01b03198216635b5e139f60e01b145b806105c857506105c882611110565b90505b919050565b6060600080546105df90612442565b80601f016020809104026020016040519081016040528092919081815260200182805461060b90612442565b80156106585780601f1061062d57610100808354040283529160200191610658565b820191906000526020600020905b81548152906001019060200180831161063b57829003601f168201915b5050505050905090565b600061066d82611129565b6106925760405162461bcd60e51b8152600401610689906121fd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b982610cf0565b9050806001600160a01b0316836001600160a01b031614156106ed5760405162461bcd60e51b8152600401610689906122c7565b806001600160a01b03166106ff611146565b6001600160a01b0316148061071b575061071b8161054e611146565b6107375760405162461bcd60e51b815260040161068990612038565b610741838361114a565b505050565b6009543481146107685760405162461bcd60e51b815260040161068990612359565b6002600754141561078b5760405162461bcd60e51b815260040161068990612390565b6002600755600c5460ff161580156107aa5750600c54610100900460ff165b6107c65760405162461bcd60e51b815260040161068990611fc0565b600a54336000908152600e60205260409020546107e49060016123d3565b11156108025760405162461bcd60e51b81526004016106899061215d565b6103e961080f600f6111b8565b61081a9060016123d3565b11156108385760405162461bcd60e51b815260040161068990611d1e565b610842600f6111bc565b61085533610850600f6111b8565b6111c5565b336000908152600e602052604081208054600192906108759084906123d3565b9091555050600160075550565b60095481565b6000610894600f6111b8565b905090565b6108a1611146565b6001600160a01b03166108b2610e42565b6001600160a01b0316146108d85760405162461bcd60e51b815260040161068990612249565b600081116108f85760405162461bcd60e51b815260040161068990611e7e565b6103e981610906600f6111b8565b61091091906123d3565b111561092e5760405162461bcd60e51b815260040161068990611ec2565b60005b8181101561074157610943600f6111bc565b61095183610850600f6111b8565b8061095b8161247d565b915050610931565b61097461096e611146565b826112a4565b6109905760405162461bcd60e51b815260040161068990612308565b610741838383611329565b6109a3611146565b6001600160a01b03166109b4610e42565b6001600160a01b0316146109da5760405162461bcd60e51b815260040161068990612249565b600c805461ff001981166101009182900460ff1615909102179055565b6103e981565b610a05611146565b6001600160a01b0316610a16610e42565b6001600160a01b031614610a3c5760405162461bcd60e51b815260040161068990612249565b6040514790339082156108fc029083906000818181858888f19350505050158015610a6b573d6000803e3d6000fd5b5050565b61074183838360405180602001604052806000815250610f42565b610a92611146565b6001600160a01b0316610aa3610e42565b6001600160a01b031614610ac95760405162461bcd60e51b815260040161068990612249565b600955565b8181600b54610b3783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604051859250610b1c91503390602001611bcd565b60405160208183030381529060405280519060200120611456565b610b535760405162461bcd60e51b815260040161068990612001565b600954348114610b755760405162461bcd60e51b815260040161068990612359565b60026007541415610b985760405162461bcd60e51b815260040161068990612390565b6002600755600c5460ff168015610bb75750600c54610100900460ff16155b610bd35760405162461bcd60e51b815260040161068990611d68565b600a54336000908152600e6020526040902054610bf19060016123d3565b1115610c0f5760405162461bcd60e51b81526004016106899061215d565b6103e9610c1c600f6111b8565b610c279060016123d3565b1115610c455760405162461bcd60e51b815260040161068990611d1e565b610c4f600f6111bc565b610c5d33610850600f6111b8565b336000908152600e60205260408120805460019290610c7d9084906123d3565b90915550506001600755505050505050565b600a5481565b610c9d611146565b6001600160a01b0316610cae610e42565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161068990612249565b8051610a6b9060089060208401906117e5565b600c5460ff1681565b6000818152600260205260408120546001600160a01b0316806105c85760405162461bcd60e51b8152600401610689906120df565b60088054610d3290612442565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90612442565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b60006001600160a01b038216610ddb5760405162461bcd60e51b815260040161068990612095565b506001600160a01b031660009081526003602052604090205490565b610dff611146565b6001600160a01b0316610e10610e42565b6001600160a01b031614610e365760405162461bcd60e51b815260040161068990612249565b610e40600061146c565b565b6006546001600160a01b031690565b6060600180546105df90612442565b610e68611146565b6001600160a01b0316826001600160a01b03161415610e995760405162461bcd60e51b815260040161068990611f3d565b8060056000610ea6611146565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eea611146565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f229190611cf7565b60405180910390a35050565b600b5481565b600c54610100900460ff1681565b610f53610f4d611146565b836112a4565b610f6f5760405162461bcd60e51b815260040161068990612308565b610f7b848484846114be565b50505050565b610f89611146565b6001600160a01b0316610f9a610e42565b6001600160a01b031614610fc05760405162461bcd60e51b815260040161068990612249565b600b55565b6060610fd082611129565b610fec5760405162461bcd60e51b8152600401610689906121b2565b6008610ff7836114f1565b604051602001611008929190611bf8565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611054611146565b6001600160a01b0316611065610e42565b6001600160a01b03161461108b5760405162461bcd60e51b815260040161068990612249565b6001600160a01b0381166110b15760405162461bcd60e51b815260040161068990611e01565b6110ba8161146c565b50565b6110c5611146565b6001600160a01b03166110d6610e42565b6001600160a01b0316146110fc5760405162461bcd60e51b815260040161068990612249565b600c805460ff19811660ff90911615179055565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117f82610cf0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b80546001019055565b6001600160a01b0382166111eb5760405162461bcd60e51b815260040161068990612128565b6111f481611129565b156112115760405162461bcd60e51b815260040161068990611e47565b61121d60008383610741565b6001600160a01b03821660009081526003602052604081208054600192906112469084906123d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006112af82611129565b6112cb5760405162461bcd60e51b815260040161068990611f74565b60006112d683610cf0565b9050806001600160a01b0316846001600160a01b031614806113115750836001600160a01b031661130684610662565b6001600160a01b0316145b806113215750611321818561101e565b949350505050565b826001600160a01b031661133c82610cf0565b6001600160a01b0316146113625760405162461bcd60e51b81526004016106899061227e565b6001600160a01b0382166113885760405162461bcd60e51b815260040161068990611ef9565b611393838383610741565b61139e60008261114a565b6001600160a01b03831660009081526003602052604081208054600192906113c79084906123ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f59084906123d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611463858461160c565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114c9848484611329565b6114d5848484846116c4565b610f7b5760405162461bcd60e51b815260040161068990611daf565b60608161151657506040805180820190915260018152600360fc1b60208201526105cb565b8160005b8115611540578061152a8161247d565b91506115399050600a836123eb565b915061151a565b60008167ffffffffffffffff81111561156957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611593576020820181803683370190505b5090505b8415611321576115a86001836123ff565b91506115b5600a86612498565b6115c09060306123d3565b60f81b8183815181106115e357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611605600a866123eb565b9450611597565b600081815b84518110156116bc57600085828151811061163c57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161167d578281604051602001611660929190611bea565b6040516020818303038152906040528051906020012092506116a9565b8083604051602001611690929190611bea565b6040516020818303038152906040528051906020012092505b50806116b48161247d565b915050611611565b509392505050565b60006116d8846001600160a01b03166117df565b156117d457836001600160a01b031663150b7a026116f4611146565b8786866040518563ffffffff1660e01b81526004016117169493929190611cba565b602060405180830381600087803b15801561173057600080fd5b505af1925050508015611760575060408051601f3d908101601f1916820190925261175d91810190611b12565b60015b6117ba573d80801561178e576040519150601f19603f3d011682016040523d82523d6000602084013e611793565b606091505b5080516117b25760405162461bcd60e51b815260040161068990611daf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611321565b506001949350505050565b3b151590565b8280546117f190612442565b90600052602060002090601f0160209004810192826118135760008555611859565b82601f1061182c57805160ff1916838001178555611859565b82800160010185558215611859579182015b8281111561185957825182559160200191906001019061183e565b50611865929150611869565b5090565b5b80821115611865576000815560010161186a565b600067ffffffffffffffff80841115611899576118996124d8565b604051601f8501601f1916810160200182811182821017156118bd576118bd6124d8565b6040528481529150818385018610156118d557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105cb57600080fd5b600060208284031215611916578081fd5b61191f826118ee565b9392505050565b60008060408385031215611938578081fd5b611941836118ee565b915061194f602084016118ee565b90509250929050565b60008060006060848603121561196c578081fd5b611975846118ee565b9250611983602085016118ee565b9150604084013590509250925092565b600080600080608085870312156119a8578081fd5b6119b1856118ee565b93506119bf602086016118ee565b925060408501359150606085013567ffffffffffffffff8111156119e1578182fd5b8501601f810187136119f1578182fd5b611a008782356020840161187e565b91505092959194509250565b60008060408385031215611a1e578182fd5b611a27836118ee565b915060208301358015158114611a3b578182fd5b809150509250929050565b60008060408385031215611a58578182fd5b611a61836118ee565b946020939093013593505050565b60008060208385031215611a81578182fd5b823567ffffffffffffffff80821115611a98578384fd5b818501915085601f830112611aab578384fd5b813581811115611ab9578485fd5b8660208083028501011115611acc578485fd5b60209290920196919550909350505050565b600060208284031215611aef578081fd5b5035919050565b600060208284031215611b07578081fd5b813561191f816124ee565b600060208284031215611b23578081fd5b815161191f816124ee565b600060208284031215611b3f578081fd5b813567ffffffffffffffff811115611b55578182fd5b8201601f81018413611b65578182fd5b6113218482356020840161187e565b60008151808452611b8c816020860160208601612416565b601f01601f19169290920160200192915050565b60008151611bb2818560208601612416565b9290920192915050565b64173539b7b760d91b815260050190565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b8254600090819060028104600180831680611c1457607f831692505b6020808410821415611c3457634e487b7160e01b87526022600452602487fd5b818015611c485760018114611c5957611c85565b60ff19861689528489019650611c85565b611c628b6123c7565b885b86811015611c7d5781548b820152908501908301611c64565b505084890196505b505050505050611c9d611c988286611ba0565b611bbc565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ced90830184611b74565b9695505050505050565b901515815260200190565b90815260200190565b60006020825261191f6020830184611b74565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d6178206e756d626572604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526027908201527f57686974656c697374206d7573742062652061637469766520746f206d696e7460408201526620746f6b656e7360c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f596f752063616e206f6e6c79206d696e74206d6f7265207468616e203020746f6040820152636b656e7360e01b606082015260800190565b6020808252601f908201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f4d61696e2073616c65206d7573742062652061637469766520746f206d696e746040820152601760f91b606082015260800190565b6020808252601e908201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526035908201527f507572636861736520776f756c6420657863656564206d6178206e756d6265726040820152741037b31036b4b73a39903832b9103bb0b63632ba1760591b606082015260800190565b6020808252602b908201527f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960408201526a39ba32b73a103a37b5b2b760a91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60009081526020902090565b600082198211156123e6576123e66124ac565b500190565b6000826123fa576123fa6124c2565b500490565b600082821015612411576124116124ac565b500390565b60005b83811015612431578181015183820152602001612419565b83811115610f7b5750506000910152565b60028104600182168061245657607f821691505b6020821081141561247757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612491576124916124ac565b5060010190565b6000826124a7576124a76124c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ba57600080fdfea2646970667358221220b4dce600e6c4054a7b9c5d3a3d7b8d8e48844556e5c5c2d5ae361bcb9a251bb264736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637835776a4d7478505058673351783336615a7041634d725456427438714b5336437253477a73444543346f2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://Qmcx5wjMtxPPXg3Qx36aZpAcMrTVBt8qKS6CrSGzsDEC4o/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d637835776a4d7478505058673351783336615a7041634d
Arg [3] : 725456427438714b5336437253477a73444543346f2f00000000000000000000


Deployed Bytecode Sourcemap

41460:4729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29248:305;;;;;;;;;;-1:-1:-1;29248:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30193:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31752:221::-;;;;;;;;;;-1:-1:-1;31752:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31275:411::-;;;;;;;;;;-1:-1:-1;31275:411:0;;;;;:::i;:::-;;:::i;:::-;;43715:559;;;:::i;41612:29::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44657:101::-;;;;;;;;;;;;;:::i;44995:416::-;;;;;;;;;;-1:-1:-1;44995:416:0;;;;;:::i;:::-;;:::i;32642:339::-;;;;;;;;;;-1:-1:-1;32642:339:0;;;;;:::i;:::-;;:::i;45765:103::-;;;;;;;;;;;;;:::i;41562:41::-;;;;;;;;;;;;;:::i;46043:143::-;;;;;;;;;;;;;:::i;33052:185::-;;;;;;;;;;-1:-1:-1;33052:185:0;;;;;:::i;:::-;;:::i;45876:88::-;;;;;;;;;;-1:-1:-1;45876:88:0;;;;;:::i;:::-;;:::i;42942:690::-;;;;;;:::i;:::-;;:::i;41648:31::-;;;;;;;;;;;;;:::i;45419:100::-;;;;;;;;;;-1:-1:-1;45419:100:0;;;;;:::i;:::-;;:::i;41767:27::-;;;;;;;;;;;;;:::i;29887:239::-;;;;;;;;;;-1:-1:-1;29887:239:0;;;;;:::i;:::-;;:::i;41532:21::-;;;;;;;;;;;;;:::i;29617:208::-;;;;;;;;;;-1:-1:-1;29617:208:0;;;;;:::i;:::-;;:::i;8813:94::-;;;;;;;;;;;;;:::i;8162:87::-;;;;;;;;;;;;;:::i;30362:104::-;;;;;;;;;;;;;:::i;32045:295::-;;;;;;;;;;-1:-1:-1;32045:295:0;;;;;:::i;:::-;;:::i;41724:34::-;;;;;;;;;;;;;:::i;41801:28::-;;;;;;;;;;;;;:::i;33308:328::-;;;;;;;;;;-1:-1:-1;33308:328:0;;;;;:::i;:::-;;:::i;45527:122::-;;;;;;;;;;-1:-1:-1;45527:122:0;;;;;:::i;:::-;;:::i;44343:306::-;;;;;;;;;;-1:-1:-1;44343:306:0;;;;;:::i;:::-;;:::i;32411:164::-;;;;;;;;;;-1:-1:-1;32411:164:0;;;;;:::i;:::-;;:::i;9062:192::-;;;;;;;;;;-1:-1:-1;9062:192:0;;;;;:::i;:::-;;:::i;45657:100::-;;;;;;;;;;;;;:::i;29248:305::-;29350:4;-1:-1:-1;;;;;;29387:40:0;;-1:-1:-1;;;29387:40:0;;:105;;-1:-1:-1;;;;;;;29444:48:0;;-1:-1:-1;;;29444:48:0;29387:105;:158;;;;29509:36;29533:11;29509:23;:36::i;:::-;29367:178;;29248:305;;;;:::o;30193:100::-;30247:13;30280:5;30273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30193:100;:::o;31752:221::-;31828:7;31856:16;31864:7;31856;:16::i;:::-;31848:73;;;;-1:-1:-1;;;31848:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31941:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31941:24:0;;31752:221::o;31275:411::-;31356:13;31372:23;31387:7;31372:14;:23::i;:::-;31356:39;;31420:5;-1:-1:-1;;;;;31414:11:0;:2;-1:-1:-1;;;;;31414:11:0;;;31406:57;;;;-1:-1:-1;;;31406:57:0;;;;;;;:::i;:::-;31514:5;-1:-1:-1;;;;;31498:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;31498:21:0;;:62;;;;31523:37;31540:5;31547:12;:10;:12::i;31523:37::-;31476:168;;;;-1:-1:-1;;;31476:168:0;;;;;;;:::i;:::-;31657:21;31666:2;31670:7;31657:8;:21::i;:::-;31275:411;;;:::o;43715:559::-;43790:4;;42698:9;42689:5;:18;42667:92;;;;-1:-1:-1;;;42667:92:0;;;;;;;:::i;:::-;5380:1:::1;5976:7;;:19;;5968:63;;;;-1:-1:-1::0;;;5968:63:0::1;;;;;;;:::i;:::-;5380:1;6109:7;:18:::0;43843:15:::2;::::0;::::2;;43842:16;:36:::0;::::2;;;-1:-1:-1::0;43862:16:0::2;::::0;::::2;::::0;::::2;;;43842:36;43834:82;;;;-1:-1:-1::0;;;43834:82:0::2;;;;;;;:::i;:::-;43964:12;::::0;43945:10:::2;43935:21;::::0;;;:9:::2;:21;::::0;;;;;:25:::2;::::0;43959:1:::2;43935:25;:::i;:::-;:41;;43927:107;;;;-1:-1:-1::0;;;43927:107:0::2;;;;;;;:::i;:::-;41599:4;44053:22;:12;:20;:22::i;:::-;:26;::::0;44078:1:::2;44053:26;:::i;:::-;:40;;44045:95;;;;-1:-1:-1::0;;;44045:95:0::2;;;;;;;:::i;:::-;44153:24;:12;:22;:24::i;:::-;44188:41;44194:10;44206:22;:12;:20;:22::i;:::-;44188:5;:41::i;:::-;44250:10;44240:21;::::0;;;:9:::2;:21;::::0;;;;:26;;44265:1:::2;::::0;44240:21;:26:::2;::::0;44265:1;;44240:26:::2;:::i;:::-;::::0;;;-1:-1:-1;;5336:1:0::1;6288:7;:22:::0;-1:-1:-1;43715:559:0:o;41612:29::-;;;;:::o;44657:101::-;44701:7;44728:22;:12;:20;:22::i;:::-;44721:29;;44657:101;:::o;44995:416::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45104:1:::1;45090:11;:15;45082:64;;;;-1:-1:-1::0;;;45082:64:0::1;;;;;;;:::i;:::-;41599:4;45190:11;45165:22;:12;:20;:22::i;:::-;:36;;;;:::i;:::-;:50;;45157:94;;;;-1:-1:-1::0;;;45157:94:0::1;;;;;;;:::i;:::-;45267:9;45262:142;45286:11;45282:1;:15;45262:142;;;45319:24;:12;:22;:24::i;:::-;45358:34;45364:3;45369:22;:12;:20;:22::i;45358:34::-;45299:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45262:142;;32642:339:::0;32837:41;32856:12;:10;:12::i;:::-;32870:7;32837:18;:41::i;:::-;32829:103;;;;-1:-1:-1;;;32829:103:0;;;;;;;:::i;:::-;32945:28;32955:4;32961:2;32965:7;32945:9;:28::i;45765:103::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45844:16:::1;::::0;;-1:-1:-1;;45824:36:0;::::1;45844:16;::::0;;;::::1;;;45843:17;45824:36:::0;;::::1;;::::0;;45765:103::o;41562:41::-;41599:4;41562:41;:::o;46043:143::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;46141:37:::1;::::0;46109:21:::1;::::0;46149:10:::1;::::0;46141:37;::::1;;;::::0;46109:21;;46091:15:::1;46141:37:::0;46091:15;46141:37;46109:21;46149:10;46141:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;8453:1;46043:143::o:0;33052:185::-;33190:39;33207:4;33213:2;33217:7;33190:39;;;;;;;;;;;;:16;:39::i;45876:88::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45941:4:::1;:15:::0;45876:88::o;42942:690::-;43074:11;;43087:19;;42385:144;42422:11;;42385:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42485:28:0;;42452:4;;-1:-1:-1;42485:28:0;;-1:-1:-1;42502:10:0;;42485:28;;;:::i;:::-;;;;;;;;;;;;;42475:39;;;;;;42385:18;:144::i;:::-;42363:224;;;;-1:-1:-1;;;42363:224:0;;;;;;;:::i;:::-;43134:4:::1;;42698:9;42689:5;:18;42667:92;;;;-1:-1:-1::0;;;42667:92:0::1;;;;;;;:::i;:::-;5380:1:::2;5976:7;;:19;;5968:63;;;;-1:-1:-1::0;;;5968:63:0::2;;;;;;;:::i;:::-;5380:1;6109:7;:18:::0;43186:15:::3;::::0;::::3;;:36:::0;::::3;;;-1:-1:-1::0;43206:16:0::3;::::0;::::3;::::0;::::3;;;43205:17;43186:36;43178:88;;;;-1:-1:-1::0;;;43178:88:0::3;;;;;;;:::i;:::-;43314:12;::::0;43295:10:::3;43285:21;::::0;;;:9:::3;:21;::::0;;;;;:25:::3;::::0;43309:1:::3;43285:25;:::i;:::-;:41;;43277:107;;;;-1:-1:-1::0;;;43277:107:0::3;;;;;;;:::i;:::-;41599:4;43403:22;:12;:20;:22::i;:::-;:26;::::0;43428:1:::3;43403:26;:::i;:::-;:40;;43395:95;;;;-1:-1:-1::0;;;43395:95:0::3;;;;;;;:::i;:::-;43511:24;:12;:22;:24::i;:::-;43546:41;43552:10;43564:22;:12;:20;:22::i;43546:41::-;43608:10;43598:21;::::0;;;:9:::3;:21;::::0;;;;:26;;43623:1:::3;::::0;43598:21;:26:::3;::::0;43623:1;;43598:26:::3;:::i;:::-;::::0;;;-1:-1:-1;;5336:1:0::2;6288:7;:22:::0;-1:-1:-1;;;;;;42942:690:0:o;41648:31::-;;;;:::o;45419:100::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45493:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;41767:27::-:0;;;;;;:::o;29887:239::-;29959:7;29995:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29995:16:0;30030:19;30022:73;;;;-1:-1:-1;;;30022:73:0;;;;;;;:::i;41532:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29617:208::-;29689:7;-1:-1:-1;;;;;29717:19:0;;29709:74;;;;-1:-1:-1;;;29709:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29801:16:0;;;;;:9;:16;;;;;;;29617:208::o;8813:94::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;8878:21:::1;8896:1;8878:9;:21::i;:::-;8813:94::o:0;8162:87::-;8235:6;;-1:-1:-1;;;;;8235:6:0;8162:87;:::o;30362:104::-;30418:13;30451:7;30444:14;;;;;:::i;32045:295::-;32160:12;:10;:12::i;:::-;-1:-1:-1;;;;;32148:24:0;:8;-1:-1:-1;;;;;32148:24:0;;;32140:62;;;;-1:-1:-1;;;32140:62:0;;;;;;;:::i;:::-;32260:8;32215:18;:32;32234:12;:10;:12::i;:::-;-1:-1:-1;;;;;32215:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;32215:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;32215:53:0;;;;;;;;;;;32299:12;:10;:12::i;:::-;-1:-1:-1;;;;;32284:48:0;;32323:8;32284:48;;;;;;:::i;:::-;;;;;;;;32045:295;;:::o;41724:34::-;;;;:::o;41801:28::-;;;;;;;;;:::o;33308:328::-;33483:41;33502:12;:10;:12::i;:::-;33516:7;33483:18;:41::i;:::-;33475:103;;;;-1:-1:-1;;;33475:103:0;;;;;;;:::i;:::-;33589:39;33603:4;33609:2;33613:7;33622:5;33589:13;:39::i;:::-;33308:328;;;;:::o;45527:122::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45609:19:::1;:32:::0;45527:122::o;44343:306::-;44451:13;44490:16;44498:7;44490;:16::i;:::-;44482:72;;;;-1:-1:-1;;;44482:72:0;;;;;;;:::i;:::-;44596:7;44605:25;44622:7;44605:16;:25::i;:::-;44579:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44565:76;;44343:306;;;:::o;32411:164::-;-1:-1:-1;;;;;32532:25:0;;;32508:4;32532:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32411:164::o;9062:192::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9151:22:0;::::1;9143:73;;;;-1:-1:-1::0;;;9143:73:0::1;;;;;;;:::i;:::-;9227:19;9237:8;9227:9;:19::i;:::-;9062:192:::0;:::o;45657:100::-;8393:12;:10;:12::i;:::-;-1:-1:-1;;;;;8382:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8382:23:0;;8374:68;;;;-1:-1:-1;;;8374:68:0;;;;;;;:::i;:::-;45734:15:::1;::::0;;-1:-1:-1;;45715:34:0;::::1;45734:15;::::0;;::::1;45733:16;45715:34;::::0;;45657:100::o;20148:157::-;-1:-1:-1;;;;;;20257:40:0;;-1:-1:-1;;;20257:40:0;20148:157;;;:::o;35146:127::-;35211:4;35235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35235:16:0;:30;;;35146:127::o;6950:98::-;7030:10;6950:98;:::o;39128:174::-;39203:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39203:29:0;-1:-1:-1;;;;;39203:29:0;;;;;;;;:24;;39257:23;39203:24;39257:14;:23::i;:::-;-1:-1:-1;;;;;39248:46:0;;;;;;;;;;;39128:174;;:::o;872:114::-;964:14;;872:114::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;37124:382::-;-1:-1:-1;;;;;37204:16:0;;37196:61;;;;-1:-1:-1;;;37196:61:0;;;;;;;:::i;:::-;37277:16;37285:7;37277;:16::i;:::-;37276:17;37268:58;;;;-1:-1:-1;;;37268:58:0;;;;;;;:::i;:::-;37339:45;37368:1;37372:2;37376:7;37339:20;:45::i;:::-;-1:-1:-1;;;;;37397:13:0;;;;;;:9;:13;;;;;:18;;37414:1;;37397:13;:18;;37414:1;;37397:18;:::i;:::-;;;;-1:-1:-1;;37426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37426:21:0;-1:-1:-1;;;;;37426:21:0;;;;;;;;37465:33;;37426:16;;;37465:33;;37426:16;;37465:33;37124:382;;:::o;35440:348::-;35533:4;35558:16;35566:7;35558;:16::i;:::-;35550:73;;;;-1:-1:-1;;;35550:73:0;;;;;;;:::i;:::-;35634:13;35650:23;35665:7;35650:14;:23::i;:::-;35634:39;;35703:5;-1:-1:-1;;;;;35692:16:0;:7;-1:-1:-1;;;;;35692:16:0;;:51;;;;35736:7;-1:-1:-1;;;;;35712:31:0;:20;35724:7;35712:11;:20::i;:::-;-1:-1:-1;;;;;35712:31:0;;35692:51;:87;;;;35747:32;35764:5;35771:7;35747:16;:32::i;:::-;35684:96;35440:348;-1:-1:-1;;;;35440:348:0:o;38432:578::-;38591:4;-1:-1:-1;;;;;38564:31:0;:23;38579:7;38564:14;:23::i;:::-;-1:-1:-1;;;;;38564:31:0;;38556:85;;;;-1:-1:-1;;;38556:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38660:16:0;;38652:65;;;;-1:-1:-1;;;38652:65:0;;;;;;;:::i;:::-;38730:39;38751:4;38757:2;38761:7;38730:20;:39::i;:::-;38834:29;38851:1;38855:7;38834:8;:29::i;:::-;-1:-1:-1;;;;;38876:15:0;;;;;;:9;:15;;;;;:20;;38895:1;;38876:15;:20;;38895:1;;38876:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38907:13:0;;;;;;:9;:13;;;;;:18;;38924:1;;38907:13;:18;;38924:1;;38907:18;:::i;:::-;;;;-1:-1:-1;;38936:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38936:21:0;-1:-1:-1;;;;;38936:21:0;;;;;;;;;38975:27;;38936:16;;38975:27;;;;;;;38432:578;;;:::o;2373:190::-;2498:4;2551;2522:25;2535:5;2542:4;2522:12;:25::i;:::-;:33;;2373:190;-1:-1:-1;;;;2373:190:0:o;9262:173::-;9337:6;;;-1:-1:-1;;;;;9354:17:0;;;-1:-1:-1;;;;;;9354:17:0;;;;;;;9387:40;;9337:6;;;9354:17;9337:6;;9387:40;;9318:16;;9387:40;9262:173;;:::o;34518:315::-;34675:28;34685:4;34691:2;34695:7;34675:9;:28::i;:::-;34722:48;34745:4;34751:2;34755:7;34764:5;34722:22;:48::i;:::-;34714:111;;;;-1:-1:-1;;;34714:111:0;;;;;;;:::i;26157:723::-;26213:13;26434:10;26430:53;;-1:-1:-1;26461:10:0;;;;;;;;;;;;-1:-1:-1;;;26461:10:0;;;;;;26430:53;26508:5;26493:12;26549:78;26556:9;;26549:78;;26582:8;;;;:::i;:::-;;-1:-1:-1;26605:10:0;;-1:-1:-1;26613:2:0;26605:10;;:::i;:::-;;;26549:78;;;26637:19;26669:6;26659:17;;;;;;-1:-1:-1;;;26659:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26659:17:0;;26637:39;;26687:154;26694:10;;26687:154;;26721:11;26731:1;26721:11;;:::i;:::-;;-1:-1:-1;26790:10:0;26798:2;26790:5;:10;:::i;:::-;26777:24;;:2;:24;:::i;:::-;26764:39;;26747:6;26754;26747:14;;;;;;-1:-1:-1;;;26747:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;26747:56:0;;;;;;;;-1:-1:-1;26818:11:0;26827:2;26818:11;;:::i;:::-;;;26687:154;;2925:701;3008:7;3051:4;3008:7;3066:523;3090:5;:12;3086:1;:16;3066:523;;;3124:20;3147:5;3153:1;3147:8;;;;;;-1:-1:-1;;;3147:8:0;;;;;;;;;;;;;;;3124:31;;3190:12;3174;:28;3170:408;;3344:12;3358;3327:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3317:55;;;;;;3302:70;;3170:408;;;3534:12;3548;3517:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3507:55;;;;;;3492:70;;3170:408;-1:-1:-1;3104:3:0;;;;:::i;:::-;;;;3066:523;;;-1:-1:-1;3606:12:0;2925:701;-1:-1:-1;;;2925:701:0:o;39867:799::-;40022:4;40043:15;:2;-1:-1:-1;;;;;40043:13:0;;:15::i;:::-;40039:620;;;40095:2;-1:-1:-1;;;;;40079:36:0;;40116:12;:10;:12::i;:::-;40130:4;40136:7;40145:5;40079:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40079:72:0;;;;;;;;-1:-1:-1;;40079:72:0;;;;;;;;;;;;:::i;:::-;;;40075:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40321:13:0;;40317:272;;40364:60;;-1:-1:-1;;;40364:60:0;;;;;;;:::i;40317:272::-;40539:6;40533:13;40524:6;40520:2;40516:15;40509:38;40075:529;-1:-1:-1;;;;;;40202:51:0;-1:-1:-1;;;40202:51:0;;-1:-1:-1;40195:58:0;;40039:620;-1:-1:-1;40643:4:0;39867:799;;;;;;:::o;10208:387::-;10531:20;10579:8;;;10208:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;:::-;957:41;876:128;-1:-1:-1;;;876:128:1:o;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:190::-;;3770:2;3758:9;3749:7;3745:23;3741:32;3738:2;;;3791:6;3783;3776:22;3738:2;-1:-1:-1;3819:23:1;;3728:120;-1:-1:-1;3728:120:1:o;3853:257::-;;3964:2;3952:9;3943:7;3939:23;3935:32;3932:2;;;3985:6;3977;3970:22;3932:2;4029:9;4016:23;4048:32;4074:5;4048:32;:::i;4115:261::-;;4237:2;4225:9;4216:7;4212:23;4208:32;4205:2;;;4258:6;4250;4243:22;4205:2;4295:9;4289:16;4314:32;4340:5;4314:32;:::i;4381:482::-;;4503:2;4491:9;4482:7;4478:23;4474:32;4471:2;;;4524:6;4516;4509:22;4471:2;4569:9;4556:23;4602:18;4594:6;4591:30;4588:2;;;4639:6;4631;4624:22;4588:2;4667:22;;4720:4;4712:13;;4708:27;-1:-1:-1;4698:2:1;;4754:6;4746;4739:22;4698:2;4782:75;4849:7;4844:2;4831:16;4826:2;4822;4818:11;4782:75;:::i;5063:259::-;;5144:5;5138:12;5171:6;5166:3;5159:19;5187:63;5243:6;5236:4;5231:3;5227:14;5220:4;5213:5;5209:16;5187:63;:::i;:::-;5304:2;5283:15;-1:-1:-1;;5279:29:1;5270:39;;;;5311:4;5266:50;;5114:208;-1:-1:-1;;5114:208:1:o;5327:187::-;;5409:5;5403:12;5424:52;5469:6;5464:3;5457:4;5450:5;5446:16;5424:52;:::i;:::-;5492:16;;;;;5379:135;-1:-1:-1;;5379:135:1:o;5519:120::-;-1:-1:-1;;;5586:20:1;;5631:1;5622:11;;5576:63::o;5644:229::-;5793:2;5789:15;;;;-1:-1:-1;;5785:53:1;5773:66;;5864:2;5855:12;;5763:110::o;5878:247::-;6035:19;;;6079:2;6070:12;;6063:28;6116:2;6107:12;;6025:100::o;6130:1315::-;6465:13;;6130:1315;;;;6538:1;6523:17;;6559:1;6595:18;;;;6622:2;;6676:4;6668:6;6664:17;6654:27;;6622:2;6702;6750;6742:6;6739:14;6719:18;6716:38;6713:2;;;-1:-1:-1;;;6777:33:1;;6833:4;6830:1;6823:15;6863:4;6784:3;6851:17;6713:2;6894:18;6921:104;;;;7039:1;7034:324;;;;6887:471;;6921:104;-1:-1:-1;;6954:24:1;;6942:37;;6999:16;;;;-1:-1:-1;6921:104:1;;7034:324;7070:39;7102:6;7070:39;:::i;:::-;7131:3;7147:165;7161:6;7158:1;7155:13;7147:165;;;7239:14;;7226:11;;;7219:35;7282:16;;;;7176:10;;7147:165;;;7151:3;;7341:6;7336:3;7332:16;7325:23;;6887:471;;;;;;;7374:65;7406:32;7434:3;7426:6;7406:32;:::i;:::-;7374:65;:::i;:::-;7367:72;6415:1030;-1:-1:-1;;;;;6415:1030:1:o;7450:203::-;-1:-1:-1;;;;;7614:32:1;;;;7596:51;;7584:2;7569:18;;7551:102::o;7658:490::-;-1:-1:-1;;;;;7927:15:1;;;7909:34;;7979:15;;7974:2;7959:18;;7952:43;8026:2;8011:18;;8004:34;;;8074:3;8069:2;8054:18;;8047:31;;;7658:490;;8095:47;;8122:19;;8114:6;8095:47;:::i;:::-;8087:55;7861:287;-1:-1:-1;;;;;;7861:287:1:o;8153:187::-;8318:14;;8311:22;8293:41;;8281:2;8266:18;;8248:92::o;8345:177::-;8491:25;;;8479:2;8464:18;;8446:76::o;8527:221::-;;8676:2;8665:9;8658:21;8696:46;8738:2;8727:9;8723:18;8715:6;8696:46;:::i;8753:406::-;8955:2;8937:21;;;8994:2;8974:18;;;8967:30;9033:34;9028:2;9013:18;;9006:62;-1:-1:-1;;;9099:2:1;9084:18;;9077:40;9149:3;9134:19;;8927:232::o;9164:403::-;9366:2;9348:21;;;9405:2;9385:18;;;9378:30;9444:34;9439:2;9424:18;;9417:62;-1:-1:-1;;;9510:2:1;9495:18;;9488:37;9557:3;9542:19;;9338:229::o;9572:414::-;9774:2;9756:21;;;9813:2;9793:18;;;9786:30;9852:34;9847:2;9832:18;;9825:62;-1:-1:-1;;;9918:2:1;9903:18;;9896:48;9976:3;9961:19;;9746:240::o;9991:402::-;10193:2;10175:21;;;10232:2;10212:18;;;10205:30;10271:34;10266:2;10251:18;;10244:62;-1:-1:-1;;;10337:2:1;10322:18;;10315:36;10383:3;10368:19;;10165:228::o;10398:352::-;10600:2;10582:21;;;10639:2;10619:18;;;10612:30;10678;10673:2;10658:18;;10651:58;10741:2;10726:18;;10572:178::o;10755:400::-;10957:2;10939:21;;;10996:2;10976:18;;;10969:30;11035:34;11030:2;11015:18;;11008:62;-1:-1:-1;;;11101:2:1;11086:18;;11079:34;11145:3;11130:19;;10929:226::o;11160:355::-;11362:2;11344:21;;;11401:2;11381:18;;;11374:30;11440:33;11435:2;11420:18;;11413:61;11506:2;11491:18;;11334:181::o;11520:400::-;11722:2;11704:21;;;11761:2;11741:18;;;11734:30;11800:34;11795:2;11780:18;;11773:62;-1:-1:-1;;;11866:2:1;11851:18;;11844:34;11910:3;11895:19;;11694:226::o;11925:349::-;12127:2;12109:21;;;12166:2;12146:18;;;12139:30;12205:27;12200:2;12185:18;;12178:55;12265:2;12250:18;;12099:175::o;12279:408::-;12481:2;12463:21;;;12520:2;12500:18;;;12493:30;12559:34;12554:2;12539:18;;12532:62;-1:-1:-1;;;12625:2:1;12610:18;;12603:42;12677:3;12662:19;;12453:234::o;12692:397::-;12894:2;12876:21;;;12933:2;12913:18;;;12906:30;12972:34;12967:2;12952:18;;12945:62;-1:-1:-1;;;13038:2:1;13023:18;;13016:31;13079:3;13064:19;;12866:223::o;13094:354::-;13296:2;13278:21;;;13335:2;13315:18;;;13308:30;13374:32;13369:2;13354:18;;13347:60;13439:2;13424:18;;13268:180::o;13453:420::-;13655:2;13637:21;;;13694:2;13674:18;;;13667:30;13733:34;13728:2;13713:18;;13706:62;13804:26;13799:2;13784:18;;13777:54;13863:3;13848:19;;13627:246::o;13878:406::-;14080:2;14062:21;;;14119:2;14099:18;;;14092:30;14158:34;14153:2;14138:18;;14131:62;-1:-1:-1;;;14224:2:1;14209:18;;14202:40;14274:3;14259:19;;14052:232::o;14289:405::-;14491:2;14473:21;;;14530:2;14510:18;;;14503:30;14569:34;14564:2;14549:18;;14542:62;-1:-1:-1;;;14635:2:1;14620:18;;14613:39;14684:3;14669:19;;14463:231::o;14699:356::-;14901:2;14883:21;;;14920:18;;;14913:30;14979:34;14974:2;14959:18;;14952:62;15046:2;15031:18;;14873:182::o;15060:417::-;15262:2;15244:21;;;15301:2;15281:18;;;15274:30;15340:34;15335:2;15320:18;;15313:62;-1:-1:-1;;;15406:2:1;15391:18;;15384:51;15467:3;15452:19;;15234:243::o;15482:407::-;15684:2;15666:21;;;15723:2;15703:18;;;15696:30;15762:34;15757:2;15742:18;;15735:62;-1:-1:-1;;;15828:2:1;15813:18;;15806:41;15879:3;15864:19;;15656:233::o;15894:408::-;16096:2;16078:21;;;16135:2;16115:18;;;16108:30;16174:34;16169:2;16154:18;;16147:62;-1:-1:-1;;;16240:2:1;16225:18;;16218:42;16292:3;16277:19;;16068:234::o;16307:356::-;16509:2;16491:21;;;16528:18;;;16521:30;16587:34;16582:2;16567:18;;16560:62;16654:2;16639:18;;16481:182::o;16668:405::-;16870:2;16852:21;;;16909:2;16889:18;;;16882:30;16948:34;16943:2;16928:18;;16921:62;-1:-1:-1;;;17014:2:1;16999:18;;16992:39;17063:3;17048:19;;16842:231::o;17078:397::-;17280:2;17262:21;;;17319:2;17299:18;;;17292:30;17358:34;17353:2;17338:18;;17331:62;-1:-1:-1;;;17424:2:1;17409:18;;17402:31;17465:3;17450:19;;17252:223::o;17480:413::-;17682:2;17664:21;;;17721:2;17701:18;;;17694:30;17760:34;17755:2;17740:18;;17733:62;-1:-1:-1;;;17826:2:1;17811:18;;17804:47;17883:3;17868:19;;17654:239::o;17898:348::-;18100:2;18082:21;;;18139:2;18119:18;;;18112:30;18178:26;18173:2;18158:18;;18151:54;18237:2;18222:18;;18072:174::o;18251:355::-;18453:2;18435:21;;;18492:2;18472:18;;;18465:30;18531:33;18526:2;18511:18;;18504:61;18597:2;18582:18;;18425:181::o;18793:129::-;;18861:17;;;18911:4;18895:21;;;18851:71::o;18927:128::-;;18998:1;18994:6;18991:1;18988:13;18985:2;;;19004:18;;:::i;:::-;-1:-1:-1;19040:9:1;;18975:80::o;19060:120::-;;19126:1;19116:2;;19131:18;;:::i;:::-;-1:-1:-1;19165:9:1;;19106:74::o;19185:125::-;;19253:1;19250;19247:8;19244:2;;;19258:18;;:::i;:::-;-1:-1:-1;19295:9:1;;19234:76::o;19315:258::-;19387:1;19397:113;19411:6;19408:1;19405:13;19397:113;;;19487:11;;;19481:18;19468:11;;;19461:39;19433:2;19426:10;19397:113;;;19528:6;19525:1;19522:13;19519:2;;;-1:-1:-1;;19563:1:1;19545:16;;19538:27;19368:205::o;19578:380::-;19663:1;19653:12;;19710:1;19700:12;;;19721:2;;19775:4;19767:6;19763:17;19753:27;;19721:2;19828;19820:6;19817:14;19797:18;19794:38;19791:2;;;19874:10;19869:3;19865:20;19862:1;19855:31;19909:4;19906:1;19899:15;19937:4;19934:1;19927:15;19791:2;;19633:325;;;:::o;19963:135::-;;-1:-1:-1;;20023:17:1;;20020:2;;;20043:18;;:::i;:::-;-1:-1:-1;20090:1:1;20079:13;;20010:88::o;20103:112::-;;20161:1;20151:2;;20166:18;;:::i;:::-;-1:-1:-1;20200:9:1;;20141:74::o;20220:127::-;20281:10;20276:3;20272:20;20269:1;20262:31;20312:4;20309:1;20302:15;20336:4;20333:1;20326:15;20352:127;20413:10;20408:3;20404:20;20401:1;20394:31;20444:4;20441:1;20434:15;20468:4;20465:1;20458:15;20484:127;20545:10;20540:3;20536:20;20533:1;20526:31;20576:4;20573:1;20566:15;20600:4;20597:1;20590:15;20616:133;-1:-1:-1;;;;;;20692:32:1;;20682:43;;20672:2;;20739:1;20736;20729:12

Swarm Source

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