Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60a06040 | 13931077 | 1059 days ago | IN | 0 ETH | 0.18590424 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
JailedBabyApeClubV2
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-07 */ // Sources flattened with hardhat v2.8.0 https://hardhat.org // File @openzeppelin/contracts-upgradeable/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // 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 IERC165Upgradeable { /** * @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-upgradeable/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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-upgradeable/token/ERC721/[email protected] // 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 IERC721ReceiverUpgradeable { /** * @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-upgradeable/token/ERC721/extensions/[email protected] // 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 IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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-upgradeable/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev 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-upgradeable/proxy/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // 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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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-upgradeable/utils/introspection/[email protected] // 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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).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 = ERC721Upgradeable.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 = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.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 {} uint256[44] private __gap; } // File @openzeppelin/contracts-upgradeable/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] // 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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _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); } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721BurnableUpgradeable is Initializable, ContextUpgradeable, ERC721Upgradeable { function __ERC721Burnable_init() internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Burnable_init_unchained(); } function __ERC721Burnable_init_unchained() internal onlyInitializing { } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/proxy/beacon/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeaconUpgradeable { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlotUpgradeable { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } } // File @openzeppelin/contracts-upgradeable/proxy/ERC1967/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967UpgradeUpgradeable is Initializable { function __ERC1967Upgrade_init() internal onlyInitializing { __ERC1967Upgrade_init_unchained(); } function __ERC1967Upgrade_init_unchained() internal onlyInitializing { } // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { _functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallSecure( address newImplementation, bytes memory data, bool forceCall ) internal { address oldImplementation = _getImplementation(); // Initial upgrade and setup call _setImplementation(newImplementation); if (data.length > 0 || forceCall) { _functionDelegateCall(newImplementation, data); } // Perform rollback test if not already in progress StorageSlotUpgradeable.BooleanSlot storage rollbackTesting = StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT); if (!rollbackTesting.value) { // Trigger rollback using upgradeTo from the new implementation rollbackTesting.value = true; _functionDelegateCall( newImplementation, abi.encodeWithSignature("upgradeTo(address)", oldImplementation) ); rollbackTesting.value = false; // Check rollback was effective require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades"); // Finally reset to the new implementation and log the upgrade _upgradeTo(newImplementation); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data); } } /** * @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) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.0; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. * * _Available since v4.1._ */ abstract contract UUPSUpgradeable is Initializable, ERC1967UpgradeUpgradeable { function __UUPSUpgradeable_init() internal onlyInitializing { __ERC1967Upgrade_init_unchained(); __UUPSUpgradeable_init_unchained(); } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment address private immutable __self = address(this); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { require(address(this) != __self, "Function must be called through delegatecall"); require(_getImplementation() == __self, "Function must be called through active proxy"); _; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeTo(address newImplementation) external virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallSecure(newImplementation, new bytes(0), false); } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallSecure(newImplementation, data, true); } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeTo} and {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal override onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // 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 CountersUpgradeable { 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 contracts/jbac.sol pragma solidity ^0.8.2; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract JailedBabyApeClubV2 is Initializable, ERC721Upgradeable, PausableUpgradeable, OwnableUpgradeable, ERC721BurnableUpgradeable, UUPSUpgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; address proxyRegistryAddress; uint256 basePrice; uint256 totalSupply; CountersUpgradeable.Counter private _tokenIdCounter; /// @custom:oz-upgrades-unsafe-allow constructor constructor() initializer {} function initialize() initializer public { __ERC721_init("Jailed Baby Ape Club", "JBAC"); __Pausable_init(); __Ownable_init(); __ERC721Burnable_init(); __UUPSUpgradeable_init(); address _proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; proxyRegistryAddress = _proxyRegistryAddress; basePrice = 30000000000000000; totalSupply = 8989; _tokenIdCounter.increment(); } function batchMint(uint256 count) public payable { require(msg.value >= basePrice * count, 'INCREASE PAYMENT TO MINT'); for(uint256 i=0; i< count; i++){ uint256 tokenId = _tokenIdCounter.current(); require(tokenId <= totalSupply); _tokenIdCounter.increment(); _safeMint(msg.sender, tokenId); } } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function currentToken() public view returns (uint256) { uint256 currentNFT = _tokenIdCounter.current(); return currentNFT; } function _baseURI() internal pure override returns (string memory) { return "https://api.gnmedia.studio/v1/jbac/metadata/"; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function safeMint(address to) public payable { require(msg.value >= basePrice, 'INCREASE PAYMENT TO MINT'); uint256 tokenId = _tokenIdCounter.current(); require(tokenId <= totalSupply); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override { super._beforeTokenTransfer(from, to, tokenId); } function _authorizeUpgrade(address newImplementation) internal onlyOwner override {} function withdrawAll() public { uint256 amount = address(this).balance; require(payable(owner()).send(amount)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"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":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentToken","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":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523060601b6080523480156200001857600080fd5b50600054610100900460ff16620000365760005460ff161562000040565b62000040620000e5565b620000a85760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff16158015620000cb576000805461ffff19166101011790555b8015620000de576000805461ff00191690555b5062000109565b6000620000fd306200010360201b620010c51760201c565b15905090565b3b151590565b60805160601c6128216200013d60003960008181610793015281816107d3015281816109ab01526109eb01526128216000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610442578063c87b56dd14610462578063e985e9c514610482578063f2fde38b146104a257600080fd5b80638da5cb5b146103ef57806395d89b411461040d578063a22cb4651461042257600080fd5b8063836c081d116100c6578063836c081d1461039d5780638456cb59146103b25780638467be0d146103c7578063853828b6146103da57600080fd5b806370a0823114610345578063715018a6146103735780638129fc1c1461038857600080fd5b80633f4ba83a1161015957806342966c681161013357806342966c68146102da5780634f1ef286146102fa5780635c975abb1461030d5780636352211e1461032557600080fd5b80633f4ba83a1461029257806340d097c3146102a757806342842e0e146102ba57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806323b872dd146102525780633659cfe614610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004612345565b6104c2565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610514565b6040516101cd9190612465565b34801561020457600080fd5b50610218610213366004612399565b6105a6565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461231a565b610640565b005b34801561025e57600080fd5b5061025061026d3660046121f1565b610756565b34801561027e57600080fd5b5061025061028d36600461219d565b610788565b34801561029e57600080fd5b50610250610851565b6102506102b536600461219d565b610885565b3480156102c657600080fd5b506102506102d53660046121f1565b61090e565b3480156102e657600080fd5b506102506102f5366004612399565b610929565b6102506103083660046122cc565b6109a0565b34801561031957600080fd5b5060975460ff166101c1565b34801561033157600080fd5b50610218610340366004612399565b610a56565b34801561035157600080fd5b5061036561036036600461219d565b610acd565b6040519081526020016101cd565b34801561037f57600080fd5b50610250610b54565b34801561039457600080fd5b50610250610b88565b3480156103a957600080fd5b50610365610cff565b3480156103be57600080fd5b50610250610d0c565b6102506103d5366004612399565b610d3e565b3480156103e657600080fd5b50610250610dec565b3480156103fb57600080fd5b5060c9546001600160a01b0316610218565b34801561041957600080fd5b506101eb610e2f565b34801561042e57600080fd5b5061025061043d36600461229b565b610e3e565b34801561044e57600080fd5b5061025061045d366004612231565b610e49565b34801561046e57600080fd5b506101eb61047d366004612399565b610e81565b34801561048e57600080fd5b506101c161049d3660046121b9565b610f5c565b3480156104ae57600080fd5b506102506104bd36600461219d565b61102d565b60006001600160e01b031982166380ac58cd60e01b14806104f357506001600160e01b03198216635b5e139f60e01b145b8061050e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060658054610523906126c1565b80601f016020809104026020016040519081016040528092919081815260200182805461054f906126c1565b801561059c5780601f106105715761010080835404028352916020019161059c565b820191906000526020600020905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166106245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061064b82610a56565b9050806001600160a01b0316836001600160a01b031614156106b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161061b565b336001600160a01b03821614806106d557506106d58133610f5c565b6107475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161061b565b61075183836110cb565b505050565b610761335b82611139565b61077d5760405162461bcd60e51b815260040161061b90612597565b610751838383611208565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156107d15760405162461bcd60e51b815260040161061b906124ca565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166108036113b3565b6001600160a01b0316146108295760405162461bcd60e51b815260040161061b90612516565b610832816113e1565b6040805160008082526020820190925261084e9183919061140b565b50565b60c9546001600160a01b0316331461087b5760405162461bcd60e51b815260040161061b90612562565b610883611556565b565b610192543410156108d35760405162461bcd60e51b8152602060048201526018602482015277125390d4915054d14814105653515395081513c81352539560421b604482015260640161061b565b60006108df6101945490565b9050610193548111156108f157600080fd5b61090061019480546001019055565b61090a82826115e9565b5050565b61075183838360405180602001604052806000815250610e49565b6109323361075b565b6109975760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161061b565b61084e81611603565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156109e95760405162461bcd60e51b815260040161061b906124ca565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610a1b6113b3565b6001600160a01b031614610a415760405162461bcd60e51b815260040161061b90612516565b610a4a826113e1565b61090a8282600161140b565b6000818152606760205260408120546001600160a01b03168061050e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161061b565b60006001600160a01b038216610b385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161061b565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b03163314610b7e5760405162461bcd60e51b815260040161061b90612562565b61088360006116aa565b600054610100900460ff16610ba35760005460ff1615610ba7565b303b155b610c0a5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161061b565b600054610100900460ff16158015610c2c576000805461ffff19166101011790555b610c7e604051806040016040528060148152602001732530b4b632b2102130b13c9020b8329021b63ab160611b815250604051806040016040528060048152602001634a42414360e01b8152506116fc565b610c8661173d565b610c8e611774565b610c966117ab565b610c9e6117ea565b61019180546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1908117909155666a94d74f4300006101925561231d61019355610cea61019480546001019055565b50801561084e576000805461ff001916905550565b60008061050e6101945490565b60c9546001600160a01b03163314610d365760405162461bcd60e51b815260040161061b90612562565b610883611811565b8061019254610d4d919061265f565b341015610d975760405162461bcd60e51b8152602060048201526018602482015277125390d4915054d14814105653515395081513c81352539560421b604482015260640161061b565b60005b8181101561090a576000610dae6101945490565b905061019354811115610dc057600080fd5b610dcf61019480546001019055565b610dd933826115e9565b5080610de4816126fc565b915050610d9a565b47610dff60c9546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505061084e57600080fd5b606060668054610523906126c1565b61090a33838361188c565b610e533383611139565b610e6f5760405162461bcd60e51b815260040161061b90612597565b610e7b8484848461195b565b50505050565b6000818152606760205260409020546060906001600160a01b0316610f005760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161061b565b6000610f0a61198e565b90506000815111610f2a5760405180602001604052806000815250610f55565b80610f34846119ae565b604051602001610f459291906123f9565b6040516020818303038152906040525b9392505050565b6101915460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe2919061237d565b6001600160a01b03161415610ffb57600191505061050e565b6001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60c9546001600160a01b031633146110575760405162461bcd60e51b815260040161061b90612562565b6001600160a01b0381166110bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061b565b61084e816116aa565b3b151590565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110082610a56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b03166111b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161061b565b60006111bd83610a56565b9050806001600160a01b0316846001600160a01b031614806111f85750836001600160a01b03166111ed846105a6565b6001600160a01b0316145b8061102557506110258185610f5c565b826001600160a01b031661121b82610a56565b6001600160a01b0316146112835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161061b565b6001600160a01b0382166112e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161061b565b6112f0838383611ac8565b6112fb6000826110cb565b6001600160a01b038316600090815260686020526040812080546001929061132490849061267e565b90915550506001600160a01b0382166000908152606860205260408120805460019290611352908490612633565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60c9546001600160a01b0316331461084e5760405162461bcd60e51b815260040161061b90612562565b60006114156113b3565b905061142084611b0e565b60008351118061142d5750815b1561143e5761143c8484611bb3565b505b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143805460ff1661154f57805460ff191660011781556040516001600160a01b03831660248201526114bd90869060440160408051601f198184030181529190526020810180516001600160e01b0316631b2ce7f360e11b179052611bb3565b50805460ff191681556114ce6113b3565b6001600160a01b0316826001600160a01b0316146115465760405162461bcd60e51b815260206004820152602f60248201527f45524331393637557067726164653a207570677261646520627265616b73206660448201526e75727468657220757067726164657360881b606482015260840161061b565b61154f85611c9e565b5050505050565b60975460ff1661159f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161061b565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61090a828260405180602001604052806000815250611cde565b600061160e82610a56565b905061161c81600084611ac8565b6116276000836110cb565b6001600160a01b038116600090815260686020526040812080546001929061165090849061267e565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff166117235760405162461bcd60e51b815260040161061b906125e8565b61172b611d11565b611733611d11565b61090a8282611d38565b600054610100900460ff166117645760405162461bcd60e51b815260040161061b906125e8565b61176c611d11565b610883611d86565b600054610100900460ff1661179b5760405162461bcd60e51b815260040161061b906125e8565b6117a3611d11565b610883611db9565b600054610100900460ff166117d25760405162461bcd60e51b815260040161061b906125e8565b6117da611d11565b6117e2611d11565b610883611d11565b600054610100900460ff166117da5760405162461bcd60e51b815260040161061b906125e8565b60975460ff16156118575760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161061b565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115cc3390565b816001600160a01b0316836001600160a01b031614156118ee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161061b565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611966848484611208565b61197284848484611de9565b610e7b5760405162461bcd60e51b815260040161061b90612478565b60606040518060600160405280602c8152602001612799602c9139905090565b6060816119d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119fc57806119e6816126fc565b91506119f59050600a8361264b565b91506119d6565b60008167ffffffffffffffff811115611a2557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a4f576020820181803683370190505b5090505b841561102557611a6460018361267e565b9150611a71600a86612717565b611a7c906030612633565b60f81b818381518110611a9f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ac1600a8661264b565b9450611a53565b60975460ff16156107515760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161061b565b803b611b725760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161061b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060823b611c125760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161061b565b600080846001600160a01b031684604051611c2d91906123dd565b600060405180830381855af49150503d8060008114611c68576040519150601f19603f3d011682016040523d82523d6000602084013e611c6d565b606091505b5091509150611c9582826040518060600160405280602781526020016127c560279139611ef6565b95945050505050565b611ca781611b0e565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b611ce88383611f2f565b611cf56000848484611de9565b6107515760405162461bcd60e51b815260040161061b90612478565b600054610100900460ff166108835760405162461bcd60e51b815260040161061b906125e8565b600054610100900460ff16611d5f5760405162461bcd60e51b815260040161061b906125e8565b8151611d7290606590602085019061207d565b50805161075190606690602084019061207d565b600054610100900460ff16611dad5760405162461bcd60e51b815260040161061b906125e8565b6097805460ff19169055565b600054610100900460ff16611de05760405162461bcd60e51b815260040161061b906125e8565b610883336116aa565b60006001600160a01b0384163b15611eeb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2d903390899088908890600401612428565b602060405180830381600087803b158015611e4757600080fd5b505af1925050508015611e77575060408051601f3d908101601f19168201909252611e7491810190612361565b60015b611ed1573d808015611ea5576040519150601f19603f3d011682016040523d82523d6000602084013e611eaa565b606091505b508051611ec95760405162461bcd60e51b815260040161061b90612478565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611025565b506001949350505050565b60608315611f05575081610f55565b825115611f155782518084602001fd5b8160405162461bcd60e51b815260040161061b9190612465565b6001600160a01b038216611f855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161061b565b6000818152606760205260409020546001600160a01b031615611fea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161061b565b611ff660008383611ac8565b6001600160a01b038216600090815260686020526040812080546001929061201f908490612633565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612089906126c1565b90600052602060002090601f0160209004810192826120ab57600085556120f1565b82601f106120c457805160ff19168380011785556120f1565b828001600101855582156120f1579182015b828111156120f15782518255916020019190600101906120d6565b506120fd929150612101565b5090565b5b808211156120fd5760008155600101612102565b600082601f830112612126578081fd5b813567ffffffffffffffff8082111561214157612141612757565b604051601f8301601f19908116603f0116810190828211818310171561216957612169612757565b81604052838152866020858801011115612181578485fd5b8360208701602083013792830160200193909352509392505050565b6000602082840312156121ae578081fd5b8135610f558161276d565b600080604083850312156121cb578081fd5b82356121d68161276d565b915060208301356121e68161276d565b809150509250929050565b600080600060608486031215612205578081fd5b83356122108161276d565b925060208401356122208161276d565b929592945050506040919091013590565b60008060008060808587031215612246578081fd5b84356122518161276d565b935060208501356122618161276d565b925060408501359150606085013567ffffffffffffffff811115612283578182fd5b61228f87828801612116565b91505092959194509250565b600080604083850312156122ad578182fd5b82356122b88161276d565b9150602083013580151581146121e6578182fd5b600080604083850312156122de578182fd5b82356122e98161276d565b9150602083013567ffffffffffffffff811115612304578182fd5b61231085828601612116565b9150509250929050565b6000806040838503121561232c578182fd5b82356123378161276d565b946020939093013593505050565b600060208284031215612356578081fd5b8135610f5581612782565b600060208284031215612372578081fd5b8151610f5581612782565b60006020828403121561238e578081fd5b8151610f558161276d565b6000602082840312156123aa578081fd5b5035919050565b600081518084526123c9816020860160208601612695565b601f01601f19169290920160200192915050565b600082516123ef818460208701612695565b9190910192915050565b6000835161240b818460208801612695565b83519083019061241f818360208801612695565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245b908301846123b1565b9695505050505050565b602081526000610f5560208301846123b1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600082198211156126465761264661272b565b500190565b60008261265a5761265a612741565b500490565b60008160001904831182151516156126795761267961272b565b500290565b6000828210156126905761269061272b565b500390565b60005b838110156126b0578181015183820152602001612698565b83811115610e7b5750506000910152565b600181811c908216806126d557607f821691505b602082108114156126f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127105761271061272b565b5060010190565b60008261272657612726612741565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461084e57600080fd5b6001600160e01b03198116811461084e57600080fdfe68747470733a2f2f6170692e676e6d656469612e73747564696f2f76312f6a6261632f6d657461646174612f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220cb26308149db23585740de2f3c515f6966c1723c950f5a99254cd2720030f20164736f6c63430008040033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806370a08231116100ec5780638da5cb5b1161008a578063b88d4fde11610064578063b88d4fde14610442578063c87b56dd14610462578063e985e9c514610482578063f2fde38b146104a257600080fd5b80638da5cb5b146103ef57806395d89b411461040d578063a22cb4651461042257600080fd5b8063836c081d116100c6578063836c081d1461039d5780638456cb59146103b25780638467be0d146103c7578063853828b6146103da57600080fd5b806370a0823114610345578063715018a6146103735780638129fc1c1461038857600080fd5b80633f4ba83a1161015957806342966c681161013357806342966c68146102da5780634f1ef286146102fa5780635c975abb1461030d5780636352211e1461032557600080fd5b80633f4ba83a1461029257806340d097c3146102a757806342842e0e146102ba57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806323b872dd146102525780633659cfe614610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004612345565b6104c2565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610514565b6040516101cd9190612465565b34801561020457600080fd5b50610218610213366004612399565b6105a6565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461231a565b610640565b005b34801561025e57600080fd5b5061025061026d3660046121f1565b610756565b34801561027e57600080fd5b5061025061028d36600461219d565b610788565b34801561029e57600080fd5b50610250610851565b6102506102b536600461219d565b610885565b3480156102c657600080fd5b506102506102d53660046121f1565b61090e565b3480156102e657600080fd5b506102506102f5366004612399565b610929565b6102506103083660046122cc565b6109a0565b34801561031957600080fd5b5060975460ff166101c1565b34801561033157600080fd5b50610218610340366004612399565b610a56565b34801561035157600080fd5b5061036561036036600461219d565b610acd565b6040519081526020016101cd565b34801561037f57600080fd5b50610250610b54565b34801561039457600080fd5b50610250610b88565b3480156103a957600080fd5b50610365610cff565b3480156103be57600080fd5b50610250610d0c565b6102506103d5366004612399565b610d3e565b3480156103e657600080fd5b50610250610dec565b3480156103fb57600080fd5b5060c9546001600160a01b0316610218565b34801561041957600080fd5b506101eb610e2f565b34801561042e57600080fd5b5061025061043d36600461229b565b610e3e565b34801561044e57600080fd5b5061025061045d366004612231565b610e49565b34801561046e57600080fd5b506101eb61047d366004612399565b610e81565b34801561048e57600080fd5b506101c161049d3660046121b9565b610f5c565b3480156104ae57600080fd5b506102506104bd36600461219d565b61102d565b60006001600160e01b031982166380ac58cd60e01b14806104f357506001600160e01b03198216635b5e139f60e01b145b8061050e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060658054610523906126c1565b80601f016020809104026020016040519081016040528092919081815260200182805461054f906126c1565b801561059c5780601f106105715761010080835404028352916020019161059c565b820191906000526020600020905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166106245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061064b82610a56565b9050806001600160a01b0316836001600160a01b031614156106b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161061b565b336001600160a01b03821614806106d557506106d58133610f5c565b6107475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161061b565b61075183836110cb565b505050565b610761335b82611139565b61077d5760405162461bcd60e51b815260040161061b90612597565b610751838383611208565b306001600160a01b037f000000000000000000000000d6d379ff1992bd78e8ea71900fb0c0946b517e021614156107d15760405162461bcd60e51b815260040161061b906124ca565b7f000000000000000000000000d6d379ff1992bd78e8ea71900fb0c0946b517e026001600160a01b03166108036113b3565b6001600160a01b0316146108295760405162461bcd60e51b815260040161061b90612516565b610832816113e1565b6040805160008082526020820190925261084e9183919061140b565b50565b60c9546001600160a01b0316331461087b5760405162461bcd60e51b815260040161061b90612562565b610883611556565b565b610192543410156108d35760405162461bcd60e51b8152602060048201526018602482015277125390d4915054d14814105653515395081513c81352539560421b604482015260640161061b565b60006108df6101945490565b9050610193548111156108f157600080fd5b61090061019480546001019055565b61090a82826115e9565b5050565b61075183838360405180602001604052806000815250610e49565b6109323361075b565b6109975760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161061b565b61084e81611603565b306001600160a01b037f000000000000000000000000d6d379ff1992bd78e8ea71900fb0c0946b517e021614156109e95760405162461bcd60e51b815260040161061b906124ca565b7f000000000000000000000000d6d379ff1992bd78e8ea71900fb0c0946b517e026001600160a01b0316610a1b6113b3565b6001600160a01b031614610a415760405162461bcd60e51b815260040161061b90612516565b610a4a826113e1565b61090a8282600161140b565b6000818152606760205260408120546001600160a01b03168061050e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161061b565b60006001600160a01b038216610b385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161061b565b506001600160a01b031660009081526068602052604090205490565b60c9546001600160a01b03163314610b7e5760405162461bcd60e51b815260040161061b90612562565b61088360006116aa565b600054610100900460ff16610ba35760005460ff1615610ba7565b303b155b610c0a5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161061b565b600054610100900460ff16158015610c2c576000805461ffff19166101011790555b610c7e604051806040016040528060148152602001732530b4b632b2102130b13c9020b8329021b63ab160611b815250604051806040016040528060048152602001634a42414360e01b8152506116fc565b610c8661173d565b610c8e611774565b610c966117ab565b610c9e6117ea565b61019180546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1908117909155666a94d74f4300006101925561231d61019355610cea61019480546001019055565b50801561084e576000805461ff001916905550565b60008061050e6101945490565b60c9546001600160a01b03163314610d365760405162461bcd60e51b815260040161061b90612562565b610883611811565b8061019254610d4d919061265f565b341015610d975760405162461bcd60e51b8152602060048201526018602482015277125390d4915054d14814105653515395081513c81352539560421b604482015260640161061b565b60005b8181101561090a576000610dae6101945490565b905061019354811115610dc057600080fd5b610dcf61019480546001019055565b610dd933826115e9565b5080610de4816126fc565b915050610d9a565b47610dff60c9546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505061084e57600080fd5b606060668054610523906126c1565b61090a33838361188c565b610e533383611139565b610e6f5760405162461bcd60e51b815260040161061b90612597565b610e7b8484848461195b565b50505050565b6000818152606760205260409020546060906001600160a01b0316610f005760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161061b565b6000610f0a61198e565b90506000815111610f2a5760405180602001604052806000815250610f55565b80610f34846119ae565b604051602001610f459291906123f9565b6040516020818303038152906040525b9392505050565b6101915460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe2919061237d565b6001600160a01b03161415610ffb57600191505061050e565b6001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60c9546001600160a01b031633146110575760405162461bcd60e51b815260040161061b90612562565b6001600160a01b0381166110bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061b565b61084e816116aa565b3b151590565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110082610a56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152606760205260408120546001600160a01b03166111b25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161061b565b60006111bd83610a56565b9050806001600160a01b0316846001600160a01b031614806111f85750836001600160a01b03166111ed846105a6565b6001600160a01b0316145b8061102557506110258185610f5c565b826001600160a01b031661121b82610a56565b6001600160a01b0316146112835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161061b565b6001600160a01b0382166112e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161061b565b6112f0838383611ac8565b6112fb6000826110cb565b6001600160a01b038316600090815260686020526040812080546001929061132490849061267e565b90915550506001600160a01b0382166000908152606860205260408120805460019290611352908490612633565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60c9546001600160a01b0316331461084e5760405162461bcd60e51b815260040161061b90612562565b60006114156113b3565b905061142084611b0e565b60008351118061142d5750815b1561143e5761143c8484611bb3565b505b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143805460ff1661154f57805460ff191660011781556040516001600160a01b03831660248201526114bd90869060440160408051601f198184030181529190526020810180516001600160e01b0316631b2ce7f360e11b179052611bb3565b50805460ff191681556114ce6113b3565b6001600160a01b0316826001600160a01b0316146115465760405162461bcd60e51b815260206004820152602f60248201527f45524331393637557067726164653a207570677261646520627265616b73206660448201526e75727468657220757067726164657360881b606482015260840161061b565b61154f85611c9e565b5050505050565b60975460ff1661159f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161061b565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61090a828260405180602001604052806000815250611cde565b600061160e82610a56565b905061161c81600084611ac8565b6116276000836110cb565b6001600160a01b038116600090815260686020526040812080546001929061165090849061267e565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff166117235760405162461bcd60e51b815260040161061b906125e8565b61172b611d11565b611733611d11565b61090a8282611d38565b600054610100900460ff166117645760405162461bcd60e51b815260040161061b906125e8565b61176c611d11565b610883611d86565b600054610100900460ff1661179b5760405162461bcd60e51b815260040161061b906125e8565b6117a3611d11565b610883611db9565b600054610100900460ff166117d25760405162461bcd60e51b815260040161061b906125e8565b6117da611d11565b6117e2611d11565b610883611d11565b600054610100900460ff166117da5760405162461bcd60e51b815260040161061b906125e8565b60975460ff16156118575760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161061b565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115cc3390565b816001600160a01b0316836001600160a01b031614156118ee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161061b565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611966848484611208565b61197284848484611de9565b610e7b5760405162461bcd60e51b815260040161061b90612478565b60606040518060600160405280602c8152602001612799602c9139905090565b6060816119d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119fc57806119e6816126fc565b91506119f59050600a8361264b565b91506119d6565b60008167ffffffffffffffff811115611a2557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a4f576020820181803683370190505b5090505b841561102557611a6460018361267e565b9150611a71600a86612717565b611a7c906030612633565b60f81b818381518110611a9f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ac1600a8661264b565b9450611a53565b60975460ff16156107515760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161061b565b803b611b725760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161061b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060823b611c125760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840161061b565b600080846001600160a01b031684604051611c2d91906123dd565b600060405180830381855af49150503d8060008114611c68576040519150601f19603f3d011682016040523d82523d6000602084013e611c6d565b606091505b5091509150611c9582826040518060600160405280602781526020016127c560279139611ef6565b95945050505050565b611ca781611b0e565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b611ce88383611f2f565b611cf56000848484611de9565b6107515760405162461bcd60e51b815260040161061b90612478565b600054610100900460ff166108835760405162461bcd60e51b815260040161061b906125e8565b600054610100900460ff16611d5f5760405162461bcd60e51b815260040161061b906125e8565b8151611d7290606590602085019061207d565b50805161075190606690602084019061207d565b600054610100900460ff16611dad5760405162461bcd60e51b815260040161061b906125e8565b6097805460ff19169055565b600054610100900460ff16611de05760405162461bcd60e51b815260040161061b906125e8565b610883336116aa565b60006001600160a01b0384163b15611eeb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e2d903390899088908890600401612428565b602060405180830381600087803b158015611e4757600080fd5b505af1925050508015611e77575060408051601f3d908101601f19168201909252611e7491810190612361565b60015b611ed1573d808015611ea5576040519150601f19603f3d011682016040523d82523d6000602084013e611eaa565b606091505b508051611ec95760405162461bcd60e51b815260040161061b90612478565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611025565b506001949350505050565b60608315611f05575081610f55565b825115611f155782518084602001fd5b8160405162461bcd60e51b815260040161061b9190612465565b6001600160a01b038216611f855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161061b565b6000818152606760205260409020546001600160a01b031615611fea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161061b565b611ff660008383611ac8565b6001600160a01b038216600090815260686020526040812080546001929061201f908490612633565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612089906126c1565b90600052602060002090601f0160209004810192826120ab57600085556120f1565b82601f106120c457805160ff19168380011785556120f1565b828001600101855582156120f1579182015b828111156120f15782518255916020019190600101906120d6565b506120fd929150612101565b5090565b5b808211156120fd5760008155600101612102565b600082601f830112612126578081fd5b813567ffffffffffffffff8082111561214157612141612757565b604051601f8301601f19908116603f0116810190828211818310171561216957612169612757565b81604052838152866020858801011115612181578485fd5b8360208701602083013792830160200193909352509392505050565b6000602082840312156121ae578081fd5b8135610f558161276d565b600080604083850312156121cb578081fd5b82356121d68161276d565b915060208301356121e68161276d565b809150509250929050565b600080600060608486031215612205578081fd5b83356122108161276d565b925060208401356122208161276d565b929592945050506040919091013590565b60008060008060808587031215612246578081fd5b84356122518161276d565b935060208501356122618161276d565b925060408501359150606085013567ffffffffffffffff811115612283578182fd5b61228f87828801612116565b91505092959194509250565b600080604083850312156122ad578182fd5b82356122b88161276d565b9150602083013580151581146121e6578182fd5b600080604083850312156122de578182fd5b82356122e98161276d565b9150602083013567ffffffffffffffff811115612304578182fd5b61231085828601612116565b9150509250929050565b6000806040838503121561232c578182fd5b82356123378161276d565b946020939093013593505050565b600060208284031215612356578081fd5b8135610f5581612782565b600060208284031215612372578081fd5b8151610f5581612782565b60006020828403121561238e578081fd5b8151610f558161276d565b6000602082840312156123aa578081fd5b5035919050565b600081518084526123c9816020860160208601612695565b601f01601f19169290920160200192915050565b600082516123ef818460208701612695565b9190910192915050565b6000835161240b818460208801612695565b83519083019061241f818360208801612695565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245b908301846123b1565b9695505050505050565b602081526000610f5560208301846123b1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600082198211156126465761264661272b565b500190565b60008261265a5761265a612741565b500490565b60008160001904831182151516156126795761267961272b565b500290565b6000828210156126905761269061272b565b500390565b60005b838110156126b0578181015183820152602001612698565b83811115610e7b5750506000910152565b600181811c908216806126d557607f821691505b602082108114156126f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127105761271061272b565b5060010190565b60008261272657612726612741565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461084e57600080fd5b6001600160e01b03198116811461084e57600080fdfe68747470733a2f2f6170692e676e6d656469612e73747564696f2f76312f6a6261632f6d657461646174612f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220cb26308149db23585740de2f3c515f6966c1723c950f5a99254cd2720030f20164736f6c63430008040033
Deployed Bytecode Sourcemap
60242:3124:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24771:349;;;;;;;;;;-1:-1:-1;24771:349:0;;;;;:::i;:::-;;:::i;:::-;;;6730:14:1;;6723:22;6705:41;;6693:2;6678:18;24771:349:0;;;;;;;;25760:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27330:221::-;;;;;;;;;;-1:-1:-1;27330:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6028:32:1;;;6010:51;;5998:2;5983:18;27330:221:0;5965:102:1;26842:422:0;;;;;;;;;;-1:-1:-1;26842:422:0;;;;;:::i;:::-;;:::i;:::-;;28080:339;;;;;;;;;;-1:-1:-1;28080:339:0;;;;;:::i;:::-;;:::i;57319:202::-;;;;;;;;;;-1:-1:-1;57319:202:0;;;;;:::i;:::-;;:::i;62523:65::-;;;;;;;;;;;;;:::i;62596:290::-;;;;;;:::i;:::-;;:::i;28490:185::-;;;;;;;;;;-1:-1:-1;28490:185:0;;;;;:::i;:::-;;:::i;43679:245::-;;;;;;;;;;-1:-1:-1;43679:245:0;;;;;:::i;:::-;;:::i;57780:227::-;;;;;;:::i;:::-;;:::i;38755:86::-;;;;;;;;;;-1:-1:-1;38826:7:0;;;;38755:86;;25454:239;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;25184:208::-;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;:::-;;;17863:25:1;;;17851:2;17836:18;25184:208:0;17818:76:1;41942:103:0;;;;;;;;;;;;;:::i;60702:476::-;;;;;;;;;;;;;:::i;62152:147::-;;;;;;;;;;;;;:::i;62454:61::-;;;;;;;;;;;;;:::i;61186:379::-;;;;;;:::i;:::-;;:::i;63227:136::-;;;;;;;;;;;;;:::i;41291:87::-;;;;;;;;;;-1:-1:-1;41364:6:0;;-1:-1:-1;;;;;41364:6:0;41291:87;;25929:104;;;;;;;;;;;;;:::i;27623:155::-;;;;;;;;;;-1:-1:-1;27623:155:0;;;;;:::i;:::-;;:::i;28746:328::-;;;;;;;;;;-1:-1:-1;28746:328:0;;;;;:::i;:::-;;:::i;26104:334::-;;;;;;;;;;-1:-1:-1;26104:334:0;;;;;:::i;:::-;;:::i;61699:445::-;;;;;;;;;;-1:-1:-1;61699:445:0;;;;;:::i;:::-;;:::i;42200:201::-;;;;;;;;;;-1:-1:-1;42200:201:0;;;;;:::i;:::-;;:::i;24771:349::-;24895:4;-1:-1:-1;;;;;;24932:51:0;;-1:-1:-1;;;24932:51:0;;:127;;-1:-1:-1;;;;;;;25000:59:0;;-1:-1:-1;;;25000:59:0;24932:127;:180;;;-1:-1:-1;;;;;;;;;;22881:51:0;;;25076:36;24912:200;24771:349;-1:-1:-1;;24771:349:0:o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27330:221::-;27406:7;30673:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30673:16:0;27426:73;;;;-1:-1:-1;;;27426:73:0;;13849:2:1;27426:73:0;;;13831:21:1;13888:2;13868:18;;;13861:30;13927:34;13907:18;;;13900:62;-1:-1:-1;;;13978:18:1;;;13971:42;14030:19;;27426:73:0;;;;;;;;;-1:-1:-1;27519:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27519:24:0;;27330:221::o;26842:422::-;26923:13;26939:34;26965:7;26939:25;:34::i;:::-;26923:50;;26998:5;-1:-1:-1;;;;;26992:11:0;:2;-1:-1:-1;;;;;26992:11:0;;;26984:57;;;;-1:-1:-1;;;26984:57:0;;15863:2:1;26984:57:0;;;15845:21:1;15902:2;15882:18;;;15875:30;15941:34;15921:18;;;15914:62;-1:-1:-1;;;15992:18:1;;;15985:31;16033:19;;26984:57:0;15835:223:1;26984:57:0;19333:10;-1:-1:-1;;;;;27076:21:0;;;;:62;;-1:-1:-1;27101:37:0;27118:5;19333:10;61699:445;:::i;27101:37::-;27054:168;;;;-1:-1:-1;;;27054:168:0;;11827:2:1;27054:168:0;;;11809:21:1;11866:2;11846:18;;;11839:30;11905:34;11885:18;;;11878:62;11976:26;11956:18;;;11949:54;12020:19;;27054:168:0;11799:246:1;27054:168:0;27235:21;27244:2;27248:7;27235:8;:21::i;:::-;26842:422;;;:::o;28080:339::-;28275:41;19333:10;28294:12;28308:7;28275:18;:41::i;:::-;28267:103;;;;-1:-1:-1;;;28267:103:0;;;;;;;:::i;:::-;28383:28;28393:4;28399:2;28403:7;28383:9;:28::i;57319:202::-;56948:4;-1:-1:-1;;;;;56957:6:0;56940:23;;;56932:80;;;;-1:-1:-1;;;56932:80:0;;;;;;;:::i;:::-;57055:6;-1:-1:-1;;;;;57031:30:0;:20;:18;:20::i;:::-;-1:-1:-1;;;;;57031:30:0;;57023:87;;;;-1:-1:-1;;;57023:87:0;;;;;;;:::i;:::-;57403:36:::1;57421:17;57403;:36::i;:::-;57493:12;::::0;;57503:1:::1;57493:12:::0;;;::::1;::::0;::::1;::::0;;;57450:63:::1;::::0;57474:17;;57493:12;57450:23:::1;:63::i;:::-;57319:202:::0;:::o;62523:65::-;41364:6;;-1:-1:-1;;;;;41364:6:0;19333:10;41511:23;41503:68;;;;-1:-1:-1;;;41503:68:0;;;;;;;:::i;:::-;62570:10:::1;:8;:10::i;:::-;62523:65::o:0;62596:290::-;62673:9;;62660;:22;;62652:59;;;;-1:-1:-1;;;62652:59:0;;9544:2:1;62652:59:0;;;9526:21:1;9583:2;9563:18;;;9556:30;-1:-1:-1;;;9602:18:1;;;9595:54;9666:18;;62652:59:0;9516:174:1;62652:59:0;62722:15;62740:25;:15;59541:14;;59449:114;62740:25;62722:43;;62795:11;;62784:7;:22;;62776:31;;;;;;62818:27;:15;59660:19;;59678:1;59660:19;;;59571:127;62818:27;62856:22;62866:2;62870:7;62856:9;:22::i;:::-;62596:290;;:::o;28490:185::-;28628:39;28645:4;28651:2;28655:7;28628:39;;;;;;;;;;;;:16;:39::i;43679:245::-;43797:41;19333:10;43816:12;19253:98;43797:41;43789:102;;;;-1:-1:-1;;;43789:102:0;;17502:2:1;43789:102:0;;;17484:21:1;17541:2;17521:18;;;17514:30;17580:34;17560:18;;;17553:62;-1:-1:-1;;;17631:18:1;;;17624:46;17687:19;;43789:102:0;17474:238:1;43789:102:0;43902:14;43908:7;43902:5;:14::i;57780:227::-;56948:4;-1:-1:-1;;;;;56957:6:0;56940:23;;;56932:80;;;;-1:-1:-1;;;56932:80:0;;;;;;;:::i;:::-;57055:6;-1:-1:-1;;;;;57031:30:0;:20;:18;:20::i;:::-;-1:-1:-1;;;;;57031:30:0;;57023:87;;;;-1:-1:-1;;;57023:87:0;;;;;;;:::i;:::-;57898:36:::1;57916:17;57898;:36::i;:::-;57945:54;57969:17;57988:4;57994;57945:23;:54::i;25454:239::-:0;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;12663:2:1;25589:73:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741:34;12721:18;;;12714:62;-1:-1:-1;;;12792:18:1;;;12785:39;12841:19;;25589:73:0;12635:231:1;25184:208:0;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;12252:2:1;25276:74:0;;;12234:21:1;12291:2;12271:18;;;12264:30;12330:34;12310:18;;;12303:62;-1:-1:-1;;;12381:18:1;;;12374:40;12431:19;;25276:74:0;12224:232:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;41942:103::-;41364:6;;-1:-1:-1;;;;;41364:6:0;19333:10;41511:23;41503:68;;;;-1:-1:-1;;;41503:68:0;;;;;;;:::i;:::-;42007:30:::1;42034:1;42007:18;:30::i;60702:476::-:0;17512:13;;;;;;;:48;;17548:12;;;;17547:13;17512:48;;;18315:4;9077:20;9125:8;17528:16;17504:107;;;;-1:-1:-1;;;17504:107:0;;13073:2:1;17504:107:0;;;13055:21:1;13112:2;13092:18;;;13085:30;13151:34;13131:18;;;13124:62;-1:-1:-1;;;13202:18:1;;;13195:44;13256:19;;17504:107:0;13045:236:1;17504:107:0;17624:19;17647:13;;;;;;17646:14;17671:101;;;;17706:13;:20;;-1:-1:-1;;17741:19:0;;;;;17671:101;60754:45:::1;;;;;;;;;;;;;;-1:-1:-1::0;;;60754:45:0::1;;::::0;::::1;;;;;;;;;;;;;-1:-1:-1::0;;;60754:45:0::1;;::::0;:13:::1;:45::i;:::-;60810:17;:15;:17::i;:::-;60838:16;:14;:16::i;:::-;60865:23;:21;:23::i;:::-;60899:24;:22;:24::i;:::-;61019:20;:44:::0;;-1:-1:-1;;;;;;61019:44:0::1;60966:42;61019:44:::0;;::::1;::::0;;;61086:17:::1;61074:9;:29:::0;61128:4:::1;61114:11;:18:::0;61143:27:::1;:15;59660:19:::0;;59678:1;59660:19;;;59571:127;61143:27:::1;17784:1;17802:14:::0;17798:68;;;17849:5;17833:21;;-1:-1:-1;;17833:21:0;;;60702:476;:::o;62152:147::-;62197:7;62217:18;62238:25;:15;59541:14;;59449:114;62454:61;41364:6;;-1:-1:-1;;;;;41364:6:0;19333:10;41511:23;41503:68;;;;-1:-1:-1;;;41503:68:0;;;;;;;:::i;:::-;62499:8:::1;:6;:8::i;61186:379::-:0;61279:5;61267:9;;:17;;;;:::i;:::-;61254:9;:30;;61246:67;;;;-1:-1:-1;;;61246:67:0;;9544:2:1;61246:67:0;;;9526:21:1;9583:2;9563:18;;;9556:30;-1:-1:-1;;;9602:18:1;;;9595:54;9666:18;;61246:67:0;9516:174:1;61246:67:0;61328:9;61324:234;61344:5;61341:1;:8;61324:234;;;61370:15;61388:25;:15;59541:14;;59449:114;61388:25;61370:43;;61447:11;;61436:7;:22;;61428:31;;;;;;61474:27;:15;59660:19;;59678:1;59660:19;;;59571:127;61474:27;61516:30;61526:10;61538:7;61516:9;:30::i;:::-;-1:-1:-1;61351:3:0;;;;:::i;:::-;;;;61324:234;;63227:136;63285:21;63333:7;41364:6;;-1:-1:-1;;;;;41364:6:0;;41291:87;63333:7;-1:-1:-1;;;;;63325:21:0;:29;63347:6;63325:29;;;;;;;;;;;;;;;;;;;;;;;63317:38;;;;;25929:104;25985:13;26018:7;26011:14;;;;;:::i;27623:155::-;27718:52;19333:10;27751:8;27761;27718:18;:52::i;28746:328::-;28921:41;19333:10;28954:7;28921:18;:41::i;:::-;28913:103;;;;-1:-1:-1;;;28913:103:0;;;;;;;:::i;:::-;29027:39;29041:4;29047:2;29051:7;29060:5;29027:13;:39::i;:::-;28746:328;;;;:::o;26104:334::-;30649:4;30673:16;;;:7;:16;;;;;;26177:13;;-1:-1:-1;;;;;30673:16:0;26203:76;;;;-1:-1:-1;;;26203:76:0;;15447:2:1;26203:76:0;;;15429:21:1;15486:2;15466:18;;;15459:30;15525:34;15505:18;;;15498:62;-1:-1:-1;;;15576:18:1;;;15569:45;15631:19;;26203:76:0;15419:237:1;26203:76:0;26292:21;26316:10;:8;:10::i;:::-;26292:34;;26368:1;26350:7;26344:21;:25;:86;;;;;;;;;;;;;;;;;26396:7;26405:18;:7;:16;:18::i;:::-;26379:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26344:86;26337:93;26104:334;-1:-1:-1;;;26104:334:0:o;61699:445::-;61953:20;;61997:28;;-1:-1:-1;;;61997:28:0;;-1:-1:-1;;;;;6028:32:1;;;61997:28:0;;;6010:51:1;61824:4:0;;61953:20;;;61989:49;;;;61953:20;;61997:21;;5983:18:1;;61997:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61989:49:0;;61985:93;;;62062:4;62055:11;;;;;61985:93;-1:-1:-1;;;;;27970:25:0;;;27946:4;27970:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;62097:39;62090:46;61699:445;-1:-1:-1;;;;61699:445:0:o;42200:201::-;41364:6;;-1:-1:-1;;;;;41364:6:0;19333:10;41511:23;41503:68;;;;-1:-1:-1;;;41503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42289:22:0;::::1;42281:73;;;::::0;-1:-1:-1;;;42281:73:0;;8367:2:1;42281:73:0::1;::::0;::::1;8349:21:1::0;8406:2;8386:18;;;8379:30;8445:34;8425:18;;;8418:62;-1:-1:-1;;;8496:18:1;;;8489:36;8542:19;;42281:73:0::1;8339:228:1::0;42281:73:0::1;42365:28;42384:8;42365:18;:28::i;8754:387::-:0;9077:20;9125:8;;;8754:387::o;34599:185::-;34674:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34674:29:0;-1:-1:-1;;;;;34674:29:0;;;;;;;;:24;;34728:34;34674:24;34728:25;:34::i;:::-;-1:-1:-1;;;;;34719:57:0;;;;;;;;;;;34599:185;;:::o;30878:359::-;30971:4;30673:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30673:16:0;30988:73;;;;-1:-1:-1;;;30988:73:0;;11069:2:1;30988:73:0;;;11051:21:1;11108:2;11088:18;;;11081:30;11147:34;11127:18;;;11120:62;-1:-1:-1;;;11198:18:1;;;11191:42;11250:19;;30988:73:0;11041:234:1;30988:73:0;31072:13;31088:34;31114:7;31088:25;:34::i;:::-;31072:50;;31152:5;-1:-1:-1;;;;;31141:16:0;:7;-1:-1:-1;;;;;31141:16:0;;:51;;;;31185:7;-1:-1:-1;;;;;31161:31:0;:20;31173:7;31161:11;:20::i;:::-;-1:-1:-1;;;;;31161:31:0;;31141:51;:87;;;;31196:32;31213:5;31220:7;31196:16;:32::i;33892:589::-;34062:4;-1:-1:-1;;;;;34024:42:0;:34;34050:7;34024:25;:34::i;:::-;-1:-1:-1;;;;;34024:42:0;;34016:96;;;;-1:-1:-1;;;34016:96:0;;15037:2:1;34016:96:0;;;15019:21:1;15076:2;15056:18;;;15049:30;15115:34;15095:18;;;15088:62;-1:-1:-1;;;15166:18:1;;;15159:39;15215:19;;34016:96:0;15009:231:1;34016:96:0;-1:-1:-1;;;;;34131:16:0;;34123:65;;;;-1:-1:-1;;;34123:65:0;;9897:2:1;34123:65:0;;;9879:21:1;9936:2;9916:18;;;9909:30;9975:34;9955:18;;;9948:62;-1:-1:-1;;;10026:18:1;;;10019:34;10070:19;;34123:65:0;9869:226:1;34123:65:0;34201:39;34222:4;34228:2;34232:7;34201:20;:39::i;:::-;34305:29;34322:1;34326:7;34305:8;:29::i;:::-;-1:-1:-1;;;;;34347:15:0;;;;;;:9;:15;;;;;:20;;34366:1;;34347:15;:20;;34366:1;;34347:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34378:13:0;;;;;;:9;:13;;;;;:18;;34395:1;;34378:13;:18;;34395:1;;34378:18;:::i;:::-;;;;-1:-1:-1;;34407:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34407:21:0;-1:-1:-1;;;;;34407:21:0;;;;;;;;;34446:27;;34407:16;;34446:27;;;;;;;33892:589;;;:::o;48608:153::-;48327:66;48688:65;-1:-1:-1;;;;;48688:65:0;;48608:153::o;63103:116::-;41364:6;;-1:-1:-1;;;;;41364:6:0;19333:10;41511:23;41503:68;;;;-1:-1:-1;;;41503:68:0;;;;;;;:::i;50026:1268::-;50175:25;50203:20;:18;:20::i;:::-;50175:48;;50279:37;50298:17;50279:18;:37::i;:::-;50345:1;50331:4;:11;:15;:28;;;;50350:9;50331:28;50327:107;;;50376:46;50398:17;50417:4;50376:21;:46::i;:::-;;50327:107;47979:66;50637:21;;;;50632:655;;50752:28;;-1:-1:-1;;50752:28:0;50776:4;50752:28;;;50871:64;;-1:-1:-1;;;;;6028:32:1;;50871:64:0;;;6010:51:1;50795:155:0;;50835:17;;5983:18:1;;50871:64:0;;;-1:-1:-1;;50871:64:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50871:64:0;-1:-1:-1;;;50871:64:0;;;50795:21;:155::i;:::-;-1:-1:-1;50965:29:0;;-1:-1:-1;;50965:29:0;;;51083:20;:18;:20::i;:::-;-1:-1:-1;;;;;51062:41:0;:17;-1:-1:-1;;;;;51062:41:0;;51054:101;;;;-1:-1:-1;;;51054:101:0;;7951:2:1;51054:101:0;;;7933:21:1;7990:2;7970:18;;;7963:30;8029:34;8009:18;;;8002:62;-1:-1:-1;;;8080:18:1;;;8073:45;8135:19;;51054:101:0;7923:237:1;51054:101:0;51246:29;51257:17;51246:10;:29::i;:::-;50026:1268;;;;;:::o;39814:120::-;38826:7;;;;39350:41;;;;-1:-1:-1;;;39350:41:0;;7183:2:1;39350:41:0;;;7165:21:1;7222:2;7202:18;;;7195:30;-1:-1:-1;;;7241:18:1;;;7234:50;7301:18;;39350:41:0;7155:170:1;39350:41:0;39873:7:::1;:15:::0;;-1:-1:-1;;39873:15:0::1;::::0;;39904:22:::1;19333:10:::0;39913:12:::1;39904:22;::::0;-1:-1:-1;;;;;6028:32:1;;;6010:51;;5998:2;5983:18;39904:22:0::1;;;;;;;39814:120::o:0;31579:110::-;31655:26;31665:2;31669:7;31655:26;;;;;;;;;;;;:9;:26::i;33184:371::-;33244:13;33260:34;33286:7;33260:25;:34::i;:::-;33244:50;;33307:48;33328:5;33343:1;33347:7;33307:20;:48::i;:::-;33396:29;33413:1;33417:7;33396:8;:29::i;:::-;-1:-1:-1;;;;;33438:16:0;;;;;;:9;:16;;;;;:21;;33458:1;;33438:16;:21;;33458:1;;33438:21;:::i;:::-;;;;-1:-1:-1;;33477:16:0;;;;:7;:16;;;;;;33470:23;;-1:-1:-1;;;;;;33470:23:0;;;33511:36;33485:7;;33477:16;-1:-1:-1;;;;;33511:36:0;;;;;33477:16;;33511:36;33184:371;;:::o;42561:191::-;42654:6;;;-1:-1:-1;;;;;42671:17:0;;;-1:-1:-1;;;;;;42671:17:0;;;;;;;42704:40;;42654:6;;;42671:17;42654:6;;42704:40;;42635:16;;42704:40;42561:191;;:::o;24304:224::-;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;24408:26:::1;:24;:26::i;:::-;24445:25;:23;:25::i;:::-;24481:39;24505:5;24512:7;24481:23;:39::i;38414:136::-:0;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;38478:26:::1;:24;:26::i;:::-;38515:27;:25;:27::i;40955:134::-:0;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;41018:26:::1;:24;:26::i;:::-;41055;:24;:26::i;43230:184::-:0;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;43300:26:::1;:24;:26::i;:::-;43337:25;:23;:25::i;:::-;43373:33;:31;:33::i;55996:157::-:0;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;39555:118::-;38826:7;;;;39080:9;39072:38;;;;-1:-1:-1;;;39072:38:0;;11482:2:1;39072:38:0;;;11464:21:1;11521:2;11501:18;;;11494:30;-1:-1:-1;;;11540:18:1;;;11533:46;11596:18;;39072:38:0;11454:166:1;39072:38:0;39615:7:::1;:14:::0;;-1:-1:-1;;39615:14:0::1;39625:4;39615:14;::::0;;39645:20:::1;39652:12;19333:10:::0;;19253:98;34926:315;35081:8;-1:-1:-1;;;;;35072:17:0;:5;-1:-1:-1;;;;;35072:17:0;;;35064:55;;;;-1:-1:-1;;;35064:55:0;;10302:2:1;35064:55:0;;;10284:21:1;10341:2;10321:18;;;10314:30;10380:27;10360:18;;;10353:55;10425:18;;35064:55:0;10274:175:1;35064:55:0;-1:-1:-1;;;;;35130:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35130:46:0;;;;;;;;;;35192:41;;6705::1;;;35192::0;;6678:18:1;35192:41:0;;;;;;;34926:315;;;:::o;29956:::-;30113:28;30123:4;30129:2;30133:7;30113:9;:28::i;:::-;30160:48;30183:4;30189:2;30193:7;30202:5;30160:22;:48::i;:::-;30152:111;;;;-1:-1:-1;;;30152:111:0;;;;;;;:::i;62307:139::-;62359:13;62385:53;;;;;;;;;;;;;;;;;;;62307:139;:::o;19904:723::-;19960:13;20181:10;20177:53;;-1:-1:-1;;20208:10:0;;;;;;;;;;;;-1:-1:-1;;;20208:10:0;;;;;19904:723::o;20177:53::-;20255:5;20240:12;20296:78;20303:9;;20296:78;;20329:8;;;;:::i;:::-;;-1:-1:-1;20352:10:0;;-1:-1:-1;20360:2:0;20352:10;;:::i;:::-;;;20296:78;;;20384:19;20416:6;20406:17;;;;;;-1:-1:-1;;;20406:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20406:17:0;;20384:39;;20434:154;20441:10;;20434:154;;20468:11;20478:1;20468:11;;:::i;:::-;;-1:-1:-1;20537:10:0;20545:2;20537:5;:10;:::i;:::-;20524:24;;:2;:24;:::i;:::-;20511:39;;20494:6;20501;20494:14;;;;;;-1:-1:-1;;;20494:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20494:56:0;;;;;;;;-1:-1:-1;20565:11:0;20574:2;20565:11;;:::i;:::-;;;20434:154;;62894:201;38826:7;;;;39080:9;39072:38;;;;-1:-1:-1;;;39072:38:0;;11482:2:1;39072:38:0;;;11464:21:1;11521:2;11501:18;;;11494:30;-1:-1:-1;;;11540:18:1;;;11533:46;11596:18;;39072:38:0;11454:166:1;48857:284:0;9077:20;;48931:106;;;;-1:-1:-1;;;48931:106:0;;14262:2:1;48931:106:0;;;14244:21:1;14301:2;14281:18;;;14274:30;14340:34;14320:18;;;14313:62;-1:-1:-1;;;14391:18:1;;;14384:43;14444:19;;48931:106:0;14234:235:1;48931:106:0;48327:66;49048:85;;-1:-1:-1;;;;;;49048:85:0;-1:-1:-1;;;;;49048:85:0;;;;;;;;;;48857:284::o;54563:461::-;54646:12;9077:20;;54671:88;;;;-1:-1:-1;;;54671:88:0;;16265:2:1;54671:88:0;;;16247:21:1;16304:2;16284:18;;;16277:30;16343:34;16323:18;;;16316:62;-1:-1:-1;;;16394:18:1;;;16387:36;16440:19;;54671:88:0;16237:228:1;54671:88:0;54833:12;54847:23;54874:6;-1:-1:-1;;;;;54874:19:0;54894:4;54874:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54832:67;;;;54917:99;54953:7;54962:10;54917:99;;;;;;;;;;;;;;;;;:35;:99::i;:::-;54910:106;54563:461;-1:-1:-1;;;;;54563:461:0:o;49254:155::-;49321:37;49340:17;49321:18;:37::i;:::-;49374:27;;-1:-1:-1;;;;;49374:27:0;;;;;;;;49254:155;:::o;31916:321::-;32046:18;32052:2;32056:7;32046:5;:18::i;:::-;32097:54;32128:1;32132:2;32136:7;32145:5;32097:22;:54::i;:::-;32075:154;;;;-1:-1:-1;;;32075:154:0;;;;;;;:::i;19177:70::-;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;24536:163::-;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;24650:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;24674:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;38558:97::-:0;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;38632:7:::1;:15:::0;;-1:-1:-1;;38632:15:0::1;::::0;;38558:97::o;41097:113::-;18115:13;;;;;;;18107:69;;;;-1:-1:-1;;;18107:69:0;;;;;;;:::i;:::-;41170:32:::1;19333:10:::0;41170:18:::1;:32::i;35806:821::-:0;35961:4;-1:-1:-1;;;;;35982:13:0;;9077:20;9125:8;35978:642;;36018:83;;-1:-1:-1;;;36018:83:0;;-1:-1:-1;;;;;36018:47:0;;;;;:83;;19333:10;;36080:4;;36086:7;;36095:5;;36018:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36018:83:0;;;;;;;;-1:-1:-1;;36018:83:0;;;;;;;;;;;;:::i;:::-;;;36014:551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36282:13:0;;36278:272;;36325:60;;-1:-1:-1;;;36325:60:0;;;;;;;:::i;36278:272::-;36500:6;36494:13;36485:6;36481:2;36477:15;36470:38;36014:551;-1:-1:-1;;;;;;36152:62:0;-1:-1:-1;;;36152:62:0;;-1:-1:-1;36145:69:0;;35978:642;-1:-1:-1;36604:4:0;35806:821;;;;;;:::o;14389:712::-;14539:12;14568:7;14564:530;;;-1:-1:-1;14599:10:0;14592:17;;14564:530;14713:17;;:21;14709:374;;14911:10;14905:17;14972:15;14959:10;14955:2;14951:19;14944:44;14859:148;15054:12;15047:20;;-1:-1:-1;;;15047:20:0;;;;;;;;:::i;32573:382::-;-1:-1:-1;;;;;32653:16:0;;32645:61;;;;-1:-1:-1;;;32645:61:0;;13488:2:1;32645:61:0;;;13470:21:1;;;13507:18;;;13500:30;13566:34;13546:18;;;13539:62;13618:18;;32645:61:0;13460:182:1;32645:61:0;30649:4;30673:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30673:16:0;:30;32717:58;;;;-1:-1:-1;;;32717:58:0;;8774:2:1;32717:58:0;;;8756:21:1;8813:2;8793:18;;;8786:30;8852;8832:18;;;8825:58;8900:18;;32717:58:0;8746:178:1;32717:58:0;32788:45;32817:1;32821:2;32825:7;32788:20;:45::i;:::-;-1:-1:-1;;;;;32846:13:0;;;;;;:9;:13;;;;;:18;;32863:1;;32846:13;:18;;32863:1;;32846:18;:::i;:::-;;;;-1:-1:-1;;32875:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32875:21:0;-1:-1:-1;;;;;32875:21:0;;;;;;;;32914:33;;32875:16;;;32914:33;;32875:16;;32914:33;32573:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:738:1;56:5;109:3;102:4;94:6;90:17;86:27;76:2;;131:5;124;117:20;76:2;171:6;158:20;197:18;234:2;230;227:10;224:2;;;240:18;;:::i;:::-;315:2;309:9;283:2;369:13;;-1:-1:-1;;365:22:1;;;389:2;361:31;357:40;345:53;;;413:18;;;433:22;;;410:46;407:2;;;459:18;;:::i;:::-;499:10;495:2;488:22;534:2;526:6;519:18;580:3;573:4;568:2;560:6;556:15;552:26;549:35;546:2;;;601:5;594;587:20;546:2;669;662:4;654:6;650:17;643:4;635:6;631:17;618:54;692:15;;;709:4;688:26;681:41;;;;-1:-1:-1;696:6:1;66:686;-1:-1:-1;;;66:686:1:o;757:257::-;816:6;869:2;857:9;848:7;844:23;840:32;837:2;;;890:6;882;875:22;837:2;934:9;921:23;953:31;978:5;953:31;:::i;1019:398::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1169:6;1161;1154:22;1116:2;1213:9;1200:23;1232:31;1257:5;1232:31;:::i;:::-;1282:5;-1:-1:-1;1339:2:1;1324:18;;1311:32;1352:33;1311:32;1352:33;:::i;:::-;1404:7;1394:17;;;1106:311;;;;;:::o;1422:466::-;1499:6;1507;1515;1568:2;1556:9;1547:7;1543:23;1539:32;1536:2;;;1589:6;1581;1574:22;1536:2;1633:9;1620:23;1652:31;1677:5;1652:31;:::i;:::-;1702:5;-1:-1:-1;1759:2:1;1744:18;;1731:32;1772:33;1731:32;1772:33;:::i;:::-;1526:362;;1824:7;;-1:-1:-1;;;1878:2:1;1863:18;;;;1850:32;;1526:362::o;1893:685::-;1988:6;1996;2004;2012;2065:3;2053:9;2044:7;2040:23;2036:33;2033:2;;;2087:6;2079;2072:22;2033:2;2131:9;2118:23;2150:31;2175:5;2150:31;:::i;:::-;2200:5;-1:-1:-1;2257:2:1;2242:18;;2229:32;2270:33;2229:32;2270:33;:::i;:::-;2322:7;-1:-1:-1;2376:2:1;2361:18;;2348:32;;-1:-1:-1;2431:2:1;2416:18;;2403:32;2458:18;2447:30;;2444:2;;;2495:6;2487;2480:22;2444:2;2523:49;2564:7;2555:6;2544:9;2540:22;2523:49;:::i;:::-;2513:59;;;2023:555;;;;;;;:::o;2583:436::-;2648:6;2656;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2774:9;2761:23;2793:31;2818:5;2793:31;:::i;:::-;2843:5;-1:-1:-1;2900:2:1;2885:18;;2872:32;2942:15;;2935:23;2923:36;;2913:2;;2978:6;2970;2963:22;3024:475;3101:6;3109;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3227:9;3214:23;3246:31;3271:5;3246:31;:::i;:::-;3296:5;-1:-1:-1;3352:2:1;3337:18;;3324:32;3379:18;3368:30;;3365:2;;;3416:6;3408;3401:22;3365:2;3444:49;3485:7;3476:6;3465:9;3461:22;3444:49;:::i;:::-;3434:59;;;3120:379;;;;;:::o;3504:325::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:2;;;3654:6;3646;3639:22;3601:2;3698:9;3685:23;3717:31;3742:5;3717:31;:::i;:::-;3767:5;3819:2;3804:18;;;;3791:32;;-1:-1:-1;;;3591:238:1:o;3834:255::-;3892:6;3945:2;3933:9;3924:7;3920:23;3916:32;3913:2;;;3966:6;3958;3951:22;3913:2;4010:9;3997:23;4029:30;4053:5;4029:30;:::i;4094:259::-;4163:6;4216:2;4204:9;4195:7;4191:23;4187:32;4184:2;;;4237:6;4229;4222:22;4184:2;4274:9;4268:16;4293:30;4317:5;4293:30;:::i;4358:290::-;4457:6;4510:2;4498:9;4489:7;4485:23;4481:32;4478:2;;;4531:6;4523;4516:22;4478:2;4568:9;4562:16;4587:31;4612:5;4587:31;:::i;4653:190::-;4712:6;4765:2;4753:9;4744:7;4740:23;4736:32;4733:2;;;4786:6;4778;4771:22;4733:2;-1:-1:-1;4814:23:1;;4723:120;-1:-1:-1;4723:120:1:o;4848:257::-;4889:3;4927:5;4921:12;4954:6;4949:3;4942:19;4970:63;5026:6;5019:4;5014:3;5010:14;5003:4;4996:5;4992:16;4970:63;:::i;:::-;5087:2;5066:15;-1:-1:-1;;5062:29:1;5053:39;;;;5094:4;5049:50;;4897:208;-1:-1:-1;;4897:208:1:o;5110:274::-;5239:3;5277:6;5271:13;5293:53;5339:6;5334:3;5327:4;5319:6;5315:17;5293:53;:::i;:::-;5362:16;;;;;5247:137;-1:-1:-1;;5247:137:1:o;5389:470::-;5568:3;5606:6;5600:13;5622:53;5668:6;5663:3;5656:4;5648:6;5644:17;5622:53;:::i;:::-;5738:13;;5697:16;;;;5760:57;5738:13;5697:16;5794:4;5782:17;;5760:57;:::i;:::-;5833:20;;5576:283;-1:-1:-1;;;;5576:283:1:o;6072:488::-;-1:-1:-1;;;;;6341:15:1;;;6323:34;;6393:15;;6388:2;6373:18;;6366:43;6440:2;6425:18;;6418:34;;;6488:3;6483:2;6468:18;;6461:31;;;6266:4;;6509:45;;6534:19;;6526:6;6509:45;:::i;:::-;6501:53;6275:285;-1:-1:-1;;;;;;6275:285:1:o;6757:219::-;6906:2;6895:9;6888:21;6869:4;6926:44;6966:2;6955:9;6951:18;6943:6;6926:44;:::i;7330:414::-;7532:2;7514:21;;;7571:2;7551:18;;;7544:30;7610:34;7605:2;7590:18;;7583:62;-1:-1:-1;;;7676:2:1;7661:18;;7654:48;7734:3;7719:19;;7504:240::o;8929:408::-;9131:2;9113:21;;;9170:2;9150:18;;;9143:30;9209:34;9204:2;9189:18;;9182:62;-1:-1:-1;;;9275:2:1;9260:18;;9253:42;9327:3;9312:19;;9103:234::o;10454:408::-;10656:2;10638:21;;;10695:2;10675:18;;;10668:30;10734:34;10729:2;10714:18;;10707:62;-1:-1:-1;;;10800:2:1;10785:18;;10778:42;10852:3;10837:19;;10628:234::o;14474:356::-;14676:2;14658:21;;;14695:18;;;14688:30;14754:34;14749:2;14734:18;;14727:62;14821:2;14806:18;;14648:182::o;16470:413::-;16672:2;16654:21;;;16711:2;16691:18;;;16684:30;16750:34;16745:2;16730:18;;16723:62;-1:-1:-1;;;16816:2:1;16801:18;;16794:47;16873:3;16858:19;;16644:239::o;16888:407::-;17090:2;17072:21;;;17129:2;17109:18;;;17102:30;17168:34;17163:2;17148:18;;17141:62;-1:-1:-1;;;17234:2:1;17219:18;;17212:41;17285:3;17270:19;;17062:233::o;17899:128::-;17939:3;17970:1;17966:6;17963:1;17960:13;17957:2;;;17976:18;;:::i;:::-;-1:-1:-1;18012:9:1;;17947:80::o;18032:120::-;18072:1;18098;18088:2;;18103:18;;:::i;:::-;-1:-1:-1;18137:9:1;;18078:74::o;18157:168::-;18197:7;18263:1;18259;18255:6;18251:14;18248:1;18245:21;18240:1;18233:9;18226:17;18222:45;18219:2;;;18270:18;;:::i;:::-;-1:-1:-1;18310:9:1;;18209:116::o;18330:125::-;18370:4;18398:1;18395;18392:8;18389:2;;;18403:18;;:::i;:::-;-1:-1:-1;18440:9:1;;18379:76::o;18460:258::-;18532:1;18542:113;18556:6;18553:1;18550:13;18542:113;;;18632:11;;;18626:18;18613:11;;;18606:39;18578:2;18571:10;18542:113;;;18673:6;18670:1;18667:13;18664:2;;;-1:-1:-1;;18708:1:1;18690:16;;18683:27;18513:205::o;18723:380::-;18802:1;18798:12;;;;18845;;;18866:2;;18920:4;18912:6;18908:17;18898:27;;18866:2;18973;18965:6;18962:14;18942:18;18939:38;18936:2;;;19019:10;19014:3;19010:20;19007:1;19000:31;19054:4;19051:1;19044:15;19082:4;19079:1;19072:15;18936:2;;18778:325;;;:::o;19108:135::-;19147:3;-1:-1:-1;;19168:17:1;;19165:2;;;19188:18;;:::i;:::-;-1:-1:-1;19235:1:1;19224:13;;19155:88::o;19248:112::-;19280:1;19306;19296:2;;19311:18;;:::i;:::-;-1:-1:-1;19345:9:1;;19286:74::o;19365:127::-;19426:10;19421:3;19417:20;19414:1;19407:31;19457:4;19454:1;19447:15;19481:4;19478:1;19471:15;19497:127;19558:10;19553:3;19549:20;19546:1;19539:31;19589:4;19586:1;19579:15;19613:4;19610:1;19603:15;19629:127;19690:10;19685:3;19681:20;19678:1;19671:31;19721:4;19718:1;19711:15;19745:4;19742:1;19735:15;19761:131;-1:-1:-1;;;;;19836:31:1;;19826:42;;19816:2;;19882:1;19879;19872:12;19897:131;-1:-1:-1;;;;;;19971:32:1;;19961:43;;19951:2;;20018:1;20015;20008:12
Swarm Source
ipfs://cb26308149db23585740de2f3c515f6966c1723c950f5a99254cd2720030f201
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.