ETH Price: $2,606.55 (-2.40%)

Token

Pyme All Access Pass Genesis Collection (PYME)
 

Overview

Max Total Supply

7 PYME

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PYME
0x51b117c28945437aaaf8aaf52a056e74f4974d0a
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:
AllAccessPass

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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);

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev 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 {}

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

// File: contracts/AllAccessPass.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

/*
Contract: Pyme All Access Pass Contract
Version: v0.0.5
Date: 19th May, 2021.
*/




contract AllAccessPass is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private supply;

    string nftUri = "ipfs://QmbdUZAMwS7898sAYC9CXu6ppnBBAcyMKvJZjsTJeWRdKc";

    uint256 public cost = 1 ether;
    uint256 public maxSupply = 100;
    uint256 public maxMintAmountPerTx = 10;

    bool public paused = false;

    constructor() ERC721("Pyme All Access Pass Genesis Collection", "PYME") {
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            supply.current() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

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

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _mintLoop(msg.sender, _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _mintLoop(_receiver, _mintAmount);
    }

    function mintByOwner(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(nftUri)
                )
                : "";
    }

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

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setNftUri(string memory _nftUri) public onlyOwner {
        nftUri = _nftUri;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nftUri","type":"string"}],"name":"setNftUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526035608081815290620021aa60a0398051620000299160089160209091019062000136565b50670de0b6b3a76400006009556064600a908155600b55600c805460ff191690553480156200005757600080fd5b5060405180606001604052806027815260200162002183602791396040518060400160405280600481526020016350594d4560e01b8152508160009080519060200190620000a792919062000136565b508051620000bd90600190602084019062000136565b505050620000da620000d4620000e060201b60201c565b620000e4565b62000219565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014490620001dc565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600181811c90821680620001f157607f821691505b602082108114156200021357634e487b7160e01b600052602260045260246000fd5b50919050565b611f5a80620002296000396000f3fe6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610534578063e985e9c51461054a578063efbd73f414610593578063f2fde38b146105a657600080fd5b8063a22cb465146104b4578063b071401b146104d4578063b88d4fde146104f4578063c87b56dd1461051457600080fd5b80638da5cb5b116100d15780638da5cb5b1461045857806394354fd01461047657806395d89b411461048c578063a0712d68146104a157600080fd5b80636f8b44b0146103e357806370a0823114610403578063715018a6146104235780637b2e40411461043857600080fd5b806323b872dd1161017a578063438b630011610149578063438b63001461035c57806344a0d68a146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146102e75780632a751e42146103075780633ccfd60b1461032757806342842e0e1461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118b7565b6105c6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610618565b6040516102099190611921565b34801561024057600080fd5b5061025461024f366004611934565b6106aa565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611969565b610744565b005b34801561029a57600080fd5b506102a460095481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd3660046119a3565b61085a565b3480156102de57600080fd5b506102a4610897565b3480156102f357600080fd5b5061028c6103023660046119be565b6108a7565b34801561031357600080fd5b5061028c610322366004611a86565b6108d8565b34801561033357600080fd5b5061028c610919565b34801561034857600080fd5b5061028c6103573660046119be565b6109b7565b34801561036857600080fd5b5061037c610377366004611acf565b6109d2565b6040516102099190611aea565b34801561039557600080fd5b5061028c6103a4366004611934565b610ab3565b3480156103b557600080fd5b50600c546101fd9060ff1681565b3480156103cf57600080fd5b506102546103de366004611934565b610ae2565b3480156103ef57600080fd5b5061028c6103fe366004611934565b610b59565b34801561040f57600080fd5b506102a461041e366004611acf565b610b88565b34801561042f57600080fd5b5061028c610c0f565b34801561044457600080fd5b5061028c610453366004611b2e565b610c45565b34801561046457600080fd5b506006546001600160a01b0316610254565b34801561048257600080fd5b506102a4600b5481565b34801561049857600080fd5b50610227610cdd565b61028c6104af366004611934565b610cec565b3480156104c057600080fd5b5061028c6104cf366004611b5a565b610dfa565b3480156104e057600080fd5b5061028c6104ef366004611934565b610e05565b34801561050057600080fd5b5061028c61050f366004611b84565b610e34565b34801561052057600080fd5b5061022761052f366004611934565b610e6c565b34801561054057600080fd5b506102a4600a5481565b34801561055657600080fd5b506101fd610565366004611c00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028c6105a1366004611b2e565b610f3e565b3480156105b257600080fd5b5061028c6105c1366004611acf565b611042565b60006001600160e01b031982166380ac58cd60e01b14806105f757506001600160e01b03198216635b5e139f60e01b145b8061061257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461062790611c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461065390611c2a565b80156106a05780601f10610675576101008083540402835291602001916106a0565b820191906000526020600020905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074f82610ae2565b9050806001600160a01b0316836001600160a01b031614156107bd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071f565b336001600160a01b03821614806107d957506107d98133610565565b61084b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071f565b61085583836110da565b505050565b6006546001600160a01b031633146108845760405162461bcd60e51b815260040161071f90611c65565b600c805460ff1916911515919091179055565b60006108a260075490565b905090565b6108b13382611148565b6108cd5760405162461bcd60e51b815260040161071f90611c9a565b61085583838361123f565b6006546001600160a01b031633146109025760405162461bcd60e51b815260040161071f90611c65565b8051610915906008906020840190611808565b5050565b6006546001600160a01b031633146109435760405162461bcd60e51b815260040161071f90611c65565b60006109576006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109a1576040519150601f19603f3d011682016040523d82523d6000602084013e6109a6565b606091505b50509050806109b457600080fd5b50565b61085583838360405180602001604052806000815250610e34565b606060006109df83610b88565b905060008167ffffffffffffffff8111156109fc576109fc6119fa565b604051908082528060200260200182016040528015610a25578160200160208202803683370190505b509050600160005b8381108015610a3e5750600a548211155b15610aa9576000610a4e83610ae2565b9050866001600160a01b0316816001600160a01b03161415610a965782848381518110610a7d57610a7d611ceb565b602090810291909101015281610a9281611d17565b9250505b82610aa081611d17565b93505050610a2d565b5090949350505050565b6006546001600160a01b03163314610add5760405162461bcd60e51b815260040161071f90611c65565b600955565b6000818152600260205260408120546001600160a01b0316806106125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071f565b6006546001600160a01b03163314610b835760405162461bcd60e51b815260040161071f90611c65565b600a55565b60006001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c395760405162461bcd60e51b815260040161071f90611c65565b610c4360006113db565b565b81600081118015610c585750600b548111155b610c745760405162461bcd60e51b815260040161071f90611d32565b600a5481610c8160075490565b610c8b9190611d60565b1115610ca95760405162461bcd60e51b815260040161071f90611d78565b6006546001600160a01b03163314610cd35760405162461bcd60e51b815260040161071f90611c65565b610855828461142d565b60606001805461062790611c2a565b80600081118015610cff5750600b548111155b610d1b5760405162461bcd60e51b815260040161071f90611d32565b600a5481610d2860075490565b610d329190611d60565b1115610d505760405162461bcd60e51b815260040161071f90611d78565b600c5460ff1615610d9d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161071f565b81600954610dab9190611da6565b341015610df05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161071f565b610915338361142d565b61091533838361146a565b6006546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161071f90611c65565b600b55565b610e3e3383611148565b610e5a5760405162461bcd60e51b815260040161071f90611c9a565b610e6684848484611539565b50505050565b6000818152600260205260409020546060906001600160a01b0316610eeb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071f565b6000610ef561156c565b90506000815111610f155760405180602001604052806000815250610f37565b6008604051602001610f279190611dc5565b6040516020818303038152906040525b9392505050565b81600081118015610f515750600b548111155b610f6d5760405162461bcd60e51b815260040161071f90611d32565b600a5481610f7a60075490565b610f849190611d60565b1115610fa25760405162461bcd60e51b815260040161071f90611d78565b600c5460ff1615610fef5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161071f565b82600954610ffd9190611da6565b341015610cd35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161071f565b6006546001600160a01b0316331461106c5760405162461bcd60e51b815260040161071f90611c65565b6001600160a01b0381166110d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b6109b4816113db565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110f82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071f565b60006111cc83610ae2565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846106aa565b6001600160a01b0316145b8061123757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661125282610ae2565b6001600160a01b0316146112b65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161071f565b6001600160a01b0382166113185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071f565b6113236000826110da565b6001600160a01b038316600090815260036020526040812080546001929061134c908490611e61565b90915550506001600160a01b038216600090815260036020526040812080546001929061137a908490611d60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561085557611446600780546001019055565b6114588361145360075490565b61157b565b8061146281611d17565b915050611430565b816001600160a01b0316836001600160a01b031614156114cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61154484848461123f565b61155084848484611595565b610e665760405162461bcd60e51b815260040161071f90611e78565b60606008805461062790611c2a565b610915828260405180602001604052806000815250611693565b60006001600160a01b0384163b1561168857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d9903390899088908890600401611eca565b6020604051808303816000875af1925050508015611614575060408051601f3d908101601f1916820190925261161191810190611f07565b60015b61166e573d808015611642576040519150601f19603f3d011682016040523d82523d6000602084013e611647565b606091505b5080516116665760405162461bcd60e51b815260040161071f90611e78565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611237565b506001949350505050565b61169d83836116c6565b6116aa6000848484611595565b6108555760405162461bcd60e51b815260040161071f90611e78565b6001600160a01b03821661171c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071f565b6000818152600260205260409020546001600160a01b0316156117815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071f565b6001600160a01b03821660009081526003602052604081208054600192906117aa908490611d60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181490611c2a565b90600052602060002090601f016020900481019282611836576000855561187c565b82601f1061184f57805160ff191683800117855561187c565b8280016001018555821561187c579182015b8281111561187c578251825591602001919060010190611861565b5061188892915061188c565b5090565b5b80821115611888576000815560010161188d565b6001600160e01b0319811681146109b457600080fd5b6000602082840312156118c957600080fd5b8135610f37816118a1565b6000815180845260005b818110156118fa576020818501810151868301820152016118de565b8181111561190c576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610f3760208301846118d4565b60006020828403121561194657600080fd5b5035919050565b80356001600160a01b038116811461196457600080fd5b919050565b6000806040838503121561197c57600080fd5b6119858361194d565b946020939093013593505050565b8035801515811461196457600080fd5b6000602082840312156119b557600080fd5b610f3782611993565b6000806000606084860312156119d357600080fd5b6119dc8461194d565b92506119ea6020850161194d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a2b57611a2b6119fa565b604051601f8501601f19908116603f01168101908282118183101715611a5357611a536119fa565b81604052809350858152868686011115611a6c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a9857600080fd5b813567ffffffffffffffff811115611aaf57600080fd5b8201601f81018413611ac057600080fd5b61123784823560208401611a10565b600060208284031215611ae157600080fd5b610f378261194d565b6020808252825182820181905260009190848201906040850190845b81811015611b2257835183529284019291840191600101611b06565b50909695505050505050565b60008060408385031215611b4157600080fd5b82359150611b516020840161194d565b90509250929050565b60008060408385031215611b6d57600080fd5b611b768361194d565b9150611b5160208401611993565b60008060008060808587031215611b9a57600080fd5b611ba38561194d565b9350611bb16020860161194d565b925060408501359150606085013567ffffffffffffffff811115611bd457600080fd5b8501601f81018713611be557600080fd5b611bf487823560208401611a10565b91505092959194509250565b60008060408385031215611c1357600080fd5b611c1c8361194d565b9150611b516020840161194d565b600181811c90821680611c3e57607f821691505b60208210811415611c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611d2b57611d2b611d01565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115611d7357611d73611d01565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615611dc057611dc0611d01565b500290565b600080835481600182811c915080831680611de157607f831692505b6020808410821415611e0157634e487b7160e01b86526022600452602486fd5b818015611e155760018114611e2657611e53565b60ff19861689528489019650611e53565b60008a81526020902060005b86811015611e4b5781548b820152908501908301611e32565b505084890196505b509498975050505050505050565b600082821015611e7357611e73611d01565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efd908301846118d4565b9695505050505050565b600060208284031215611f1957600080fd5b8151610f37816118a156fea26469706673582212200dd6a54fe62c30a4161cfc17cf852d01342f44a5fb4455f804f0921819f5132e64736f6c634300080b003350796d6520416c6c2041636365737320506173732047656e6573697320436f6c6c656374696f6e697066733a2f2f516d6264555a414d77533738393873415943394358753670706e42424163794d4b764a5a6a73544a655752644b63

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636f8b44b011610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610534578063e985e9c51461054a578063efbd73f414610593578063f2fde38b146105a657600080fd5b8063a22cb465146104b4578063b071401b146104d4578063b88d4fde146104f4578063c87b56dd1461051457600080fd5b80638da5cb5b116100d15780638da5cb5b1461045857806394354fd01461047657806395d89b411461048c578063a0712d68146104a157600080fd5b80636f8b44b0146103e357806370a0823114610403578063715018a6146104235780637b2e40411461043857600080fd5b806323b872dd1161017a578063438b630011610149578063438b63001461035c57806344a0d68a146103895780635c975abb146103a95780636352211e146103c357600080fd5b806323b872dd146102e75780632a751e42146103075780633ccfd60b1461032757806342842e0e1461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118b7565b6105c6565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610618565b6040516102099190611921565b34801561024057600080fd5b5061025461024f366004611934565b6106aa565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611969565b610744565b005b34801561029a57600080fd5b506102a460095481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd3660046119a3565b61085a565b3480156102de57600080fd5b506102a4610897565b3480156102f357600080fd5b5061028c6103023660046119be565b6108a7565b34801561031357600080fd5b5061028c610322366004611a86565b6108d8565b34801561033357600080fd5b5061028c610919565b34801561034857600080fd5b5061028c6103573660046119be565b6109b7565b34801561036857600080fd5b5061037c610377366004611acf565b6109d2565b6040516102099190611aea565b34801561039557600080fd5b5061028c6103a4366004611934565b610ab3565b3480156103b557600080fd5b50600c546101fd9060ff1681565b3480156103cf57600080fd5b506102546103de366004611934565b610ae2565b3480156103ef57600080fd5b5061028c6103fe366004611934565b610b59565b34801561040f57600080fd5b506102a461041e366004611acf565b610b88565b34801561042f57600080fd5b5061028c610c0f565b34801561044457600080fd5b5061028c610453366004611b2e565b610c45565b34801561046457600080fd5b506006546001600160a01b0316610254565b34801561048257600080fd5b506102a4600b5481565b34801561049857600080fd5b50610227610cdd565b61028c6104af366004611934565b610cec565b3480156104c057600080fd5b5061028c6104cf366004611b5a565b610dfa565b3480156104e057600080fd5b5061028c6104ef366004611934565b610e05565b34801561050057600080fd5b5061028c61050f366004611b84565b610e34565b34801561052057600080fd5b5061022761052f366004611934565b610e6c565b34801561054057600080fd5b506102a4600a5481565b34801561055657600080fd5b506101fd610565366004611c00565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028c6105a1366004611b2e565b610f3e565b3480156105b257600080fd5b5061028c6105c1366004611acf565b611042565b60006001600160e01b031982166380ac58cd60e01b14806105f757506001600160e01b03198216635b5e139f60e01b145b8061061257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461062790611c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461065390611c2a565b80156106a05780601f10610675576101008083540402835291602001916106a0565b820191906000526020600020905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074f82610ae2565b9050806001600160a01b0316836001600160a01b031614156107bd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161071f565b336001600160a01b03821614806107d957506107d98133610565565b61084b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161071f565b61085583836110da565b505050565b6006546001600160a01b031633146108845760405162461bcd60e51b815260040161071f90611c65565b600c805460ff1916911515919091179055565b60006108a260075490565b905090565b6108b13382611148565b6108cd5760405162461bcd60e51b815260040161071f90611c9a565b61085583838361123f565b6006546001600160a01b031633146109025760405162461bcd60e51b815260040161071f90611c65565b8051610915906008906020840190611808565b5050565b6006546001600160a01b031633146109435760405162461bcd60e51b815260040161071f90611c65565b60006109576006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109a1576040519150601f19603f3d011682016040523d82523d6000602084013e6109a6565b606091505b50509050806109b457600080fd5b50565b61085583838360405180602001604052806000815250610e34565b606060006109df83610b88565b905060008167ffffffffffffffff8111156109fc576109fc6119fa565b604051908082528060200260200182016040528015610a25578160200160208202803683370190505b509050600160005b8381108015610a3e5750600a548211155b15610aa9576000610a4e83610ae2565b9050866001600160a01b0316816001600160a01b03161415610a965782848381518110610a7d57610a7d611ceb565b602090810291909101015281610a9281611d17565b9250505b82610aa081611d17565b93505050610a2d565b5090949350505050565b6006546001600160a01b03163314610add5760405162461bcd60e51b815260040161071f90611c65565b600955565b6000818152600260205260408120546001600160a01b0316806106125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161071f565b6006546001600160a01b03163314610b835760405162461bcd60e51b815260040161071f90611c65565b600a55565b60006001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161071f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c395760405162461bcd60e51b815260040161071f90611c65565b610c4360006113db565b565b81600081118015610c585750600b548111155b610c745760405162461bcd60e51b815260040161071f90611d32565b600a5481610c8160075490565b610c8b9190611d60565b1115610ca95760405162461bcd60e51b815260040161071f90611d78565b6006546001600160a01b03163314610cd35760405162461bcd60e51b815260040161071f90611c65565b610855828461142d565b60606001805461062790611c2a565b80600081118015610cff5750600b548111155b610d1b5760405162461bcd60e51b815260040161071f90611d32565b600a5481610d2860075490565b610d329190611d60565b1115610d505760405162461bcd60e51b815260040161071f90611d78565b600c5460ff1615610d9d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161071f565b81600954610dab9190611da6565b341015610df05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161071f565b610915338361142d565b61091533838361146a565b6006546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161071f90611c65565b600b55565b610e3e3383611148565b610e5a5760405162461bcd60e51b815260040161071f90611c9a565b610e6684848484611539565b50505050565b6000818152600260205260409020546060906001600160a01b0316610eeb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161071f565b6000610ef561156c565b90506000815111610f155760405180602001604052806000815250610f37565b6008604051602001610f279190611dc5565b6040516020818303038152906040525b9392505050565b81600081118015610f515750600b548111155b610f6d5760405162461bcd60e51b815260040161071f90611d32565b600a5481610f7a60075490565b610f849190611d60565b1115610fa25760405162461bcd60e51b815260040161071f90611d78565b600c5460ff1615610fef5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161071f565b82600954610ffd9190611da6565b341015610cd35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161071f565b6006546001600160a01b0316331461106c5760405162461bcd60e51b815260040161071f90611c65565b6001600160a01b0381166110d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071f565b6109b4816113db565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110f82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161071f565b60006111cc83610ae2565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846106aa565b6001600160a01b0316145b8061123757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661125282610ae2565b6001600160a01b0316146112b65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161071f565b6001600160a01b0382166113185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161071f565b6113236000826110da565b6001600160a01b038316600090815260036020526040812080546001929061134c908490611e61565b90915550506001600160a01b038216600090815260036020526040812080546001929061137a908490611d60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561085557611446600780546001019055565b6114588361145360075490565b61157b565b8061146281611d17565b915050611430565b816001600160a01b0316836001600160a01b031614156114cc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161071f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61154484848461123f565b61155084848484611595565b610e665760405162461bcd60e51b815260040161071f90611e78565b60606008805461062790611c2a565b610915828260405180602001604052806000815250611693565b60006001600160a01b0384163b1561168857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d9903390899088908890600401611eca565b6020604051808303816000875af1925050508015611614575060408051601f3d908101601f1916820190925261161191810190611f07565b60015b61166e573d808015611642576040519150601f19603f3d011682016040523d82523d6000602084013e611647565b606091505b5080516116665760405162461bcd60e51b815260040161071f90611e78565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611237565b506001949350505050565b61169d83836116c6565b6116aa6000848484611595565b6108555760405162461bcd60e51b815260040161071f90611e78565b6001600160a01b03821661171c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161071f565b6000818152600260205260409020546001600160a01b0316156117815760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161071f565b6001600160a01b03821660009081526003602052604081208054600192906117aa908490611d60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181490611c2a565b90600052602060002090601f016020900481019282611836576000855561187c565b82601f1061184f57805160ff191683800117855561187c565b8280016001018555821561187c579182015b8281111561187c578251825591602001919060010190611861565b5061188892915061188c565b5090565b5b80821115611888576000815560010161188d565b6001600160e01b0319811681146109b457600080fd5b6000602082840312156118c957600080fd5b8135610f37816118a1565b6000815180845260005b818110156118fa576020818501810151868301820152016118de565b8181111561190c576000602083870101525b50601f01601f19169290920160200192915050565b602081526000610f3760208301846118d4565b60006020828403121561194657600080fd5b5035919050565b80356001600160a01b038116811461196457600080fd5b919050565b6000806040838503121561197c57600080fd5b6119858361194d565b946020939093013593505050565b8035801515811461196457600080fd5b6000602082840312156119b557600080fd5b610f3782611993565b6000806000606084860312156119d357600080fd5b6119dc8461194d565b92506119ea6020850161194d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a2b57611a2b6119fa565b604051601f8501601f19908116603f01168101908282118183101715611a5357611a536119fa565b81604052809350858152868686011115611a6c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a9857600080fd5b813567ffffffffffffffff811115611aaf57600080fd5b8201601f81018413611ac057600080fd5b61123784823560208401611a10565b600060208284031215611ae157600080fd5b610f378261194d565b6020808252825182820181905260009190848201906040850190845b81811015611b2257835183529284019291840191600101611b06565b50909695505050505050565b60008060408385031215611b4157600080fd5b82359150611b516020840161194d565b90509250929050565b60008060408385031215611b6d57600080fd5b611b768361194d565b9150611b5160208401611993565b60008060008060808587031215611b9a57600080fd5b611ba38561194d565b9350611bb16020860161194d565b925060408501359150606085013567ffffffffffffffff811115611bd457600080fd5b8501601f81018713611be557600080fd5b611bf487823560208401611a10565b91505092959194509250565b60008060408385031215611c1357600080fd5b611c1c8361194d565b9150611b516020840161194d565b600181811c90821680611c3e57607f821691505b60208210811415611c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611d2b57611d2b611d01565b5060010190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60008219821115611d7357611d73611d01565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000816000190483118215151615611dc057611dc0611d01565b500290565b600080835481600182811c915080831680611de157607f831692505b6020808410821415611e0157634e487b7160e01b86526022600452602486fd5b818015611e155760018114611e2657611e53565b60ff19861689528489019650611e53565b60008a81526020902060005b86811015611e4b5781548b820152908501908301611e32565b505084890196505b509498975050505050505050565b600082821015611e7357611e73611d01565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efd908301846118d4565b9695505050505050565b600060208284031215611f1957600080fd5b8151610f37816118a156fea26469706673582212200dd6a54fe62c30a4161cfc17cf852d01342f44a5fb4455f804f0921819f5132e64736f6c634300080b0033

Deployed Bytecode Sourcemap

38885:4058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25574:305:0;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1643:32:1;;;1625:51;;1613:2;1598:18;28078:221:0;1479:203:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;39128:29;;;;;;;;;;;;;;;;;;;2270:25:1;;;2258:2;2243:18;39128:29:0;2124:177:1;42353:83:0;;;;;;;;;;-1:-1:-1;42353:83:0;;;;;:::i;:::-;;:::i;39701:95::-;;;;;;;;;;;;;:::i;28828:339::-;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;42251:94::-;;;;;;;;;;-1:-1:-1;42251:94:0;;;;;:::i;:::-;;:::i;42444:147::-;;;;;;;;;;;;;:::i;29238:185::-;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;40628:741::-;;;;;;;;;;-1:-1:-1;40628:741:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41888:80::-;;;;;;;;;;-1:-1:-1;41888:80:0;;;;;:::i;:::-;;:::i;39248:26::-;;;;;;;;;;-1:-1:-1;39248:26:0;;;;;;;;26213:239;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;41976:100::-;;;;;;;;;;-1:-1:-1;41976:100:0;;;;;:::i;:::-;;:::i;25943:208::-;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;40430:190::-;;;;;;;;;;-1:-1:-1;40430:190:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;39201:38;;;;;;;;;;;;;;;;26688:104;;;;;;;;;;;;;:::i;39804:291::-;;;;;;:::i;:::-;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;42084:159::-;;;;;;;;;;-1:-1:-1;42084:159:0;;;;;:::i;:::-;;:::i;29494:328::-;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;41377:503::-;;;;;;;;;;-1:-1:-1;41377:503:0;;;;;:::i;:::-;;:::i;39164:30::-;;;;;;;;;;;;;;;;28597:164;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164;40103:319;;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25574:305::-;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;28174:73;;;;-1:-1:-1;;;28174:73:0;;7084:2:1;28174:73:0;;;7066:21:1;7123:2;7103:18;;;7096:30;7162:34;7142:18;;;7135:62;-1:-1:-1;;;7213:18:1;;;7206:42;7265:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;7497:2:1;27732:57:0;;;7479:21:1;7536:2;7516:18;;;7509:30;7575:34;7555:18;;;7548:62;-1:-1:-1;;;7626:18:1;;;7619:31;7667:19;;27732:57:0;7295:397:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;28597:164;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;7899:2:1;27802:168:0;;;7881:21:1;7938:2;7918:18;;;7911:30;7977:34;7957:18;;;7950:62;8048:26;8028:18;;;8021:54;8092:19;;27802:168:0;7697:420:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;42353:83::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42413:6:::1;:15:::0;;-1:-1:-1;;42413:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42353:83::o;39701:95::-;39745:7;39772:16;:6;964:14;;872:114;39772:16;39765:23;;39701:95;:::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;42251:94::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42321:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42251:94:::0;:::o;42444:147::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42493:7:::1;42514;5617:6:::0;;-1:-1:-1;;;;;5617:6:0;;5544:87;42514:7:::1;-1:-1:-1::0;;;;;42506:21:0::1;42535;42506:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42492:69;;;42580:2;42572:11;;;::::0;::::1;;42481:110;42444:147::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;40628:741::-;40715:16;40749:23;40775:17;40785:6;40775:9;:17::i;:::-;40749:43;;40803:30;40850:15;40836:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40836:30:0;-1:-1:-1;40803:63:0;-1:-1:-1;40902:1:0;40877:22;40954:375;40993:15;40975;:33;:64;;;;;41030:9;;41012:14;:27;;40975:64;40954:375;;;41066:25;41094:23;41102:14;41094:7;:23::i;:::-;41066:51;;41159:6;-1:-1:-1;;;;;41138:27:0;:17;-1:-1:-1;;;;;41138:27:0;;41134:151;;;41219:14;41186:13;41200:15;41186:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;41252:17;;;;:::i;:::-;;;;41134:151;41301:16;;;;:::i;:::-;;;;41051:278;40954:375;;;-1:-1:-1;41348:13:0;;40628:741;-1:-1:-1;;;;40628:741:0:o;41888:80::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;41948:4:::1;:12:::0;41888:80::o;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;9717:2:1;26348:73:0;;;9699:21:1;9756:2;9736:18;;;9729:30;9795:34;9775:18;;;9768:62;-1:-1:-1;;;9846:18:1;;;9839:39;9895:19;;26348:73:0;9515:405:1;41976:100:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42046:9:::1;:22:::0;41976:100::o;25943:208::-;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;10127:2:1;26035:74:0;;;10109:21:1;10166:2;10146:18;;;10139:30;10205:34;10185:18;;;10178:62;-1:-1:-1;;;10256:18:1;;;10249:40;10306:19;;26035:74:0;9925:406:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;40430:190::-;40531:11;39463:1;39449:11;:15;:52;;;;;39483:18;;39468:11;:33;;39449:52;39427:122;;;;-1:-1:-1;;;39427:122:0;;;;;;;:::i;:::-;39616:9;;39601:11;39582:16;:6;964:14;;872:114;39582:16;:30;;;;:::i;:::-;:43;;39560:113;;;;-1:-1:-1;;;39560:113:0;;;;;;;:::i;:::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23:::1;5756:68;;;;-1:-1:-1::0;;;5756:68:0::1;;;;;;;:::i;:::-;40579:33:::2;40589:9;40600:11;40579:9;:33::i;26688:104::-:0;26744:13;26777:7;26770:14;;;;;:::i;39804:291::-;39896:11;39463:1;39449:11;:15;:52;;;;;39483:18;;39468:11;:33;;39449:52;39427:122;;;;-1:-1:-1;;;39427:122:0;;;;;;;:::i;:::-;39616:9;;39601:11;39582:16;:6;964:14;;872:114;39582:16;:30;;;;:::i;:::-;:43;;39560:113;;;;-1:-1:-1;;;39560:113:0;;;;;;;:::i;:::-;39934:6:::1;::::0;::::1;;39933:7;39925:43;;;::::0;-1:-1:-1;;;39925:43:0;;11369:2:1;39925:43:0::1;::::0;::::1;11351:21:1::0;11408:2;11388:18;;;11381:30;-1:-1:-1;;;11427:18:1;;;11420:53;11490:18;;39925:43:0::1;11167:347:1::0;39925:43:0::1;40007:11;40000:4;;:18;;;;:::i;:::-;39987:9;:31;;39979:63;;;::::0;-1:-1:-1;;;39979:63:0;;11894:2:1;39979:63:0::1;::::0;::::1;11876:21:1::0;11933:2;11913:18;;;11906:30;-1:-1:-1;;;11952:18:1;;;11945:49;12011:18;;39979:63:0::1;11692:343:1::0;39979:63:0::1;40053:34;40063:10;40075:11;40053:9;:34::i;28371:155::-:0;28466:52;4348:10;28499:8;28509;28466:18;:52::i;42084:159::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;42195:18:::1;:40:::0;42084:159::o;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;41377:503::-;31397:4;31421:16;;;:7;:16;;;;;;41496:13;;-1:-1:-1;;;;;31421:16:0;41527:114;;;;-1:-1:-1;;;41527:114:0;;12242:2:1;41527:114:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:1;;;12364:45;12426:19;;41527:114:0;12040:411:1;41527:114:0;41654:28;41685:10;:8;:10::i;:::-;41654:41;;41757:1;41732:14;41726:28;:32;:146;;;;;;;;;;;;;;;;;41824:6;41807:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;41726:146;41706:166;41377:503;-1:-1:-1;;;41377:503:0:o;40103:319::-;40224:11;39463:1;39449:11;:15;:52;;;;;39483:18;;39468:11;:33;;39449:52;39427:122;;;;-1:-1:-1;;;39427:122:0;;;;;;;:::i;:::-;39616:9;;39601:11;39582:16;:6;964:14;;872:114;39582:16;:30;;;;:::i;:::-;:43;;39560:113;;;;-1:-1:-1;;;39560:113:0;;;;;;;:::i;:::-;40262:6:::1;::::0;::::1;;40261:7;40253:43;;;::::0;-1:-1:-1;;;40253:43:0;;11369:2:1;40253:43:0::1;::::0;::::1;11351:21:1::0;11408:2;11388:18;;;11381:30;-1:-1:-1;;;11427:18:1;;;11420:53;11490:18;;40253:43:0::1;11167:347:1::0;40253:43:0::1;40335:11;40328:4;;:18;;;;:::i;:::-;40315:9;:31;;40307:63;;;::::0;-1:-1:-1;;;40307:63:0;;11894:2:1;40307:63:0::1;::::0;::::1;11876:21:1::0;11933:2;11913:18;;;11906:30;-1:-1:-1;;;11952:18:1;;;11945:49;12011:18;;40307:63:0::1;11692:343:1::0;6453:201:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;13888:2:1;6534:73:0::1;::::0;::::1;13870:21:1::0;13927:2;13907:18;;;13900:30;13966:34;13946:18;;;13939:62;-1:-1:-1;;;14017:18:1;;;14010:36;14063:19;;6534:73:0::1;13686:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;35478:174::-:0;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;31736:73;;;;-1:-1:-1;;;31736:73:0;;14295:2:1;31736:73:0;;;14277:21:1;14334:2;14314:18;;;14307:30;14373:34;14353:18;;;14346:62;-1:-1:-1;;;14424:18:1;;;14417:42;14476:19;;31736:73:0;14093:408:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;-1:-1:-1;;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31933:32;31870:96;31626:348;-1:-1:-1;;;;31626:348:0:o;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;14708:2:1;34859:81:0;;;14690:21:1;14747:2;14727:18;;;14720:30;14786:34;14766:18;;;14759:62;-1:-1:-1;;;14837:18:1;;;14830:35;14882:19;;34859:81:0;14506:401:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;15114:2:1;34951:65:0;;;15096:21:1;15153:2;15133:18;;;15126:30;15192:34;15172:18;;;15165:62;-1:-1:-1;;;15243:18:1;;;15236:34;15287:19;;34951:65:0;14912:400:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27671:341;27601:411;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;42599:226::-;42683:9;42678:140;42702:11;42698:1;:15;42678:140;;;42735:18;:6;1083:19;;1101:1;1083:19;;;994:127;42735:18;42768:38;42778:9;42789:16;:6;964:14;;872:114;42789:16;42768:9;:38::i;:::-;42715:3;;;;:::i;:::-;;;;42678:140;;35794:315;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;15649:2:1;35932:55:0;;;15631:21:1;15688:2;15668:18;;;15661:30;15727:27;15707:18;;;15700:55;15772:18;;35932:55:0;15447:349:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;540::1;;;36060::0;;513:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;42833:107::-;42893:13;42926:6;42919:13;;;;;:::i;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;36674:799::-;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;17170:2:1;33382:61:0;;;17152:21:1;;;17189:18;;;17182:30;17248:34;17228:18;;;17221:62;17300:18;;33382:61:0;16968:356:1;33382:61:0;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;33454:58;;;;-1:-1:-1;;;33454:58:0;;17531:2:1;33454:58:0;;;17513:21:1;17570:2;17550:18;;;17543:30;17609;17589:18;;;17582:58;17657:18;;33454:58:0;17329:352:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;42321:16:::1;42251:94:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:180::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;-1:-1:-1;1445:23:1;;1294:180;-1:-1:-1;1294:180:1:o;1687:173::-;1755:20;;-1:-1:-1;;;;;1804:31:1;;1794:42;;1784:70;;1850:1;1847;1840:12;1784:70;1687:173;;;:::o;1865:254::-;1933:6;1941;1994:2;1982:9;1973:7;1969:23;1965:32;1962:52;;;2010:1;2007;2000:12;1962:52;2033:29;2052:9;2033:29;:::i;:::-;2023:39;2109:2;2094:18;;;;2081:32;;-1:-1:-1;;;1865:254:1:o;2306:160::-;2371:20;;2427:13;;2420:21;2410:32;;2400:60;;2456:1;2453;2446:12;2471:180;2527:6;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:26;2635:9;2619:26;:::i;2656:328::-;2733:6;2741;2749;2802:2;2790:9;2781:7;2777:23;2773:32;2770:52;;;2818:1;2815;2808:12;2770:52;2841:29;2860:9;2841:29;:::i;:::-;2831:39;;2889:38;2923:2;2912:9;2908:18;2889:38;:::i;:::-;2879:48;;2974:2;2963:9;2959:18;2946:32;2936:42;;2656:328;;;;;:::o;2989:127::-;3050:10;3045:3;3041:20;3038:1;3031:31;3081:4;3078:1;3071:15;3105:4;3102:1;3095:15;3121:632;3186:5;3216:18;3257:2;3249:6;3246:14;3243:40;;;3263:18;;:::i;:::-;3338:2;3332:9;3306:2;3392:15;;-1:-1:-1;;3388:24:1;;;3414:2;3384:33;3380:42;3368:55;;;3438:18;;;3458:22;;;3435:46;3432:72;;;3484:18;;:::i;:::-;3524:10;3520:2;3513:22;3553:6;3544:15;;3583:6;3575;3568:22;3623:3;3614:6;3609:3;3605:16;3602:25;3599:45;;;3640:1;3637;3630:12;3599:45;3690:6;3685:3;3678:4;3670:6;3666:17;3653:44;3745:1;3738:4;3729:6;3721;3717:19;3713:30;3706:41;;;;3121:632;;;;;:::o;3758:451::-;3827:6;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3936:9;3923:23;3969:18;3961:6;3958:30;3955:50;;;4001:1;3998;3991:12;3955:50;4024:22;;4077:4;4069:13;;4065:27;-1:-1:-1;4055:55:1;;4106:1;4103;4096:12;4055:55;4129:74;4195:7;4190:2;4177:16;4172:2;4168;4164:11;4129:74;:::i;4214:186::-;4273:6;4326:2;4314:9;4305:7;4301:23;4297:32;4294:52;;;4342:1;4339;4332:12;4294:52;4365:29;4384:9;4365:29;:::i;4405:632::-;4576:2;4628:21;;;4698:13;;4601:18;;;4720:22;;;4547:4;;4576:2;4799:15;;;;4773:2;4758:18;;;4547:4;4842:169;4856:6;4853:1;4850:13;4842:169;;;4917:13;;4905:26;;4986:15;;;;4951:12;;;;4878:1;4871:9;4842:169;;;-1:-1:-1;5028:3:1;;4405:632;-1:-1:-1;;;;;;4405:632:1:o;5042:254::-;5110:6;5118;5171:2;5159:9;5150:7;5146:23;5142:32;5139:52;;;5187:1;5184;5177:12;5139:52;5223:9;5210:23;5200:33;;5252:38;5286:2;5275:9;5271:18;5252:38;:::i;:::-;5242:48;;5042:254;;;;;:::o;5301:::-;5366:6;5374;5427:2;5415:9;5406:7;5402:23;5398:32;5395:52;;;5443:1;5440;5433:12;5395:52;5466:29;5485:9;5466:29;:::i;:::-;5456:39;;5514:35;5545:2;5534:9;5530:18;5514:35;:::i;5560:667::-;5655:6;5663;5671;5679;5732:3;5720:9;5711:7;5707:23;5703:33;5700:53;;;5749:1;5746;5739:12;5700:53;5772:29;5791:9;5772:29;:::i;:::-;5762:39;;5820:38;5854:2;5843:9;5839:18;5820:38;:::i;:::-;5810:48;;5905:2;5894:9;5890:18;5877:32;5867:42;;5960:2;5949:9;5945:18;5932:32;5987:18;5979:6;5976:30;5973:50;;;6019:1;6016;6009:12;5973:50;6042:22;;6095:4;6087:13;;6083:27;-1:-1:-1;6073:55:1;;6124:1;6121;6114:12;6073:55;6147:74;6213:7;6208:2;6195:16;6190:2;6186;6182:11;6147:74;:::i;:::-;6137:84;;;5560:667;;;;;;;:::o;6232:260::-;6300:6;6308;6361:2;6349:9;6340:7;6336:23;6332:32;6329:52;;;6377:1;6374;6367:12;6329:52;6400:29;6419:9;6400:29;:::i;:::-;6390:39;;6448:38;6482:2;6471:9;6467:18;6448:38;:::i;6497:380::-;6576:1;6572:12;;;;6619;;;6640:61;;6694:4;6686:6;6682:17;6672:27;;6640:61;6747:2;6739:6;6736:14;6716:18;6713:38;6710:161;;;6793:10;6788:3;6784:20;6781:1;6774:31;6828:4;6825:1;6818:15;6856:4;6853:1;6846:15;6710:161;;6497:380;;;:::o;8122:356::-;8324:2;8306:21;;;8343:18;;;8336:30;8402:34;8397:2;8382:18;;8375:62;8469:2;8454:18;;8122:356::o;8483:413::-;8685:2;8667:21;;;8724:2;8704:18;;;8697:30;8763:34;8758:2;8743:18;;8736:62;-1:-1:-1;;;8829:2:1;8814:18;;8807:47;8886:3;8871:19;;8483:413::o;9111:127::-;9172:10;9167:3;9163:20;9160:1;9153:31;9203:4;9200:1;9193:15;9227:4;9224:1;9217:15;9243:127;9304:10;9299:3;9295:20;9292:1;9285:31;9335:4;9332:1;9325:15;9359:4;9356:1;9349:15;9375:135;9414:3;-1:-1:-1;;9435:17:1;;9432:43;;;9455:18;;:::i;:::-;-1:-1:-1;9502:1:1;9491:13;;9375:135::o;10336:344::-;10538:2;10520:21;;;10577:2;10557:18;;;10550:30;-1:-1:-1;;;10611:2:1;10596:18;;10589:50;10671:2;10656:18;;10336:344::o;10685:128::-;10725:3;10756:1;10752:6;10749:1;10746:13;10743:39;;;10762:18;;:::i;:::-;-1:-1:-1;10798:9:1;;10685:128::o;10818:344::-;11020:2;11002:21;;;11059:2;11039:18;;;11032:30;-1:-1:-1;;;11093:2:1;11078:18;;11071:50;11153:2;11138:18;;10818:344::o;11519:168::-;11559:7;11625:1;11621;11617:6;11613:14;11610:1;11607:21;11602:1;11595:9;11588:17;11584:45;11581:71;;;11632:18;;:::i;:::-;-1:-1:-1;11672:9:1;;11519:168::o;12582:1099::-;12710:3;12739:1;12772:6;12766:13;12802:3;12824:1;12852:9;12848:2;12844:18;12834:28;;12912:2;12901:9;12897:18;12934;12924:61;;12978:4;12970:6;12966:17;12956:27;;12924:61;13004:2;13052;13044:6;13041:14;13021:18;13018:38;13015:165;;;-1:-1:-1;;;13079:33:1;;13135:4;13132:1;13125:15;13165:4;13086:3;13153:17;13015:165;13196:18;13223:104;;;;13341:1;13336:320;;;;13189:467;;13223:104;-1:-1:-1;;13256:24:1;;13244:37;;13301:16;;;;-1:-1:-1;13223:104:1;;13336:320;12529:1;12522:14;;;12566:4;12553:18;;13431:1;13445:165;13459:6;13456:1;13453:13;13445:165;;;13537:14;;13524:11;;;13517:35;13580:16;;;;13474:10;;13445:165;;;13449:3;;13639:6;13634:3;13630:16;13623:23;;13189:467;-1:-1:-1;13672:3:1;;12582:1099;-1:-1:-1;;;;;;;;12582:1099:1:o;15317:125::-;15357:4;15385:1;15382;15379:8;15376:34;;;15390:18;;:::i;:::-;-1:-1:-1;15427:9:1;;15317:125::o;15801:414::-;16003:2;15985:21;;;16042:2;16022:18;;;16015:30;16081:34;16076:2;16061:18;;16054:62;-1:-1:-1;;;16147:2:1;16132:18;;16125:48;16205:3;16190:19;;15801:414::o;16220:489::-;-1:-1:-1;;;;;16489:15:1;;;16471:34;;16541:15;;16536:2;16521:18;;16514:43;16588:2;16573:18;;16566:34;;;16636:3;16631:2;16616:18;;16609:31;;;16414:4;;16657:46;;16683:19;;16675:6;16657:46;:::i;:::-;16649:54;16220:489;-1:-1:-1;;;;;;16220:489:1:o;16714:249::-;16783:6;16836:2;16824:9;16815:7;16811:23;16807:32;16804:52;;;16852:1;16849;16842:12;16804:52;16884:9;16878:16;16903:30;16927:5;16903:30;:::i

Swarm Source

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