ERC-721
Overview
Max Total Supply
5,942 BAYC
Holders
3,887
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BAYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredApeYogaClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-27 */ /** ,-----. ,--. ,---. ,--. ,--. ,-----.,--. ,--. | |) /_ ,---. ,--.--. ,---. ,-| | / O \ ,---. ,---. \ `.' /,---. ,---. ,--,--. ' .--./| |,--.,--.| |-. | .-. \| .-. || .--'| .-. :' .-. | | .-. || .-. || .-. : '. /| .-. || .-. |' ,-. | | | | || || || .-. ' | '--' /' '-' '| | \ --.\ `-' | | | | || '-' '\ --. | | ' '-' '' '-' '\ '-' | ' '--'\| |' '' '| `-' | `------' `---' `--' `----' `---' `--' `--'| |-' `----' `--' `---' .`- / `--`--' `-----'`--' `----' `---' `--' `---' */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.7; contract BoredApeYogaClub is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.0069 ether; uint256 public whiteListCost = 0 ; uint16 public maxSupply = 10000; uint8 public maxMintAmountPerTx = 11; uint8 public maxFreeMintAmountPerWallet = 1; bool public WLpaused = true; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerPublicAddress; mapping (address => bool) public isWhitelisted; constructor() ERC721A("Bored Ape Yoga Club", "BAYC") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Excedes max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setWLCost(uint256 _cost) external onlyOwner { whiteListCost = _cost; delete _cost; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = false; } } function whitelistMint(uint8 _mintAmount) external payable { uint8 nft = NFTPerWLAddress[msg.sender]; require(isWhitelisted[msg.sender], "You are not whitelisted"); require (nft + _mintAmount <= maxMintAmountPerTx, "Exceeds max limit per address"); require(!WLpaused, "Whitelist minting is over!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= whiteListCost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerWLAddress[msg.sender] =nft + _mintAmount; delete _mintAmount; delete nft; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000140565b506618838370f34000600c556000600d55600e805466ffffffffffffff1916650101010b27101790553480156200005e57600080fd5b50604080518082018252601381527f426f7265642041706520596f676120436c7562000000000000000000000000006020808301918252835180850190945260048452634241594360e01b908401528151919291620000c09160029162000140565b508051620000d690600390602084019062000140565b50506000805550620000e833620000ee565b62000223565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620001e6565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600181811c90821680620001fb57607f821691505b602082108114156200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b61290580620002336000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610780578063e94053c7146107ae578063e985e9c5146107de578063eef440af14610827578063f2fde38b1461083c578063f8bf51721461085c57600080fd5b8063a475b5dd146106bf578063aa062290146106e0578063b88d4fde14610700578063c87b56dd14610720578063cffb6e2014610740578063d1d192131461076057600080fd5b80638e07484c116101135780638e07484c146106145780638f65fe0a146106345780639257e0441461065457806394354fd01461066a57806395d89b411461068a578063a22cb4651461069f57600080fd5b806370a082311461057f578063715018a61461059f5780637ec4a659146105b45780637f6e9093146105d45780638da5cb5b146105f657600080fd5b806337a66d85116101f35780634d9c1848116101ac5780634d9c1848146104b457806359bf5dbb146104d45780635c975abb1461051657806360e85cde146105395780636352211e1461054c5780636ecd23061461056c57600080fd5b806337a66d85146104055780633af32abf1461041a5780633bd649681461044a5780633ccfd60b1461045f57806342842e0e1461047457806344a0d68a1461049457600080fd5b8063095ea7b311610245578063095ea7b3146103485780631067fcc71461036857806313faede61461038857806318160ddd146103ac57806323b872dd146103c55780632f6f98e1146103e557600080fd5b806301ffc9a71461028257806306421c2f146102b757806306fdde03146102d9578063081812fc146102fb578063093cfa6314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123fa565b61087d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461247c565b6108cf565b005b3480156102e557600080fd5b506102ee61091a565b6040516102ae9190612666565b34801561030757600080fd5b5061031b6103163660046124b3565b6109ac565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d76109f0565b34801561035457600080fd5b506102d761036336600461238f565b610a3d565b34801561037457600080fd5b506102d7610383366004612434565b610acb565b34801561039457600080fd5b5061039e600c5481565b6040519081526020016102ae565b3480156103b857600080fd5b506001546000540361039e565b3480156103d157600080fd5b506102d76103e036600461229c565b610b0c565b3480156103f157600080fd5b506102d7610400366004612497565b610b17565b34801561041157600080fd5b506102d7610bba565b34801561042657600080fd5b506102a261043536600461224e565b60116020526000908152604090205460ff1681565b34801561045657600080fd5b506102d7610c19565b34801561046b57600080fd5b506102d7610c67565b34801561048057600080fd5b506102d761048f36600461229c565b610cc0565b3480156104a057600080fd5b506102d76104af3660046124b3565b610cdb565b3480156104c057600080fd5b506102d76104cf3660046124cc565b610d0a565b3480156104e057600080fd5b506105046104ef36600461224e565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102ae565b34801561052257600080fd5b50600e546102a29065010000000000900460ff1681565b6102d76105473660046124cc565b610d54565b34801561055857600080fd5b5061031b6105673660046124b3565b610f7f565b6102d761057a3660046124cc565b610f91565b34801561058b57600080fd5b5061039e61059a36600461224e565b6111d3565b3480156105ab57600080fd5b506102d7611221565b3480156105c057600080fd5b506102d76105cf366004612434565b611257565b3480156105e057600080fd5b50600e546102a290640100000000900460ff1681565b34801561060257600080fd5b506008546001600160a01b031661031b565b34801561062057600080fd5b506102d761062f3660046123b9565b611294565b34801561064057600080fd5b506102d761064f3660046123b9565b611336565b34801561066057600080fd5b5061039e600d5481565b34801561067657600080fd5b50600e546105049062010000900460ff1681565b34801561069657600080fd5b506102ee6113d8565b3480156106ab57600080fd5b506102d76106ba366004612353565b6113e7565b3480156106cb57600080fd5b50600e546102a290600160301b900460ff1681565b3480156106ec57600080fd5b506102d76106fb3660046124cc565b61147d565b34801561070c57600080fd5b506102d761071b3660046122d8565b6114c5565b34801561072c57600080fd5b506102ee61073b3660046124b3565b611516565b34801561074c57600080fd5b506102d761075b3660046124e7565b611687565b34801561076c57600080fd5b506102d761077b3660046124b3565b611787565b34801561078c57600080fd5b50600e5461079b9061ffff1681565b60405161ffff90911681526020016102ae565b3480156107ba57600080fd5b506105046107c936600461224e565b60106020526000908152604090205460ff1681565b3480156107ea57600080fd5b506102a26107f9366004612269565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083357600080fd5b506102ee6117b6565b34801561084857600080fd5b506102d761085736600461224e565b611844565b34801561086857600080fd5b50600e54610504906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108ae57506001600160e01b03198216635b5e139f60e01b145b806108c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612679565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610929906127d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610955906127d7565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b60006109b7826118df565b6109d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016108f990612679565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a4882610f7f565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b81336107f9565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac683838361190a565b505050565b6008546001600160a01b03163314610af55760405162461bcd60e51b81526004016108f990612679565b8051610b0890600b9060208401906120b6565b5050565b610ac6838383611966565b6008546001600160a01b03163314610b415760405162461bcd60e51b81526004016108f990612679565b6000610b506001546000540390565b600e5490915061ffff16610b6484836126db565b61ffff161115610bac5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108f9565b610ac6828461ffff16611b54565b6008546001600160a01b03163314610be45760405162461bcd60e51b81526004016108f990612679565b600e805464ff000000001960ff650100000000008084049190911615021665ffff000000001990911617640100000000179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016108f990612679565b600e805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314610c915760405162461bcd60e51b81526004016108f990612679565b6040514790339082156108fc029083906000818181858888f19350505050158015610b08573d6000803e3d6000fd5b610ac6838383604051806020016040528060008152506114c5565b6008546001600160a01b03163314610d055760405162461bcd60e51b81526004016108f990612679565b600c55565b6008546001600160a01b03163314610d345760405162461bcd60e51b81526004016108f990612679565b600e805460ff90921663010000000263ff00000019909216919091179055565b336000908152600f602090815260408083205460119092529091205460ff9182169116610dc35760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c697374656400000000000000000060448201526064016108f9565b600e5462010000900460ff16610dd98383612719565b60ff161115610e2a5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d6974202070657220616464726573730060448201526064016108f9565b600e54640100000000900460ff1615610e855760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108f9565b600e5460ff6301000000909104811690821610610ed1578160ff16600d54610ead9190612752565b341015610ecc5760405162461bcd60e51b81526004016108f9906126ae565b610f43565b6000610edd8284612719565b600e5490915060ff630100000090910481169082161115610f4157600e54610f0f906301000000900460ff1682612788565b90508060ff16600d54610f229190612752565b341015610f415760405162461bcd60e51b81526004016108f9906126ae565b505b610f50338360ff16611b54565b610f5a8282612719565b336000908152600f60205260409020805460ff191660ff929092169190911790555050565b6000610f8a82611b6e565b5192915050565b6000610fa06001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff1690610fcd908516846126db565b61ffff1611156110155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108f9565b600e5462010000900460ff1661102b8285612719565b60ff16111561107c5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016108f9565b600e5465010000000000900460ff16156110d85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f9565b600e5460ff6301000000909104811690821610611124578260ff16600c546111009190612752565b34101561111f5760405162461bcd60e51b81526004016108f9906126ae565b611196565b60006111308285612719565b600e5490915060ff63010000009091048116908216111561119457600e54611162906301000000900460ff1682612788565b90508060ff16600c546111759190612752565b3410156111945760405162461bcd60e51b81526004016108f9906126ae565b505b6111a3338460ff16611b54565b6111ad8184612719565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166111fc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461124b5760405162461bcd60e51b81526004016108f990612679565b6112556000611c88565b565b6008546001600160a01b031633146112815760405162461bcd60e51b81526004016108f990612679565b8051610b089060099060208401906120b6565b6008546001600160a01b031633146112be5760405162461bcd60e51b81526004016108f990612679565b60005b60ff8116821115610ac65760016011600085858560ff168181106112e7576112e761288d565b90506020020160208101906112fc919061224e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061132e8161282d565b9150506112c1565b6008546001600160a01b031633146113605760405162461bcd60e51b81526004016108f990612679565b60005b60ff8116821115610ac65760006011600085858560ff168181106113895761138961288d565b905060200201602081019061139e919061224e565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113d08161282d565b915050611363565b606060038054610929906127d7565b6001600160a01b0382163314156114115760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114a75760405162461bcd60e51b81526004016108f990612679565b600e805460ff909216620100000262ff000019909216919091179055565b6114d0848484611966565b6001600160a01b0383163b151580156114f257506114f084848484611cda565b155b15611510576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611521826118df565b6115855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f9565b600e54600160301b900460ff1661162857600b80546115a3906127d7565b80601f01602080910402602001604051908101604052809291908181526020018280546115cf906127d7565b801561161c5780601f106115f15761010080835404028352916020019161161c565b820191906000526020600020905b8154815290600101906020018083116115ff57829003601f168201915b50505050509050919050565b6000611632611dd2565b905060008151116116525760405180602001604052806000815250611680565b8061165c84611de1565b600a60405160200161167093929190612565565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116b15760405162461bcd60e51b81526004016108f990612679565b60006116c06001546000540390565b905060006116d18360ff8716612752565b600e5490915061ffff908116906116eb9083908516612701565b111561172f5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108f9565b60005b8381101561177f5761176d85858381811061174f5761174f61288d565b9050602002016020810190611764919061224e565b8760ff16611b54565b8061177781612812565b915050611732565b505050505050565b6008546001600160a01b031633146117b15760405162461bcd60e51b81526004016108f990612679565b600d55565b600b80546117c3906127d7565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef906127d7565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505081565b6008546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108f990612679565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b6118dc81611c88565b50565b60008054821080156108c9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061197182611b6e565b9050836001600160a01b031681600001516001600160a01b0316146119a85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119c657506119c685336107f9565b806119e15750336119d6846109ac565b6001600160a01b0316145b905080611a0157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a2857604051633a954ecd60e21b815260040160405180910390fd5b611a346000848761190a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b08576000548214611b0857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b08828260405180602001604052806000815250611ede565b604080516060810182526000808252602082018190529181019190915281600054811015611c6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c6d5780516001600160a01b031615611c04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c68579392505050565b611c04565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d0f903390899088908890600401612629565b602060405180830381600087803b158015611d2957600080fd5b505af1925050508015611d59575060408051601f3d908101601f19168201909252611d5691810190612417565b60015b611db4573d808015611d87576040519150601f19603f3d011682016040523d82523d6000602084013e611d8c565b606091505b508051611dac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610929906127d7565b606081611e055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2f5780611e1981612812565b9150611e289050600a8361273e565b9150611e09565b6000816001600160401b03811115611e4957611e496128a3565b6040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611dca57611e88600183612771565b9150611e95600a8661284d565b611ea0906030612701565b60f81b818381518110611eb557611eb561288d565b60200101906001600160f81b031916908160001a905350611ed7600a8661273e565b9450611e77565b610ac683838360016000546001600160a01b038516611f0f57604051622e076360e81b815260040160405180910390fd5b83611f2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fde57506001600160a01b0387163b15155b15612067575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461202f6000888480600101955088611cda565b61204c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fe457826000541461206257600080fd5b6120ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612068575b50600055611b4d565b8280546120c2906127d7565b90600052602060002090601f0160209004810192826120e4576000855561212a565b82601f106120fd57805160ff191683800117855561212a565b8280016001018555821561212a579182015b8281111561212a57825182559160200191906001019061210f565b5061213692915061213a565b5090565b5b80821115612136576000815560010161213b565b60006001600160401b0380841115612169576121696128a3565b604051601f8501601f19908116603f01168101908282118183101715612191576121916128a3565b816040528093508581528686860111156121aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b60008083601f8401126121f257600080fd5b5081356001600160401b0381111561220957600080fd5b6020830191508360208260051b850101111561222457600080fd5b9250929050565b803561ffff811681146121db57600080fd5b803560ff811681146121db57600080fd5b60006020828403121561226057600080fd5b611680826121c4565b6000806040838503121561227c57600080fd5b612285836121c4565b9150612293602084016121c4565b90509250929050565b6000806000606084860312156122b157600080fd5b6122ba846121c4565b92506122c8602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122ee57600080fd5b6122f7856121c4565b9350612305602086016121c4565b92506040850135915060608501356001600160401b0381111561232757600080fd5b8501601f8101871361233857600080fd5b6123478782356020840161214f565b91505092959194509250565b6000806040838503121561236657600080fd5b61236f836121c4565b91506020830135801515811461238457600080fd5b809150509250929050565b600080604083850312156123a257600080fd5b6123ab836121c4565b946020939093013593505050565b600080602083850312156123cc57600080fd5b82356001600160401b038111156123e257600080fd5b6123ee858286016121e0565b90969095509350505050565b60006020828403121561240c57600080fd5b8135611680816128b9565b60006020828403121561242957600080fd5b8151611680816128b9565b60006020828403121561244657600080fd5b81356001600160401b0381111561245c57600080fd5b8201601f8101841361246d57600080fd5b611dca8482356020840161214f565b60006020828403121561248e57600080fd5b6116808261222b565b600080604083850312156124aa57600080fd5b6122858361222b565b6000602082840312156124c557600080fd5b5035919050565b6000602082840312156124de57600080fd5b6116808261223d565b6000806000604084860312156124fc57600080fd5b6125058461223d565b925060208401356001600160401b0381111561252057600080fd5b61252c868287016121e0565b9497909650939450505050565b600081518084526125518160208601602086016127ab565b601f01601f19169290920160200192915050565b6000845160206125788285838a016127ab565b85519184019161258b8184848a016127ab565b8554920191600090600181811c90808316806125a857607f831692505b8583108114156125c657634e487b7160e01b85526022600452602485fd5b8080156125da57600181146125eb57612618565b60ff19851688528388019550612618565b60008b81526020902060005b858110156126105781548a8201529084019088016125f7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061265c90830184612539565b9695505050505050565b6020815260006116806020830184612539565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156126f8576126f8612861565b01949350505050565b6000821982111561271457612714612861565b500190565b600060ff821660ff84168060ff0382111561273657612736612861565b019392505050565b60008261274d5761274d612877565b500490565b600081600019048311821515161561276c5761276c612861565b500290565b60008282101561278357612783612861565b500390565b600060ff821660ff8416808210156127a2576127a2612861565b90039392505050565b60005b838110156127c65781810151838201526020016127ae565b838111156115105750506000910152565b600181811c908216806127eb57607f821691505b6020821081141561280c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282657612826612861565b5060010190565b600060ff821660ff81141561284457612844612861565b60010192915050565b60008261285c5761285c612877565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118dc57600080fdfea2646970667358221220cc047a7e1f7bfab481605e57778d0785c7306aab3b2a7d8eb7fa86790245085564736f6c63430008070033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610780578063e94053c7146107ae578063e985e9c5146107de578063eef440af14610827578063f2fde38b1461083c578063f8bf51721461085c57600080fd5b8063a475b5dd146106bf578063aa062290146106e0578063b88d4fde14610700578063c87b56dd14610720578063cffb6e2014610740578063d1d192131461076057600080fd5b80638e07484c116101135780638e07484c146106145780638f65fe0a146106345780639257e0441461065457806394354fd01461066a57806395d89b411461068a578063a22cb4651461069f57600080fd5b806370a082311461057f578063715018a61461059f5780637ec4a659146105b45780637f6e9093146105d45780638da5cb5b146105f657600080fd5b806337a66d85116101f35780634d9c1848116101ac5780634d9c1848146104b457806359bf5dbb146104d45780635c975abb1461051657806360e85cde146105395780636352211e1461054c5780636ecd23061461056c57600080fd5b806337a66d85146104055780633af32abf1461041a5780633bd649681461044a5780633ccfd60b1461045f57806342842e0e1461047457806344a0d68a1461049457600080fd5b8063095ea7b311610245578063095ea7b3146103485780631067fcc71461036857806313faede61461038857806318160ddd146103ac57806323b872dd146103c55780632f6f98e1146103e557600080fd5b806301ffc9a71461028257806306421c2f146102b757806306fdde03146102d9578063081812fc146102fb578063093cfa6314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123fa565b61087d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461247c565b6108cf565b005b3480156102e557600080fd5b506102ee61091a565b6040516102ae9190612666565b34801561030757600080fd5b5061031b6103163660046124b3565b6109ac565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d76109f0565b34801561035457600080fd5b506102d761036336600461238f565b610a3d565b34801561037457600080fd5b506102d7610383366004612434565b610acb565b34801561039457600080fd5b5061039e600c5481565b6040519081526020016102ae565b3480156103b857600080fd5b506001546000540361039e565b3480156103d157600080fd5b506102d76103e036600461229c565b610b0c565b3480156103f157600080fd5b506102d7610400366004612497565b610b17565b34801561041157600080fd5b506102d7610bba565b34801561042657600080fd5b506102a261043536600461224e565b60116020526000908152604090205460ff1681565b34801561045657600080fd5b506102d7610c19565b34801561046b57600080fd5b506102d7610c67565b34801561048057600080fd5b506102d761048f36600461229c565b610cc0565b3480156104a057600080fd5b506102d76104af3660046124b3565b610cdb565b3480156104c057600080fd5b506102d76104cf3660046124cc565b610d0a565b3480156104e057600080fd5b506105046104ef36600461224e565b600f6020526000908152604090205460ff1681565b60405160ff90911681526020016102ae565b34801561052257600080fd5b50600e546102a29065010000000000900460ff1681565b6102d76105473660046124cc565b610d54565b34801561055857600080fd5b5061031b6105673660046124b3565b610f7f565b6102d761057a3660046124cc565b610f91565b34801561058b57600080fd5b5061039e61059a36600461224e565b6111d3565b3480156105ab57600080fd5b506102d7611221565b3480156105c057600080fd5b506102d76105cf366004612434565b611257565b3480156105e057600080fd5b50600e546102a290640100000000900460ff1681565b34801561060257600080fd5b506008546001600160a01b031661031b565b34801561062057600080fd5b506102d761062f3660046123b9565b611294565b34801561064057600080fd5b506102d761064f3660046123b9565b611336565b34801561066057600080fd5b5061039e600d5481565b34801561067657600080fd5b50600e546105049062010000900460ff1681565b34801561069657600080fd5b506102ee6113d8565b3480156106ab57600080fd5b506102d76106ba366004612353565b6113e7565b3480156106cb57600080fd5b50600e546102a290600160301b900460ff1681565b3480156106ec57600080fd5b506102d76106fb3660046124cc565b61147d565b34801561070c57600080fd5b506102d761071b3660046122d8565b6114c5565b34801561072c57600080fd5b506102ee61073b3660046124b3565b611516565b34801561074c57600080fd5b506102d761075b3660046124e7565b611687565b34801561076c57600080fd5b506102d761077b3660046124b3565b611787565b34801561078c57600080fd5b50600e5461079b9061ffff1681565b60405161ffff90911681526020016102ae565b3480156107ba57600080fd5b506105046107c936600461224e565b60106020526000908152604090205460ff1681565b3480156107ea57600080fd5b506102a26107f9366004612269565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561083357600080fd5b506102ee6117b6565b34801561084857600080fd5b506102d761085736600461224e565b611844565b34801561086857600080fd5b50600e54610504906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806108ae57506001600160e01b03198216635b5e139f60e01b145b806108c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612679565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610929906127d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610955906127d7565b80156109a25780601f10610977576101008083540402835291602001916109a2565b820191906000526020600020905b81548152906001019060200180831161098557829003601f168201915b5050505050905090565b60006109b7826118df565b6109d4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610a1a5760405162461bcd60e51b81526004016108f990612679565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b6000610a4882610f7f565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a9d5750610a9b81336107f9565b155b15610abb576040516367d9dca160e11b815260040160405180910390fd5b610ac683838361190a565b505050565b6008546001600160a01b03163314610af55760405162461bcd60e51b81526004016108f990612679565b8051610b0890600b9060208401906120b6565b5050565b610ac6838383611966565b6008546001600160a01b03163314610b415760405162461bcd60e51b81526004016108f990612679565b6000610b506001546000540390565b600e5490915061ffff16610b6484836126db565b61ffff161115610bac5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108f9565b610ac6828461ffff16611b54565b6008546001600160a01b03163314610be45760405162461bcd60e51b81526004016108f990612679565b600e805464ff000000001960ff650100000000008084049190911615021665ffff000000001990911617640100000000179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016108f990612679565b600e805466ff000000000000198116600160301b9182900460ff1615909102179055565b6008546001600160a01b03163314610c915760405162461bcd60e51b81526004016108f990612679565b6040514790339082156108fc029083906000818181858888f19350505050158015610b08573d6000803e3d6000fd5b610ac6838383604051806020016040528060008152506114c5565b6008546001600160a01b03163314610d055760405162461bcd60e51b81526004016108f990612679565b600c55565b6008546001600160a01b03163314610d345760405162461bcd60e51b81526004016108f990612679565b600e805460ff90921663010000000263ff00000019909216919091179055565b336000908152600f602090815260408083205460119092529091205460ff9182169116610dc35760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c697374656400000000000000000060448201526064016108f9565b600e5462010000900460ff16610dd98383612719565b60ff161115610e2a5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820206c696d6974202070657220616464726573730060448201526064016108f9565b600e54640100000000900460ff1615610e855760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108f9565b600e5460ff6301000000909104811690821610610ed1578160ff16600d54610ead9190612752565b341015610ecc5760405162461bcd60e51b81526004016108f9906126ae565b610f43565b6000610edd8284612719565b600e5490915060ff630100000090910481169082161115610f4157600e54610f0f906301000000900460ff1682612788565b90508060ff16600d54610f229190612752565b341015610f415760405162461bcd60e51b81526004016108f9906126ae565b505b610f50338360ff16611b54565b610f5a8282612719565b336000908152600f60205260409020805460ff191660ff929092169190911790555050565b6000610f8a82611b6e565b5192915050565b6000610fa06001546000540390565b33600090815260106020526040902054600e5491925060ff9081169161ffff1690610fcd908516846126db565b61ffff1611156110155760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016108f9565b600e5462010000900460ff1661102b8285612719565b60ff16111561107c5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016108f9565b600e5465010000000000900460ff16156110d85760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f9565b600e5460ff6301000000909104811690821610611124578260ff16600c546111009190612752565b34101561111f5760405162461bcd60e51b81526004016108f9906126ae565b611196565b60006111308285612719565b600e5490915060ff63010000009091048116908216111561119457600e54611162906301000000900460ff1682612788565b90508060ff16600c546111759190612752565b3410156111945760405162461bcd60e51b81526004016108f9906126ae565b505b6111a3338460ff16611b54565b6111ad8184612719565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166111fc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461124b5760405162461bcd60e51b81526004016108f990612679565b6112556000611c88565b565b6008546001600160a01b031633146112815760405162461bcd60e51b81526004016108f990612679565b8051610b089060099060208401906120b6565b6008546001600160a01b031633146112be5760405162461bcd60e51b81526004016108f990612679565b60005b60ff8116821115610ac65760016011600085858560ff168181106112e7576112e761288d565b90506020020160208101906112fc919061224e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061132e8161282d565b9150506112c1565b6008546001600160a01b031633146113605760405162461bcd60e51b81526004016108f990612679565b60005b60ff8116821115610ac65760006011600085858560ff168181106113895761138961288d565b905060200201602081019061139e919061224e565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113d08161282d565b915050611363565b606060038054610929906127d7565b6001600160a01b0382163314156114115760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114a75760405162461bcd60e51b81526004016108f990612679565b600e805460ff909216620100000262ff000019909216919091179055565b6114d0848484611966565b6001600160a01b0383163b151580156114f257506114f084848484611cda565b155b15611510576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611521826118df565b6115855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f9565b600e54600160301b900460ff1661162857600b80546115a3906127d7565b80601f01602080910402602001604051908101604052809291908181526020018280546115cf906127d7565b801561161c5780601f106115f15761010080835404028352916020019161161c565b820191906000526020600020905b8154815290600101906020018083116115ff57829003601f168201915b50505050509050919050565b6000611632611dd2565b905060008151116116525760405180602001604052806000815250611680565b8061165c84611de1565b600a60405160200161167093929190612565565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116b15760405162461bcd60e51b81526004016108f990612679565b60006116c06001546000540390565b905060006116d18360ff8716612752565b600e5490915061ffff908116906116eb9083908516612701565b111561172f5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108f9565b60005b8381101561177f5761176d85858381811061174f5761174f61288d565b9050602002016020810190611764919061224e565b8760ff16611b54565b8061177781612812565b915050611732565b505050505050565b6008546001600160a01b031633146117b15760405162461bcd60e51b81526004016108f990612679565b600d55565b600b80546117c3906127d7565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef906127d7565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505081565b6008546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108f990612679565b6001600160a01b0381166118d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b6118dc81611c88565b50565b60008054821080156108c9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061197182611b6e565b9050836001600160a01b031681600001516001600160a01b0316146119a85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119c657506119c685336107f9565b806119e15750336119d6846109ac565b6001600160a01b0316145b905080611a0157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a2857604051633a954ecd60e21b815260040160405180910390fd5b611a346000848761190a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b08576000548214611b0857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b08828260405180602001604052806000815250611ede565b604080516060810182526000808252602082018190529181019190915281600054811015611c6f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c6d5780516001600160a01b031615611c04579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c68579392505050565b611c04565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d0f903390899088908890600401612629565b602060405180830381600087803b158015611d2957600080fd5b505af1925050508015611d59575060408051601f3d908101601f19168201909252611d5691810190612417565b60015b611db4573d808015611d87576040519150601f19603f3d011682016040523d82523d6000602084013e611d8c565b606091505b508051611dac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610929906127d7565b606081611e055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e2f5780611e1981612812565b9150611e289050600a8361273e565b9150611e09565b6000816001600160401b03811115611e4957611e496128a3565b6040519080825280601f01601f191660200182016040528015611e73576020820181803683370190505b5090505b8415611dca57611e88600183612771565b9150611e95600a8661284d565b611ea0906030612701565b60f81b818381518110611eb557611eb561288d565b60200101906001600160f81b031916908160001a905350611ed7600a8661273e565b9450611e77565b610ac683838360016000546001600160a01b038516611f0f57604051622e076360e81b815260040160405180910390fd5b83611f2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611fde57506001600160a01b0387163b15155b15612067575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461202f6000888480600101955088611cda565b61204c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611fe457826000541461206257600080fd5b6120ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612068575b50600055611b4d565b8280546120c2906127d7565b90600052602060002090601f0160209004810192826120e4576000855561212a565b82601f106120fd57805160ff191683800117855561212a565b8280016001018555821561212a579182015b8281111561212a57825182559160200191906001019061210f565b5061213692915061213a565b5090565b5b80821115612136576000815560010161213b565b60006001600160401b0380841115612169576121696128a3565b604051601f8501601f19908116603f01168101908282118183101715612191576121916128a3565b816040528093508581528686860111156121aa57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b60008083601f8401126121f257600080fd5b5081356001600160401b0381111561220957600080fd5b6020830191508360208260051b850101111561222457600080fd5b9250929050565b803561ffff811681146121db57600080fd5b803560ff811681146121db57600080fd5b60006020828403121561226057600080fd5b611680826121c4565b6000806040838503121561227c57600080fd5b612285836121c4565b9150612293602084016121c4565b90509250929050565b6000806000606084860312156122b157600080fd5b6122ba846121c4565b92506122c8602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122ee57600080fd5b6122f7856121c4565b9350612305602086016121c4565b92506040850135915060608501356001600160401b0381111561232757600080fd5b8501601f8101871361233857600080fd5b6123478782356020840161214f565b91505092959194509250565b6000806040838503121561236657600080fd5b61236f836121c4565b91506020830135801515811461238457600080fd5b809150509250929050565b600080604083850312156123a257600080fd5b6123ab836121c4565b946020939093013593505050565b600080602083850312156123cc57600080fd5b82356001600160401b038111156123e257600080fd5b6123ee858286016121e0565b90969095509350505050565b60006020828403121561240c57600080fd5b8135611680816128b9565b60006020828403121561242957600080fd5b8151611680816128b9565b60006020828403121561244657600080fd5b81356001600160401b0381111561245c57600080fd5b8201601f8101841361246d57600080fd5b611dca8482356020840161214f565b60006020828403121561248e57600080fd5b6116808261222b565b600080604083850312156124aa57600080fd5b6122858361222b565b6000602082840312156124c557600080fd5b5035919050565b6000602082840312156124de57600080fd5b6116808261223d565b6000806000604084860312156124fc57600080fd5b6125058461223d565b925060208401356001600160401b0381111561252057600080fd5b61252c868287016121e0565b9497909650939450505050565b600081518084526125518160208601602086016127ab565b601f01601f19169290920160200192915050565b6000845160206125788285838a016127ab565b85519184019161258b8184848a016127ab565b8554920191600090600181811c90808316806125a857607f831692505b8583108114156125c657634e487b7160e01b85526022600452602485fd5b8080156125da57600181146125eb57612618565b60ff19851688528388019550612618565b60008b81526020902060005b858110156126105781548a8201529084019088016125f7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061265c90830184612539565b9695505050505050565b6020815260006116806020830184612539565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600061ffff8083168185168083038211156126f8576126f8612861565b01949350505050565b6000821982111561271457612714612861565b500190565b600060ff821660ff84168060ff0382111561273657612736612861565b019392505050565b60008261274d5761274d612877565b500490565b600081600019048311821515161561276c5761276c612861565b500290565b60008282101561278357612783612861565b500390565b600060ff821660ff8416808210156127a2576127a2612861565b90039392505050565b60005b838110156127c65781810151838201526020016127ae565b838111156115105750506000910152565b600181811c908216806127eb57607f821691505b6020821081141561280c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282657612826612861565b5060010190565b600060ff821660ff81141561284457612844612861565b60010192915050565b60008261285c5761285c612877565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146118dc57600080fdfea2646970667358221220cc047a7e1f7bfab481605e57778d0785c7306aab3b2a7d8eb7fa86790245085564736f6c63430008070033
Deployed Bytecode Sourcemap
45063:5815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25387:305;;;;;;;;;;-1:-1:-1;25387:305:0;;;;;:::i;:::-;;:::i;:::-;;;8993:14:1;;8986:22;8968:41;;8956:2;8941:18;25387:305:0;;;;;;;;47679:97;;;;;;;;;;-1:-1:-1;47679:97:0;;;;;:::i;:::-;;:::i;:::-;;28500:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30003:204::-;;;;;;;;;;-1:-1:-1;30003:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8291:32:1;;;8273:51;;8261:2;8246:18;30003:204:0;8127:203:1;48289:75:0;;;;;;;;;;;;;:::i;29566:371::-;;;;;;;;;;-1:-1:-1;29566:371:0;;;;;:::i;:::-;;:::i;50144:102::-;;;;;;;;;;-1:-1:-1;50144:102:0;;;;;:::i;:::-;;:::i;45259:34::-;;;;;;;;;;;;;;;;;;;13587:25:1;;;13575:2;13560:18;45259:34:0;13441:177:1;24636:303:0;;;;;;;;;;-1:-1:-1;24890:12:0;;24680:7;24874:13;:28;24636:303;;30868:170;;;;;;;;;;-1:-1:-1;30868:170:0;;;;;:::i;:::-;;:::i;46864:326::-;;;;;;;;;;-1:-1:-1;46864:326:0;;;;;:::i;:::-;;:::i;50254:91::-;;;;;;;;;;;;;:::i;45737:46::-;;;;;;;;;;-1:-1:-1;45737:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50432:70;;;;;;;;;;;;;:::i;50626:144::-;;;;;;;;;;;;;:::i;31109:185::-;;;;;;;;;;-1:-1:-1;31109:185:0;;;;;:::i;:::-;;:::i;50351:76::-;;;;;;;;;;-1:-1:-1;50351:76:0;;;;;:::i;:::-;;:::i;48483:134::-;;;;;;;;;;-1:-1:-1;48483:134:0;;;;;:::i;:::-;;:::i;45624:49::-;;;;;;;;;;-1:-1:-1;45624:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13795:4:1;13783:17;;;13765:36;;13753:2;13738:18;45624:49:0;13623:184:1;45564:25:0;;;;;;;;;;-1:-1:-1;45564:25:0;;;;;;;;;;;49045:986;;;;;;:::i;:::-;;:::i;28308:125::-;;;;;;;;;;-1:-1:-1;28308:125:0;;;;;:::i;:::-;;:::i;45880:976::-;;;;;;:::i;:::-;;:::i;25756:206::-;;;;;;;;;;-1:-1:-1;25756:206:0;;;;;:::i;:::-;;:::i;44209:103::-;;;;;;;;;;;;;:::i;50037:102::-;;;;;;;;;;-1:-1:-1;50037:102:0;;;;;:::i;:::-;;:::i;45532:27::-;;;;;;;;;;-1:-1:-1;45532:27:0;;;;;;;;;;;43557:87;;;;;;;;;;-1:-1:-1;43630:6:0;;-1:-1:-1;;;;;43630:6:0;43557:87;;48629:200;;;;;;;;;;-1:-1:-1;48629:200:0;;;;;:::i;:::-;;:::i;48837:204::-;;;;;;;;;;-1:-1:-1;48837:204:0;;;;;:::i;:::-;;:::i;45298:32::-;;;;;;;;;;;;;;;;45378:36;;;;;;;;;;-1:-1:-1;45378:36:0;;;;;;;;;;;28669:104;;;;;;;;;;;;;:::i;30279:287::-;;;;;;;;;;-1:-1:-1;30279:287:0;;;;;:::i;:::-;;:::i;45594:25::-;;;;;;;;;;-1:-1:-1;45594:25:0;;;;-1:-1:-1;;;45594:25:0;;;;;;50508:107;;;;;;;;;;-1:-1:-1;50508:107:0;;;;;:::i;:::-;;:::i;31365:369::-;;;;;;;;;;-1:-1:-1;31365:369:0;;;;;:::i;:::-;;:::i;47791:490::-;;;;;;;;;;-1:-1:-1;47791:490:0;;;;;:::i;:::-;;:::i;47196:472::-;;;;;;;;;;-1:-1:-1;47196:472:0;;;;;:::i;:::-;;:::i;48368:106::-;;;;;;;;;;-1:-1:-1;48368:106:0;;;;;:::i;:::-;;:::i;45342:31::-;;;;;;;;;;-1:-1:-1;45342:31:0;;;;;;;;;;;13422:6:1;13410:19;;;13392:38;;13380:2;13365:18;45342:31:0;13248:188:1;45679:53:0;;;;;;;;;;-1:-1:-1;45679:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30637:164;;;;;;;;;;-1:-1:-1;30637:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30758:25:0;;;30734:4;30758:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30637:164;45219:23;;;;;;;;;;;;;:::i;44467:201::-;;;;;;;;;;-1:-1:-1;44467:201:0;;;;;:::i;:::-;;:::i;45421:43::-;;;;;;;;;;-1:-1:-1;45421:43:0;;;;;;;;;;;25387:305;25489:4;-1:-1:-1;;;;;;25526:40:0;;-1:-1:-1;;;25526:40:0;;:105;;-1:-1:-1;;;;;;;25583:48:0;;-1:-1:-1;;;25583:48:0;25526:105;:158;;;-1:-1:-1;;;;;;;;;;15421:40:0;;;25648:36;25506:178;25387:305;-1:-1:-1;;25387:305:0:o;47679:97::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;;;;;;;;;47748:9:::1;:22:::0;;-1:-1:-1;;47748:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47679:97::o;28500:100::-;28554:13;28587:5;28580:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28500:100;:::o;30003:204::-;30071:7;30096:16;30104:7;30096;:16::i;:::-;30091:64;;30121:34;;-1:-1:-1;;;30121:34:0;;;;;;;;;;;30091:64;-1:-1:-1;30175:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30175:24:0;;30003:204::o;48289:75::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;48350:8:::1;::::0;;-1:-1:-1;;48338:20:0;::::1;48350:8:::0;;;;::::1;;;48349:9;48338:20:::0;;::::1;;::::0;;48289:75::o;29566:371::-;29639:13;29655:24;29671:7;29655:15;:24::i;:::-;29639:40;;29700:5;-1:-1:-1;;;;;29694:11:0;:2;-1:-1:-1;;;;;29694:11:0;;29690:48;;;29714:24;;-1:-1:-1;;;29714:24:0;;;;;;;;;;;29690:48;3862:10;-1:-1:-1;;;;;29755:21:0;;;;;;:63;;-1:-1:-1;29781:37:0;29798:5;3862:10;30637:164;:::i;29781:37::-;29780:38;29755:63;29751:138;;;29842:35;;-1:-1:-1;;;29842:35:0;;;;;;;;;;;29751:138;29901:28;29910:2;29914:7;29923:5;29901:8;:28::i;:::-;29628:309;29566:371;;:::o;50144:102::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50218:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50144:102:::0;:::o;30868:170::-;31002:28;31012:4;31018:2;31022:7;31002:9;:28::i;46864:326::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;46947:18:::1;46975:13;24890:12:::0;;24680:7;24874:13;:28;;24636:303;46975:13:::1;47033:9;::::0;46947:42;;-1:-1:-1;47033:9:0::1;;47004:25;47018:11:::0;46947:42;47004:25:::1;:::i;:::-;:38;;;;46996:70;;;::::0;-1:-1:-1;;;46996:70:0;;9446:2:1;46996:70:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;-1:-1:-1;;;9504:18:1;;;9497:49;9563:18;;46996:70:0::1;9244:343:1::0;46996:70:0::1;47074:34;47084:9;47096:11;47074:34;;:9;:34::i;50254:91::-:0;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50311:6:::1;::::0;;-1:-1:-1;;50311:6:0::1;::::0;;;::::1;::::0;;;::::1;50310:7;50301:16;50324:15:::0;-1:-1:-1;;50324:15:0;;;;;::::1;::::0;;50254:91::o;50432:70::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50491:6:::1;::::0;;-1:-1:-1;;50481:16:0;::::1;-1:-1:-1::0;;;50491:6:0;;;::::1;;;50490:7;50481:16:::0;;::::1;;::::0;;50432:70::o;50626:144::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50715:39:::1;::::0;50686:21:::1;::::0;50723:10:::1;::::0;50715:39;::::1;;;::::0;50686:21;;50670:13:::1;50715:39:::0;50670:13;50715:39;50686:21;50723:10;50715:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31109:185:::0;31247:39;31264:4;31270:2;31274:7;31247:39;;;;;;;;;;;;:16;:39::i;50351:76::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50407:4:::1;:12:::0;50351:76::o;48483:134::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;48557:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48557:35:0;;::::1;::::0;;;::::1;::::0;;48483:134::o;49045:986::-;49159:10;49131:9;49143:27;;;:15;:27;;;;;;;;;49188:13;:25;;;;;;;49143:27;;;;;49188:25;49180:62;;;;-1:-1:-1;;;49180:62:0;;10556:2:1;49180:62:0;;;10538:21:1;10595:2;10575:18;;;10568:30;10634:25;10614:18;;;10607:53;10677:18;;49180:62:0;10354:347:1;49180:62:0;49284:18;;;;;;;49263:17;49269:11;49263:3;:17;:::i;:::-;:39;;;;49254:84;;;;-1:-1:-1;;;49254:84:0;;12742:2:1;49254:84:0;;;12724:21:1;12781:2;12761:18;;;12754:30;12820:33;12800:18;;;12793:61;12871:18;;49254:84:0;12540:355:1;49254:84:0;49366:8;;;;;;;49365:9;49357:48;;;;-1:-1:-1;;;49357:48:0;;10201:2:1;49357:48:0;;;10183:21:1;10240:2;10220:18;;;10213:30;10279:28;10259:18;;;10252:56;10325:18;;49357:48:0;9999:350:1;49357:48:0;49427:26;;;;;;;;;49420:33;;;;49417:435;;49504:11;49488:27;;:13;;:27;;;;:::i;:::-;49475:9;:40;;49467:72;;;;-1:-1:-1;;;49467:72:0;;;;;;;:::i;:::-;49417:435;;;49570:16;49589:17;49603:3;49589:11;:17;:::i;:::-;49633:26;;49570:36;;-1:-1:-1;49633:26:0;;;;;;;49620:39;;;;49617:208;;;49706:26;;49693:39;;49706:26;;;;;49693:10;:39;:::i;:::-;49680:52;;49780:10;49764:26;;:13;;:26;;;;:::i;:::-;49751:9;:39;;49743:71;;;;-1:-1:-1;;;49743:71:0;;;;;;;:::i;:::-;49558:294;49417:435;49873:35;49883:10;49896:11;49873:35;;:9;:35::i;:::-;49946:17;49952:11;49946:3;:17;:::i;:::-;49933:10;49917:27;;;;:15;:27;;;;;:46;;-1:-1:-1;;49917:46:0;;;;;;;;;;;;-1:-1:-1;;49045:986:0:o;28308:125::-;28372:7;28399:21;28412:7;28399:12;:21::i;:::-;:26;;28308:125;-1:-1:-1;;28308:125:0:o;45880:976::-;45939:18;45967:13;24890:12;;24680:7;24874:13;:28;;24636:303;45967:13;46021:10;45989:9;46001:31;;;:19;:31;;;;;;46076:9;;45939:42;;-1:-1:-1;46001:31:0;;;;;46076:9;;;46047:25;;;;45939:42;46047:25;:::i;:::-;:38;;;;46039:70;;;;-1:-1:-1;;;46039:70:0;;12037:2:1;46039:70:0;;;12019:21:1;12076:2;12056:18;;;12049:30;-1:-1:-1;;;12095:18:1;;;12088:49;12154:18;;46039:70:0;11835:343:1;46039:70:0;46145:18;;;;;;;46124:17;46138:3;46124:11;:17;:::i;:::-;:39;;;;46116:80;;;;-1:-1:-1;;;46116:80:0;;12385:2:1;46116:80:0;;;12367:21:1;12424:2;12404:18;;;12397:30;12463;12443:18;;;12436:58;12511:18;;46116:80:0;12183:352:1;46116:80:0;46214:6;;;;;;;46213:7;46205:43;;;;-1:-1:-1;;;46205:43:0;;11269:2:1;46205:43:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:25;11327:18;;;11320:53;11390:18;;46205:43:0;11067:347:1;46205:43:0;46273:26;;;;;;;;;46266:33;;;;46263:417;;46341:11;46334:18;;:4;;:18;;;;:::i;:::-;46321:9;:31;;46313:63;;;;-1:-1:-1;;;46313:63:0;;;;;;;:::i;:::-;46263:417;;;46407:16;46426:17;46440:3;46426:11;:17;:::i;:::-;46470:26;;46407:36;;-1:-1:-1;46470:26:0;;;;;;;46457:39;;;;46454:199;;;46543:26;;46530:39;;46543:26;;;;;46530:10;:39;:::i;:::-;46517:52;;46608:10;46601:17;;:4;;:17;;;;:::i;:::-;46588:9;:30;;46580:62;;;;-1:-1:-1;;;46580:62:0;;;;;;;:::i;:::-;46395:285;46263:417;46696:35;46706:10;46719:11;46696:35;;:9;:35::i;:::-;46774:17;46788:3;46774:11;:17;:::i;:::-;46760:10;46740:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46740:51:0;;;;;;;;;;;;-1:-1:-1;;;45880:976:0:o;25756:206::-;25820:7;-1:-1:-1;;;;;25844:19:0;;25840:60;;25872:28;;-1:-1:-1;;;25872:28:0;;;;;;;;;;;25840:60;-1:-1:-1;;;;;;25926:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25926:27:0;;25756:206::o;44209:103::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;44274:30:::1;44301:1;44274:18;:30::i;:::-;44209:103::o:0;50037:102::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50111:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48629:200::-:0;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;48722:7:::1;48718:101;48735:18;::::0;::::1;::::0;-1:-1:-1;48718:101:0::1;;;48803:4;48775:13;:25;48789:7;;48797:1;48789:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48775:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48775:25:0;:32;;-1:-1:-1;;48775:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48755:3;::::1;::::0;::::1;:::i;:::-;;;;48718:101;;48837:204:::0;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;48935:7:::1;48931:103;48948:18;::::0;::::1;::::0;-1:-1:-1;48931:103:0::1;;;49017:5;48989:13;:25;49003:7;;49011:1;49003:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48989:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48989:25:0;:33;;-1:-1:-1;;48989:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48968:3;::::1;::::0;::::1;:::i;:::-;;;;48931:103;;28669:104:::0;28725:13;28758:7;28751:14;;;;;:::i;30279:287::-;-1:-1:-1;;;;;30378:24:0;;3862:10;30378:24;30374:54;;;30411:17;;-1:-1:-1;;;30411:17:0;;;;;;;;;;;30374:54;3862:10;30441:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30441:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30441:53:0;;;;;;;;;;30510:48;;8968:41:1;;;30441:42:0;;3862:10;30510:48;;8941:18:1;30510:48:0;;;;;;;30279:287;;:::o;50508:107::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;50580:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50580:27:0;;::::1;::::0;;;::::1;::::0;;50508:107::o;31365:369::-;31532:28;31542:4;31548:2;31552:7;31532:9;:28::i;:::-;-1:-1:-1;;;;;31575:13:0;;5524:19;:23;;31575:76;;;;;31595:56;31626:4;31632:2;31636:7;31645:5;31595:30;:56::i;:::-;31594:57;31575:76;31571:156;;;31675:40;;-1:-1:-1;;;31675:40:0;;;;;;;;;;;31571:156;31365:369;;;;:::o;47791:490::-;47890:13;47931:17;47939:8;47931:7;:17::i;:::-;47915:98;;;;-1:-1:-1;;;47915:98:0;;11621:2:1;47915:98:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:34;11679:18;;;11672:62;-1:-1:-1;;;11750:18:1;;;11743:45;11805:19;;47915:98:0;11419:411:1;47915:98:0;48031:6;;-1:-1:-1;;;48031:6:0;;;;48026:50;;48063:9;48056:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47791:490;;;:::o;48026:50::-;48090:28;48121:10;:8;:10::i;:::-;48090:41;;48176:1;48151:14;48145:28;:32;:130;;;;;;;;;;;;;;;;;48213:14;48229:19;:8;:17;:19::i;:::-;48250:9;48196:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48145:130;48138:137;47791:490;-1:-1:-1;;;47791:490:0:o;47196:472::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;47295:18:::1;47323:13;24890:12:::0;;24680:7;24874:13;:28;;24636:303;47323:13:::1;47295:42:::0;-1:-1:-1;47345:16:0::1;47366:36;47386:9:::0;47366:36:::1;::::0;::::1;;:::i;:::-;47446:9;::::0;47345:57;;-1:-1:-1;47446:9:0::1;::::0;;::::1;::::0;47417:25:::1;::::0;47345:57;;47417:25;::::1;;:::i;:::-;:38;;47409:70;;;::::0;-1:-1:-1;;;47409:70:0;;9446:2:1;47409:70:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;-1:-1:-1;;;9504:18:1;;;9497:49;9563:18;;47409:70:0::1;9244:343:1::0;47409:70:0::1;47492:9;47487:116;47507:20:::0;;::::1;47487:116;;;47549:42;47559:9;;47569:1;47559:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47573:17;47549:42;;:9;:42::i;:::-;47529:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47487:116;;;-1:-1:-1::0;;;;;;47196:472:0:o;48368:106::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;48428:13:::1;:21:::0;48368:106::o;45219:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44467:201::-;43630:6;;-1:-1:-1;;;;;43630:6:0;3862:10;43777:23;43769:69;;;;-1:-1:-1;;;43769:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44556:22:0;::::1;44548:73;;;::::0;-1:-1:-1;;;44548:73:0;;9794:2:1;44548:73:0::1;::::0;::::1;9776:21:1::0;9833:2;9813:18;;;9806:30;9872:34;9852:18;;;9845:62;-1:-1:-1;;;9923:18:1;;;9916:36;9969:19;;44548:73:0::1;9592:402:1::0;44548:73:0::1;44632:28;44651:8;44632:18;:28::i;:::-;44467:201:::0;:::o;31989:187::-;32046:4;32110:13;;32100:7;:23;32070:98;;;;-1:-1:-1;;32141:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32141:27:0;;;;32140:28;;31989:187::o;40159:196::-;40274:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40274:29:0;-1:-1:-1;;;;;40274:29:0;;;;;;;;;40319:28;;40274:24;;40319:28;;;;;;;40159:196;;;:::o;35102:2130::-;35217:35;35255:21;35268:7;35255:12;:21::i;:::-;35217:59;;35315:4;-1:-1:-1;;;;;35293:26:0;:13;:18;;;-1:-1:-1;;;;;35293:26:0;;35289:67;;35328:28;;-1:-1:-1;;;35328:28:0;;;;;;;;;;;35289:67;35369:22;3862:10;-1:-1:-1;;;;;35395:20:0;;;;:73;;-1:-1:-1;35432:36:0;35449:4;3862:10;30637:164;:::i;35432:36::-;35395:126;;;-1:-1:-1;3862:10:0;35485:20;35497:7;35485:11;:20::i;:::-;-1:-1:-1;;;;;35485:36:0;;35395:126;35369:153;;35540:17;35535:66;;35566:35;;-1:-1:-1;;;35566:35:0;;;;;;;;;;;35535:66;-1:-1:-1;;;;;35616:16:0;;35612:52;;35641:23;;-1:-1:-1;;;35641:23:0;;;;;;;;;;;35612:52;35785:35;35802:1;35806:7;35815:4;35785:8;:35::i;:::-;-1:-1:-1;;;;;36116:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36116:31:0;;;-1:-1:-1;;;;;36116:31:0;;;-1:-1:-1;;36116:31:0;;;;;;;36162:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36162:29:0;;;;;;;;;;;36242:20;;;:11;:20;;;;;;36277:18;;-1:-1:-1;;;;;;36310:49:0;;;;-1:-1:-1;;;36343:15:0;36310:49;;;;;;;;;;36633:11;;36693:24;;;;;36736:13;;36242:20;;36693:24;;36736:13;36732:384;;36946:13;;36931:11;:28;36927:174;;36984:20;;37053:28;;;;-1:-1:-1;;;;;37027:54:0;-1:-1:-1;;;37027:54:0;-1:-1:-1;;;;;;37027:54:0;;;-1:-1:-1;;;;;36984:20:0;;37027:54;;;;36927:174;36091:1036;;;37163:7;37159:2;-1:-1:-1;;;;;37144:27:0;37153:4;-1:-1:-1;;;;;37144:27:0;;;;;;;;;;;37182:42;35206:2026;;35102:2130;;;:::o;32184:104::-;32253:27;32263:2;32267:8;32253:27;;;;;;;;;;;;:9;:27::i;27137:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27248:7:0;27331:13;;27324:4;:20;27293:886;;;27365:31;27399:17;;;:11;:17;;;;;;;;;27365:51;;;;;;;;;-1:-1:-1;;;;;27365:51:0;;;;-1:-1:-1;;;27365:51:0;;-1:-1:-1;;;;;27365:51:0;;;;;;;;-1:-1:-1;;;27365:51:0;;;;;;;;;;;;;;27435:729;;27485:14;;-1:-1:-1;;;;;27485:28:0;;27481:101;;27549:9;27137:1109;-1:-1:-1;;;27137:1109:0:o;27481:101::-;-1:-1:-1;;;27924:6:0;27969:17;;;;:11;:17;;;;;;;;;27957:29;;;;;;;;;-1:-1:-1;;;;;27957:29:0;;;;;-1:-1:-1;;;27957:29:0;;-1:-1:-1;;;;;27957:29:0;;;;;;;;-1:-1:-1;;;27957:29:0;;;;;;;;;;;;;28017:28;28013:109;;28085:9;27137:1109;-1:-1:-1;;;27137:1109:0:o;28013:109::-;27884:261;;;27346:833;27293:886;28207:31;;-1:-1:-1;;;28207:31:0;;;;;;;;;;;44828:191;44921:6;;;-1:-1:-1;;;;;44938:17:0;;;-1:-1:-1;;;;;;44938:17:0;;;;;;;44971:40;;44921:6;;;44938:17;44921:6;;44971:40;;44902:16;;44971:40;44891:128;44828:191;:::o;40847:667::-;41031:72;;-1:-1:-1;;;41031:72:0;;41010:4;;-1:-1:-1;;;;;41031:36:0;;;;;:72;;3862:10;;41082:4;;41088:7;;41097:5;;41031:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41031:72:0;;;;;;;;-1:-1:-1;;41031:72:0;;;;;;;;;;;;:::i;:::-;;;41027:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41265:13:0;;41261:235;;41311:40;;-1:-1:-1;;;41311:40:0;;;;;;;;;;;41261:235;41454:6;41448:13;41439:6;41435:2;41431:15;41424:38;41027:480;-1:-1:-1;;;;;;41150:55:0;-1:-1:-1;;;41150:55:0;;-1:-1:-1;41027:480:0;40847:667;;;;;;:::o;50778:97::-;50831:13;50860:9;50853:16;;;;;:::i;1344:723::-;1400:13;1621:10;1617:53;;-1:-1:-1;;1648:10:0;;;;;;;;;;;;-1:-1:-1;;;1648:10:0;;;;;1344:723::o;1617:53::-;1695:5;1680:12;1736:78;1743:9;;1736:78;;1769:8;;;;:::i;:::-;;-1:-1:-1;1792:10:0;;-1:-1:-1;1800:2:0;1792:10;;:::i;:::-;;;1736:78;;;1824:19;1856:6;-1:-1:-1;;;;;1846:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1846:17:0;;1824:39;;1874:154;1881:10;;1874:154;;1908:11;1918:1;1908:11;;:::i;:::-;;-1:-1:-1;1977:10:0;1985:2;1977:5;:10;:::i;:::-;1964:24;;:2;:24;:::i;:::-;1951:39;;1934:6;1941;1934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1934:56:0;;;;;;;;-1:-1:-1;2005:11:0;2014:2;2005:11;;:::i;:::-;;;1874:154;;32651:163;32774:32;32780:2;32784:8;32794:5;32801:4;33212:20;33235:13;-1:-1:-1;;;;;33263:16:0;;33259:48;;33288:19;;-1:-1:-1;;;33288:19:0;;;;;;;;;;;33259:48;33322:13;33318:44;;33344:18;;-1:-1:-1;;;33344:18:0;;;;;;;;;;;33318:44;-1:-1:-1;;;;;33713:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33772:49:0;;-1:-1:-1;;;;;33713:44:0;;;;;;;33772:49;;;;-1:-1:-1;;33713:44:0;;;;;;33772:49;;;;;;;;;;;;;;;;33838:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33888:66:0;;;;-1:-1:-1;;;33938:15:0;33888:66;;;;;;;;;;33838:25;34035:23;;;34079:4;:23;;;;-1:-1:-1;;;;;;34087:13:0;;5524:19;:23;;34087:15;34075:641;;;34123:314;34154:38;;34179:12;;-1:-1:-1;;;;;34154:38:0;;;34171:1;;34154:38;;34171:1;;34154:38;34220:69;34259:1;34263:2;34267:14;;;;;;34283:5;34220:30;:69::i;:::-;34215:174;;34325:40;;-1:-1:-1;;;34325:40:0;;;;;;;;;;;34215:174;34432:3;34416:12;:19;;34123:314;;34518:12;34501:13;;:29;34497:43;;34532:8;;;34497:43;34075:641;;;34581:120;34612:40;;34637:14;;;;;-1:-1:-1;;;;;34612:40:0;;;34629:1;;34612:40;;34629:1;;34612:40;34696:3;34680:12;:19;;34581:120;;34075:641;-1:-1:-1;34730:13:0;:28;34780:60;31365:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:159::-;1267:20;;1327:6;1316:18;;1306:29;;1296:57;;1349:1;1346;1339:12;1364:156;1430:20;;1490:4;1479:16;;1469:27;;1459:55;;1510:1;1507;1500:12;1525:186;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1676:29;1695:9;1676:29;:::i;1716:260::-;1784:6;1792;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1884:29;1903:9;1884:29;:::i;:::-;1874:39;;1932:38;1966:2;1955:9;1951:18;1932:38;:::i;:::-;1922:48;;1716:260;;;;;:::o;1981:328::-;2058:6;2066;2074;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2166:29;2185:9;2166:29;:::i;:::-;2156:39;;2214:38;2248:2;2237:9;2233:18;2214:38;:::i;:::-;2204:48;;2299:2;2288:9;2284:18;2271:32;2261:42;;1981:328;;;;;:::o;2314:666::-;2409:6;2417;2425;2433;2486:3;2474:9;2465:7;2461:23;2457:33;2454:53;;;2503:1;2500;2493:12;2454:53;2526:29;2545:9;2526:29;:::i;:::-;2516:39;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2659:2;2648:9;2644:18;2631:32;2621:42;;2714:2;2703:9;2699:18;2686:32;-1:-1:-1;;;;;2733:6:1;2730:30;2727:50;;;2773:1;2770;2763:12;2727:50;2796:22;;2849:4;2841:13;;2837:27;-1:-1:-1;2827:55:1;;2878:1;2875;2868:12;2827:55;2901:73;2966:7;2961:2;2948:16;2943:2;2939;2935:11;2901:73;:::i;:::-;2891:83;;;2314:666;;;;;;;:::o;2985:347::-;3050:6;3058;3111:2;3099:9;3090:7;3086:23;3082:32;3079:52;;;3127:1;3124;3117:12;3079:52;3150:29;3169:9;3150:29;:::i;:::-;3140:39;;3229:2;3218:9;3214:18;3201:32;3276:5;3269:13;3262:21;3255:5;3252:32;3242:60;;3298:1;3295;3288:12;3242:60;3321:5;3311:15;;;2985:347;;;;;:::o;3337:254::-;3405:6;3413;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3505:29;3524:9;3505:29;:::i;:::-;3495:39;3581:2;3566:18;;;;3553:32;;-1:-1:-1;;;3337:254:1:o;3596:437::-;3682:6;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;-1:-1:-1;;;;;3824:6:1;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3903:70;3965:7;3956:6;3945:9;3941:22;3903:70;:::i;:::-;3992:8;;3877:96;;-1:-1:-1;3596:437:1;-1:-1:-1;;;;3596:437:1:o;4038:245::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:30;4247:5;4223:30;:::i;4288:249::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4458:9;4452:16;4477:30;4501:5;4477:30;:::i;4542:450::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4720:9;4707:23;-1:-1:-1;;;;;4745:6:1;4742:30;4739:50;;;4785:1;4782;4775:12;4739:50;4808:22;;4861:4;4853:13;;4849:27;-1:-1:-1;4839:55:1;;4890:1;4887;4880:12;4839:55;4913:73;4978:7;4973:2;4960:16;4955:2;4951;4947:11;4913:73;:::i;4997:184::-;5055:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5147:28;5165:9;5147:28;:::i;5186:258::-;5253:6;5261;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5353:28;5371:9;5353:28;:::i;5449:180::-;5508:6;5561:2;5549:9;5540:7;5536:23;5532:32;5529:52;;;5577:1;5574;5567:12;5529:52;-1:-1:-1;5600:23:1;;5449:180;-1:-1:-1;5449:180:1:o;5634:182::-;5691:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:52;;;5760:1;5757;5750:12;5712:52;5783:27;5800:9;5783:27;:::i;5821:507::-;5914:6;5922;5930;5983:2;5971:9;5962:7;5958:23;5954:32;5951:52;;;5999:1;5996;5989:12;5951:52;6022:27;6039:9;6022:27;:::i;:::-;6012:37;;6100:2;6089:9;6085:18;6072:32;-1:-1:-1;;;;;6119:6:1;6116:30;6113:50;;;6159:1;6156;6149:12;6113:50;6198:70;6260:7;6251:6;6240:9;6236:22;6198:70;:::i;:::-;5821:507;;6287:8;;-1:-1:-1;6172:96:1;;-1:-1:-1;;;;5821:507:1:o;6333:257::-;6374:3;6412:5;6406:12;6439:6;6434:3;6427:19;6455:63;6511:6;6504:4;6499:3;6495:14;6488:4;6481:5;6477:16;6455:63;:::i;:::-;6572:2;6551:15;-1:-1:-1;;6547:29:1;6538:39;;;;6579:4;6534:50;;6333:257;-1:-1:-1;;6333:257:1:o;6595:1527::-;6819:3;6857:6;6851:13;6883:4;6896:51;6940:6;6935:3;6930:2;6922:6;6918:15;6896:51;:::i;:::-;7010:13;;6969:16;;;;7032:55;7010:13;6969:16;7054:15;;;7032:55;:::i;:::-;7176:13;;7109:20;;;7149:1;;7236;7258:18;;;;7311;;;;7338:93;;7416:4;7406:8;7402:19;7390:31;;7338:93;7479:2;7469:8;7466:16;7446:18;7443:40;7440:167;;;-1:-1:-1;;;7506:33:1;;7562:4;7559:1;7552:15;7592:4;7513:3;7580:17;7440:167;7623:18;7650:110;;;;7774:1;7769:328;;;;7616:481;;7650:110;-1:-1:-1;;7685:24:1;;7671:39;;7730:20;;;;-1:-1:-1;7650:110:1;;7769:328;13885:1;13878:14;;;13922:4;13909:18;;7864:1;7878:169;7892:8;7889:1;7886:15;7878:169;;;7974:14;;7959:13;;;7952:37;8017:16;;;;7909:10;;7878:169;;;7882:3;;8078:8;8071:5;8067:20;8060:27;;7616:481;-1:-1:-1;8113:3:1;;6595:1527;-1:-1:-1;;;;;;;;;;;6595:1527:1:o;8335:488::-;-1:-1:-1;;;;;8604:15:1;;;8586:34;;8656:15;;8651:2;8636:18;;8629:43;8703:2;8688:18;;8681:34;;;8751:3;8746:2;8731:18;;8724:31;;;8529:4;;8772:45;;8797:19;;8789:6;8772:45;:::i;:::-;8764:53;8335:488;-1:-1:-1;;;;;;8335:488:1:o;9020:219::-;9169:2;9158:9;9151:21;9132:4;9189:44;9229:2;9218:9;9214:18;9206:6;9189:44;:::i;10706:356::-;10908:2;10890:21;;;10927:18;;;10920:30;10986:34;10981:2;10966:18;;10959:62;11053:2;11038:18;;10706:356::o;12900:343::-;13102:2;13084:21;;;13141:2;13121:18;;;13114:30;-1:-1:-1;;;13175:2:1;13160:18;;13153:49;13234:2;13219:18;;12900:343::o;13938:224::-;13977:3;14005:6;14038:2;14035:1;14031:10;14068:2;14065:1;14061:10;14099:3;14095:2;14091:12;14086:3;14083:21;14080:47;;;14107:18;;:::i;:::-;14143:13;;13938:224;-1:-1:-1;;;;13938:224:1:o;14167:128::-;14207:3;14238:1;14234:6;14231:1;14228:13;14225:39;;;14244:18;;:::i;:::-;-1:-1:-1;14280:9:1;;14167:128::o;14300:204::-;14338:3;14374:4;14371:1;14367:12;14406:4;14403:1;14399:12;14441:3;14435:4;14431:14;14426:3;14423:23;14420:49;;;14449:18;;:::i;:::-;14485:13;;14300:204;-1:-1:-1;;;14300:204:1:o;14509:120::-;14549:1;14575;14565:35;;14580:18;;:::i;:::-;-1:-1:-1;14614:9:1;;14509:120::o;14634:168::-;14674:7;14740:1;14736;14732:6;14728:14;14725:1;14722:21;14717:1;14710:9;14703:17;14699:45;14696:71;;;14747:18;;:::i;:::-;-1:-1:-1;14787:9:1;;14634:168::o;14807:125::-;14847:4;14875:1;14872;14869:8;14866:34;;;14880:18;;:::i;:::-;-1:-1:-1;14917:9:1;;14807:125::o;14937:195::-;14975:4;15012;15009:1;15005:12;15044:4;15041:1;15037:12;15069:3;15064;15061:12;15058:38;;;15076:18;;:::i;:::-;15113:13;;;14937:195;-1:-1:-1;;;14937:195:1:o;15137:258::-;15209:1;15219:113;15233:6;15230:1;15227:13;15219:113;;;15309:11;;;15303:18;15290:11;;;15283:39;15255:2;15248:10;15219:113;;;15350:6;15347:1;15344:13;15341:48;;;-1:-1:-1;;15385:1:1;15367:16;;15360:27;15137:258::o;15400:380::-;15479:1;15475:12;;;;15522;;;15543:61;;15597:4;15589:6;15585:17;15575:27;;15543:61;15650:2;15642:6;15639:14;15619:18;15616:38;15613:161;;;15696:10;15691:3;15687:20;15684:1;15677:31;15731:4;15728:1;15721:15;15759:4;15756:1;15749:15;15613:161;;15400:380;;;:::o;15785:135::-;15824:3;-1:-1:-1;;15845:17:1;;15842:43;;;15865:18;;:::i;:::-;-1:-1:-1;15912:1:1;15901:13;;15785:135::o;15925:175::-;15962:3;16006:4;15999:5;15995:16;16035:4;16026:7;16023:17;16020:43;;;16043:18;;:::i;:::-;16092:1;16079:15;;15925:175;-1:-1:-1;;15925:175:1:o;16105:112::-;16137:1;16163;16153:35;;16168:18;;:::i;:::-;-1:-1:-1;16202:9:1;;16105:112::o;16222:127::-;16283:10;16278:3;16274:20;16271:1;16264:31;16314:4;16311:1;16304:15;16338:4;16335:1;16328:15;16354:127;16415:10;16410:3;16406:20;16403:1;16396:31;16446:4;16443:1;16436:15;16470:4;16467:1;16460:15;16486:127;16547:10;16542:3;16538:20;16535:1;16528:31;16578:4;16575:1;16568:15;16602:4;16599:1;16592:15;16618:127;16679:10;16674:3;16670:20;16667:1;16660:31;16710:4;16707:1;16700:15;16734:4;16731:1;16724:15;16750:131;-1:-1:-1;;;;;;16824:32:1;;16814:43;;16804:71;;16871:1;16868;16861:12
Swarm Source
ipfs://cc047a7e1f7bfab481605e57778d0785c7306aab3b2a7d8eb7fa867902450855
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.