ERC-721
Overview
Max Total Supply
10,000 DOPE
Holders
916
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 DOPELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DopersA
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-19 */ // Sources flattened with hardhat v2.8.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface 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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface 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/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract 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/[email protected] // 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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract 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/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs 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 {} } // File contracts/DopersA.sol pragma solidity ^0.8.9; contract DopersA is ERC721A, Ownable, ReentrancyGuard { /***** Enums *****/ enum SalesEnum { INACTIVE, INVESTORS, DOPELIST, PUBLIC } /***** States *****/ string public dopeProvenance; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant DOPE_INVESTORS_MINT_AMOUNT = 1000; uint256 public constant DOPE_FRIENDS_MINT_AMOUNT = 5; uint256 public constant PRIMARY_DOPELIST_MINT_AMOUNT = 3; uint256 public constant SECONDARY_DOPELIST_MINT_AMOUNT = 2; uint256 public constant PUBLIC_MINT_AMOUNT = 10; string private _baseDopeURI; mapping(address => uint256) private _addressMintCount; /* DOPELIST */ bytes32 public dopeInvestorsMR; bytes32 public dopeFriendsMR; bytes32 public primaryDopelistMR; bytes32 public secondaryDopelistMR; uint256 public priceDopeInvestors = 0.1 ether; uint256 public priceDopeFriends = 0.1 ether; uint256 public pricePrimaryDopelist = 0.1 ether; uint256 public priceSecondaryDopelist = 0.1 ether; uint256 public pricePublic = 0.15 ether; SalesEnum public salesPeriod; /***** Modifiers *****/ modifier callerIsUser() { /* solhint-disable avoid-tx-origin */ // for only call eoa require(tx.origin == _msgSender(), "The caller isn't a user"); _; } /***** Functions *****/ constructor() ERC721A("Dope", "DOPE") { salesPeriod = SalesEnum.INACTIVE; } function _baseURI() internal view virtual override returns (string memory) { return _baseDopeURI; } /************* * Configuration * *************/ function setBaseURI(string calldata baseURI) external onlyOwner { _baseDopeURI = baseURI; } /************* * Provenance Hash * *************/ function setProvenance(string calldata provenance) external onlyOwner { dopeProvenance = provenance; } /************* * Ownership * *************/ function withdraw() external onlyOwner nonReentrant { payable(_msgSender()).transfer(address(this).balance); } function gift(address giftReceiver, uint256 amount) external onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply"); _safeMint(giftReceiver, amount); } function teamReserve(uint256 amount) external onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply"); _safeMint(_msgSender(), amount); } function transferPrepaidInvestors(address investorAddress, uint256 amount) external onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply"); _safeMint(investorAddress, amount); } function beginInvestorSale() external onlyOwner { salesPeriod = SalesEnum.INVESTORS; } function beginDopelistSale() external onlyOwner { salesPeriod = SalesEnum.DOPELIST; } function beginPublicSale() external onlyOwner { salesPeriod = SalesEnum.PUBLIC; } function endSale() external onlyOwner { salesPeriod = SalesEnum.INACTIVE; } /************* * Mint * *************/ function mintDopeInvestors(bytes32[] calldata proof, uint256 amount) external payable callerIsUser { require(salesPeriod == SalesEnum.INVESTORS, "sale not started"); require(isDopeInvestors(_msgSender(), proof), "not a dope investor"); require( _addressMintCount[_msgSender()] + amount <= DOPE_INVESTORS_MINT_AMOUNT, "Can only mint maximum 100" ); require(totalSupply() + amount <= MAX_SUPPLY, "exceed max supply."); _addressMintCount[_msgSender()] += amount; _safeMint(_msgSender(), amount); refundIfOver(priceDopeInvestors * amount); } function mintDopeFriends(bytes32[] calldata proof, uint256 amount) external payable callerIsUser { require(salesPeriod == SalesEnum.DOPELIST, "sale not started"); require(isDopeFriends(_msgSender(), proof), "not a dope friend."); require( _addressMintCount[_msgSender()] + amount <= DOPE_FRIENDS_MINT_AMOUNT, "Can only mint maximum 5" ); require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply."); _addressMintCount[_msgSender()] += amount; _safeMint(_msgSender(), amount); refundIfOver(priceDopeFriends * amount); } function mintPrimaryDopelist(bytes32[] calldata proof, uint256 amount) external payable callerIsUser { require(salesPeriod == SalesEnum.DOPELIST, "sale not started"); require( isPrimaryDopelisted(_msgSender(), proof), "not a primary dope lister." ); require( _addressMintCount[_msgSender()] + amount <= PRIMARY_DOPELIST_MINT_AMOUNT, "Can only mint maximum 3" ); require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply."); _addressMintCount[_msgSender()] += amount; _safeMint(_msgSender(), amount); refundIfOver(pricePrimaryDopelist * amount); } function mintSecondaryDopelist(bytes32[] calldata proof, uint256 amount) external payable callerIsUser { require(salesPeriod == SalesEnum.DOPELIST, "sale not started"); require(isSecondaryDopelisted(_msgSender(), proof), "not a secondary dope lister."); require( _addressMintCount[_msgSender()] + amount <= SECONDARY_DOPELIST_MINT_AMOUNT, "Can only mint maximum 2" ); require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply."); _addressMintCount[_msgSender()] += amount; _safeMint(_msgSender(), amount); refundIfOver(priceSecondaryDopelist * amount); } function mintPublic(uint256 amount) external payable callerIsUser { require(salesPeriod == SalesEnum.PUBLIC, "sale not started"); require(totalSupply() + amount <= MAX_SUPPLY, "exceeds max supply."); require(amount <= PUBLIC_MINT_AMOUNT, "Can't mint more than 10"); _safeMint(_msgSender(), amount); refundIfOver(pricePublic * amount); } /************* * DOPELIST (Merkle Proof) * *************/ /* Setter */ function setDopeInvestorsMR(bytes32 merkleRoot) external onlyOwner { dopeInvestorsMR = merkleRoot; } function setDopeFriendsMR(bytes32 merkleRoot) external onlyOwner { dopeFriendsMR = merkleRoot; } function setPrimaryDopelistMR(bytes32 merkleRoot) external onlyOwner { primaryDopelistMR = merkleRoot; } function setSecondaryDopelistMR(bytes32 merkleRoot) external onlyOwner { secondaryDopelistMR = merkleRoot; } /* Verifier */ function isDopeInvestors(address account, bytes32[] calldata proof) internal view returns (bool) { return MerkleProof.verify(proof, dopeInvestorsMR, merkleLeaf(account)); } function isDopeFriends(address account, bytes32[] calldata proof) internal view returns (bool) { return MerkleProof.verify(proof, dopeFriendsMR, merkleLeaf(account)); } function isPrimaryDopelisted(address account, bytes32[] calldata proof) internal view returns (bool) { return MerkleProof.verify(proof, primaryDopelistMR, merkleLeaf(account)); } function isSecondaryDopelisted(address account, bytes32[] calldata proof) internal view returns (bool) { return MerkleProof.verify(proof, secondaryDopelistMR, merkleLeaf(account)); } /* Utils */ function merkleLeaf(address account) private pure returns (bytes32) { return keccak256(abi.encodePacked(account)); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(_msgSender()).transfer(msg.value - price); } } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } }
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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[],"name":"DOPE_FRIENDS_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOPE_INVESTORS_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIMARY_DOPELIST_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SECONDARY_DOPELIST_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginDopelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beginInvestorSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beginPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dopeFriendsMR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dopeInvestorsMR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dopeProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"giftReceiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintDopeFriends","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintDopeInvestors","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPrimaryDopelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintSecondaryDopelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"priceDopeFriends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceDopeInvestors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePrimaryDopelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceSecondaryDopelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primaryDopelistMR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salesPeriod","outputs":[{"internalType":"enum DopersA.SalesEnum","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondaryDopelistMR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setDopeFriendsMR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setDopeInvestorsMR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setPrimaryDopelistMR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSecondaryDopelistMR","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":"amount","type":"uint256"}],"name":"teamReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"investorAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferPrepaidInvestors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267016345785d8a000060115567016345785d8a000060125567016345785d8a000060135567016345785d8a0000601455670214e8348c4f00006015553480156200004d57600080fd5b5060405180604001604052806004815260200163446f706560e01b81525060405180604001604052806004815260200163444f504560e01b8152508160029080519060200190620000a09291906200012f565b508051620000b69060039060208401906200012f565b50506000805550620000c833620000dd565b60016009556016805460ff1916905562000212565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600181811c90821680620001ea57607f821691505b602082108114156200020c57634e487b7160e01b600052602260045260246000fd5b50919050565b6131c380620002226000396000f3fe6080604052600436106103605760003560e01c80638da5cb5b116101c6578063b8da25c5116100f7578063e776d80711610095578063efd0cbf91161006f578063efd0cbf91461093c578063f2fde38b1461094f578063fed1dd8114610860578063ffe630b51461096f57600080fd5b8063e776d807146108c0578063e985e9c5146108d3578063edbe677f1461091c57600080fd5b8063c92359bb116100d1578063c92359bb1461084d578063cbce4c9714610860578063ce779a8f14610880578063dc33e681146108a057600080fd5b8063b8da25c514610801578063c6fcf7b914610817578063c87b56dd1461082d57600080fd5b806398b7d54011610164578063aedd5f2e1161013e578063aedd5f2e1461079f578063b159dbed146107b5578063b3e16052146107cb578063b88d4fde146107e157600080fd5b806398b7d540146107425780639f36f27314610769578063a22cb4651461077f57600080fd5b806394292b7e116101a057806394292b7e146106e557806395d89b411461070557806395f1740d1461071a5780639759e1041461072d57600080fd5b80638da5cb5b1461065b5780638eea1915146106795780639231ab2a1461068e57600080fd5b806332cb6b0c116102a057806351e812c31161023e5780636352211e116102185780636352211e146105f157806370a0823114610611578063715018a61461063157806372186baf1461064657600080fd5b806351e812c31461059e57806355f804b3146105b157806356f52058146105d157600080fd5b80633ccfd60b1161027a5780633ccfd60b1461053e57806341d4a95d1461055357806342842e0e146105685780634d9b2af81461058857600080fd5b806332cb6b0c146104f3578063347ac6e414610509578063380d831b1461052957600080fd5b8063102e766d1161030d5780631ddca8c8116102e75780631ddca8c81461049357806323b872dd146104a8578063268de238146104c85780633094446d146104dd57600080fd5b8063102e766d1461044f57806318160ddd146104655780631a3bbe6c1461047e57600080fd5b8063081812fc1161033e578063081812fc146103e0578063095ea7b3146104185780630f2c36d11461043a57600080fd5b806301ffc9a714610365578063044ad1ac1461039a57806306fdde03146103be575b600080fd5b34801561037157600080fd5b50610385610380366004612c0d565b61098f565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103b060135481565b604051908152602001610391565b3480156103ca57600080fd5b506103d3610a2c565b6040516103919190612c82565b3480156103ec57600080fd5b506104006103fb366004612c95565b610abe565b6040516001600160a01b039091168152602001610391565b34801561042457600080fd5b50610438610433366004612cca565b610b1b565b005b34801561044657600080fd5b506103d3610bdb565b34801561045b57600080fd5b506103b060155481565b34801561047157600080fd5b50600154600054036103b0565b34801561048a57600080fd5b506103b0600281565b34801561049f57600080fd5b506103b0600581565b3480156104b457600080fd5b506104386104c3366004612cf4565b610c69565b3480156104d457600080fd5b50610438610c74565b3480156104e957600080fd5b506103b0600e5481565b3480156104ff57600080fd5b506103b061271081565b34801561051557600080fd5b50610438610524366004612c95565b610cd8565b34801561053557600080fd5b50610438610d97565b34801561054a57600080fd5b50610438610df3565b34801561055f57600080fd5b50610438610ec7565b34801561057457600080fd5b50610438610583366004612cf4565b610f22565b34801561059457600080fd5b506103b0600d5481565b6104386105ac366004612d30565b610f3d565b3480156105bd57600080fd5b506104386105cc366004612dab565b611156565b3480156105dd57600080fd5b506104386105ec366004612c95565b6111aa565b3480156105fd57600080fd5b5061040061060c366004612c95565b6111f7565b34801561061d57600080fd5b506103b061062c366004612e1d565b611209565b34801561063d57600080fd5b50610438611271565b34801561065257600080fd5b506103b0600381565b34801561066757600080fd5b506008546001600160a01b0316610400565b34801561068557600080fd5b506103b0600a81565b34801561069a57600080fd5b506106ae6106a9366004612c95565b6112c5565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff169082015291810151151590820152606001610391565b3480156106f157600080fd5b50610438610700366004612c95565b6112eb565b34801561071157600080fd5b506103d3611338565b610438610728366004612d30565b611347565b34801561073957600080fd5b50610438611550565b34801561074e57600080fd5b5060165461075c9060ff1681565b6040516103919190612e4e565b34801561077557600080fd5b506103b06103e881565b34801561078b57600080fd5b5061043861079a366004612e76565b6115ac565b3480156107ab57600080fd5b506103b060125481565b3480156107c157600080fd5b506103b0600f5481565b3480156107d757600080fd5b506103b060115481565b3480156107ed57600080fd5b506104386107fc366004612ec8565b61165b565b34801561080d57600080fd5b506103b060145481565b34801561082357600080fd5b506103b060105481565b34801561083957600080fd5b506103d3610848366004612c95565b6116ac565b61043861085b366004612d30565b61174a565b34801561086c57600080fd5b5061043861087b366004612cca565b611953565b34801561088c57600080fd5b5061043861089b366004612c95565b611a12565b3480156108ac57600080fd5b506103b06108bb366004612e1d565b611a5f565b6104386108ce366004612d30565b611a93565b3480156108df57600080fd5b506103856108ee366004612fa4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092857600080fd5b50610438610937366004612c95565b611c9c565b61043861094a366004612c95565b611ce9565b34801561095b57600080fd5b5061043861096a366004612e1d565b611e5b565b34801561097b57600080fd5b5061043861098a366004612dab565b611f28565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109f257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a2657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610a3b90612fd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6790612fd7565b8015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b5050505050905090565b6000610ac982611f7c565b610aff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b26826111f7565b9050806001600160a01b0316836001600160a01b03161415610b74576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610b945750610b9281336108ee565b155b15610bcb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd6838383611fa7565b505050565b600a8054610be890612fd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490612fd7565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b505050505081565b610bd6838383612010565b6008546001600160a01b03163314610cc15760405162461bcd60e51b8152602060048201819052602482015260008051602061316e83398151915260448201526064015b60405180910390fd5b601680546002919060ff19166001835b0217905550565b6008546001600160a01b03163314610d205760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b61271081610d316001546000540390565b610d3b9190613028565b1115610d895760405162461bcd60e51b815260206004820152601260248201527f65786365656473206d617820737570706c7900000000000000000000000000006044820152606401610cb8565b610d94335b8261224c565b50565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546000919060ff1916600183610cd1565b6008546001600160a01b03163314610e3b5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b60026009541415610e8e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cb8565b600260095560405133904780156108fc02916000818181858888f19350505050158015610ebf573d6000803e3d6000fd5b506001600955565b6008546001600160a01b03163314610f0f5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546001919060ff19168280610cd1565b610bd68383836040518060200160405280600081525061165b565b323314610f8c5760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600160165460ff166003811115610fa557610fa5612e38565b14610fe55760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b610ff0338484612266565b61103c5760405162461bcd60e51b815260206004820152601360248201527f6e6f74206120646f706520696e766573746f72000000000000000000000000006044820152606401610cb8565b336000908152600c60205260409020546103e89061105b908390613028565b11156110a95760405162461bcd60e51b815260206004820152601960248201527f43616e206f6e6c79206d696e74206d6178696d756d20313030000000000000006044820152606401610cb8565b612710816110ba6001546000540390565b6110c49190613028565b11156111125760405162461bcd60e51b815260206004820152601260248201527f657863656564206d617820737570706c792e00000000000000000000000000006044820152606401610cb8565b336000908152600c602052604081208054839290611131908490613028565b90915550611140905033610d8e565b610bd6816011546111519190613040565b6122e9565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b610bd6600b8383612b5e565b6008546001600160a01b031633146111f25760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600d55565b600061120282612377565b5192915050565b60006001600160a01b03821661124b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112b95760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b6112c360006124ac565b565b6040805160608101825260008082526020820181905291810191909152610a2682612377565b6008546001600160a01b031633146113335760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600e55565b606060038054610a3b90612fd7565b3233146113965760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff1660038111156113af576113af612e38565b146113ef5760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b6113fa33848461250b565b6114465760405162461bcd60e51b815260206004820152601a60248201527f6e6f742061207072696d61727920646f7065206c69737465722e0000000000006044820152606401610cb8565b336000908152600c6020526040902054600390611464908390613028565b11156114b25760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20330000000000000000006044820152606401610cb8565b612710816114c36001546000540390565b6114cd9190613028565b11156115115760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611530908490613028565b9091555061153f905033610d8e565b610bd6816013546111519190613040565b6008546001600160a01b031633146115985760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546003919060ff1916600183610cd1565b6001600160a01b0382163314156115ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611666848484612010565b6001600160a01b0383163b15158015611688575061168684848484612586565b155b156116a6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606116b782611f7c565b6116ed576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116f761267d565b90508051600014156117185760405180602001604052806000815250611743565b806117228461268c565b60405160200161173392919061305f565b6040516020818303038152906040525b9392505050565b3233146117995760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff1660038111156117b2576117b2612e38565b146117f25760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b6117fd3384846127be565b6118495760405162461bcd60e51b815260206004820152601c60248201527f6e6f742061207365636f6e6461727920646f7065206c69737465722e000000006044820152606401610cb8565b336000908152600c6020526040902054600290611867908390613028565b11156118b55760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20320000000000000000006044820152606401610cb8565b612710816118c66001546000540390565b6118d09190613028565b11156119145760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611933908490613028565b90915550611942905033610d8e565b610bd6816014546111519190613040565b6008546001600160a01b0316331461199b5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b612710816119ac6001546000540390565b6119b69190613028565b1115611a045760405162461bcd60e51b815260206004820152601260248201527f65786365656473206d617820737570706c7900000000000000000000000000006044820152606401610cb8565b611a0e828261224c565b5050565b6008546001600160a01b03163314611a5a5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600f55565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610a26565b323314611ae25760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff166003811115611afb57611afb612e38565b14611b3b5760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b611b46338484612839565b611b925760405162461bcd60e51b815260206004820152601260248201527f6e6f74206120646f706520667269656e642e00000000000000000000000000006044820152606401610cb8565b336000908152600c6020526040902054600590611bb0908390613028565b1115611bfe5760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20350000000000000000006044820152606401610cb8565b61271081611c0f6001546000540390565b611c199190613028565b1115611c5d5760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611c7c908490613028565b90915550611c8b905033610d8e565b610bd6816012546111519190613040565b6008546001600160a01b03163314611ce45760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601055565b323314611d385760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600360165460ff166003811115611d5157611d51612e38565b14611d915760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b61271081611da26001546000540390565b611dac9190613028565b1115611df05760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b600a811115611e415760405162461bcd60e51b815260206004820152601760248201527f43616e2774206d696e74206d6f7265207468616e2031300000000000000000006044820152606401610cb8565b611e4a33610d8e565b610d94816015546111519190613040565b6008546001600160a01b03163314611ea35760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb8565b610d94816124ac565b6008546001600160a01b03163314611f705760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b610bd6600a8383612b5e565b6000805482108015610a26575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061201b82612377565b9050836001600160a01b031681600001516001600160a01b03161461206c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061208a575061208a85336108ee565b806120a557503361209a84610abe565b6001600160a01b0316145b9050806120de576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661211e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212a60008487611fa7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612200576000548214612200578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611a0e8282604051806020016040528060008152506128b4565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b949350505050565b803410156123395760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610cb8565b80341115610d9457336108fc61234f833461308e565b6040518115909202916000818181858888f19350505050158015611a0e573d6000803e3d6000fd5b60408051606081018252600080825260208201819052918101919091528160005481101561247a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906124785780516001600160a01b03161561240e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612473579392505050565b61240e565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125bb9033908990889088906004016130a5565b602060405180830381600087803b1580156125d557600080fd5b505af1925050508015612605575060408051601f3d908101601f19168201909252612602918101906130e1565b60015b612660573d808015612633576040519150601f19603f3d011682016040523d82523d6000602084013e612638565b606091505b508051612658576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600b8054610a3b90612fd7565b6060816126cc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126f657806126e0816130fe565b91506126ef9050600a8361312f565b91506126d0565b60008167ffffffffffffffff81111561271157612711612eb2565b6040519080825280601f01601f19166020018201604052801561273b576020820181803683370190505b5090505b84156122e15761275060018361308e565b915061275d600a86613143565b612768906030613028565b60f81b81838151811061277d5761277d613157565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506127b7600a8661312f565b945061273f565b60006122e1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b610bd683838360016128d7565b6000826128ce8584612aea565b14949350505050565b6000546001600160a01b03851661291a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612951576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612a1257506001600160a01b0387163b15155b15612a9b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a636000888480600101955088612586565b612a80576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612a18578260005414612a9657600080fd5b612ae1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612a9c575b50600055612245565b600081815b8451811015612b56576000858281518110612b0c57612b0c613157565b60200260200101519050808311612b325760008381526020829052604090209250612b43565b600081815260208490526040902092505b5080612b4e816130fe565b915050612aef565b509392505050565b828054612b6a90612fd7565b90600052602060002090601f016020900481019282612b8c5760008555612bd2565b82601f10612ba55782800160ff19823516178555612bd2565b82800160010185558215612bd2579182015b82811115612bd2578235825591602001919060010190612bb7565b50612bde929150612be2565b5090565b5b80821115612bde5760008155600101612be3565b6001600160e01b031981168114610d9457600080fd5b600060208284031215612c1f57600080fd5b813561174381612bf7565b60005b83811015612c45578181015183820152602001612c2d565b838111156116a65750506000910152565b60008151808452612c6e816020860160208601612c2a565b601f01601f19169290920160200192915050565b6020815260006117436020830184612c56565b600060208284031215612ca757600080fd5b5035919050565b80356001600160a01b0381168114612cc557600080fd5b919050565b60008060408385031215612cdd57600080fd5b612ce683612cae565b946020939093013593505050565b600080600060608486031215612d0957600080fd5b612d1284612cae565b9250612d2060208501612cae565b9150604084013590509250925092565b600080600060408486031215612d4557600080fd5b833567ffffffffffffffff80821115612d5d57600080fd5b818601915086601f830112612d7157600080fd5b813581811115612d8057600080fd5b8760208260051b8501011115612d9557600080fd5b6020928301989097509590910135949350505050565b60008060208385031215612dbe57600080fd5b823567ffffffffffffffff80821115612dd657600080fd5b818501915085601f830112612dea57600080fd5b813581811115612df957600080fd5b866020828501011115612e0b57600080fd5b60209290920196919550909350505050565b600060208284031215612e2f57600080fd5b61174382612cae565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612e7057634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612e8957600080fd5b612e9283612cae565b915060208301358015158114612ea757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612ede57600080fd5b612ee785612cae565b9350612ef560208601612cae565b925060408501359150606085013567ffffffffffffffff80821115612f1957600080fd5b818701915087601f830112612f2d57600080fd5b813581811115612f3f57612f3f612eb2565b604051601f8201601f19908116603f01168101908382118183101715612f6757612f67612eb2565b816040528281528a6020848701011115612f8057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612fb757600080fd5b612fc083612cae565b9150612fce60208401612cae565b90509250929050565b600181811c90821680612feb57607f821691505b6020821081141561300c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561303b5761303b613012565b500190565b600081600019048311821515161561305a5761305a613012565b500290565b60008351613071818460208801612c2a565b835190830190613085818360208801612c2a565b01949350505050565b6000828210156130a0576130a0613012565b500390565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130d76080830184612c56565b9695505050505050565b6000602082840312156130f357600080fd5b815161174381612bf7565b600060001982141561311257613112613012565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261313e5761313e613119565b500490565b60008261315257613152613119565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f5444af3a463c6fbae53f9814bc3e31ebf3e72ea31161b58ef20d323274e073b64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106103605760003560e01c80638da5cb5b116101c6578063b8da25c5116100f7578063e776d80711610095578063efd0cbf91161006f578063efd0cbf91461093c578063f2fde38b1461094f578063fed1dd8114610860578063ffe630b51461096f57600080fd5b8063e776d807146108c0578063e985e9c5146108d3578063edbe677f1461091c57600080fd5b8063c92359bb116100d1578063c92359bb1461084d578063cbce4c9714610860578063ce779a8f14610880578063dc33e681146108a057600080fd5b8063b8da25c514610801578063c6fcf7b914610817578063c87b56dd1461082d57600080fd5b806398b7d54011610164578063aedd5f2e1161013e578063aedd5f2e1461079f578063b159dbed146107b5578063b3e16052146107cb578063b88d4fde146107e157600080fd5b806398b7d540146107425780639f36f27314610769578063a22cb4651461077f57600080fd5b806394292b7e116101a057806394292b7e146106e557806395d89b411461070557806395f1740d1461071a5780639759e1041461072d57600080fd5b80638da5cb5b1461065b5780638eea1915146106795780639231ab2a1461068e57600080fd5b806332cb6b0c116102a057806351e812c31161023e5780636352211e116102185780636352211e146105f157806370a0823114610611578063715018a61461063157806372186baf1461064657600080fd5b806351e812c31461059e57806355f804b3146105b157806356f52058146105d157600080fd5b80633ccfd60b1161027a5780633ccfd60b1461053e57806341d4a95d1461055357806342842e0e146105685780634d9b2af81461058857600080fd5b806332cb6b0c146104f3578063347ac6e414610509578063380d831b1461052957600080fd5b8063102e766d1161030d5780631ddca8c8116102e75780631ddca8c81461049357806323b872dd146104a8578063268de238146104c85780633094446d146104dd57600080fd5b8063102e766d1461044f57806318160ddd146104655780631a3bbe6c1461047e57600080fd5b8063081812fc1161033e578063081812fc146103e0578063095ea7b3146104185780630f2c36d11461043a57600080fd5b806301ffc9a714610365578063044ad1ac1461039a57806306fdde03146103be575b600080fd5b34801561037157600080fd5b50610385610380366004612c0d565b61098f565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103b060135481565b604051908152602001610391565b3480156103ca57600080fd5b506103d3610a2c565b6040516103919190612c82565b3480156103ec57600080fd5b506104006103fb366004612c95565b610abe565b6040516001600160a01b039091168152602001610391565b34801561042457600080fd5b50610438610433366004612cca565b610b1b565b005b34801561044657600080fd5b506103d3610bdb565b34801561045b57600080fd5b506103b060155481565b34801561047157600080fd5b50600154600054036103b0565b34801561048a57600080fd5b506103b0600281565b34801561049f57600080fd5b506103b0600581565b3480156104b457600080fd5b506104386104c3366004612cf4565b610c69565b3480156104d457600080fd5b50610438610c74565b3480156104e957600080fd5b506103b0600e5481565b3480156104ff57600080fd5b506103b061271081565b34801561051557600080fd5b50610438610524366004612c95565b610cd8565b34801561053557600080fd5b50610438610d97565b34801561054a57600080fd5b50610438610df3565b34801561055f57600080fd5b50610438610ec7565b34801561057457600080fd5b50610438610583366004612cf4565b610f22565b34801561059457600080fd5b506103b0600d5481565b6104386105ac366004612d30565b610f3d565b3480156105bd57600080fd5b506104386105cc366004612dab565b611156565b3480156105dd57600080fd5b506104386105ec366004612c95565b6111aa565b3480156105fd57600080fd5b5061040061060c366004612c95565b6111f7565b34801561061d57600080fd5b506103b061062c366004612e1d565b611209565b34801561063d57600080fd5b50610438611271565b34801561065257600080fd5b506103b0600381565b34801561066757600080fd5b506008546001600160a01b0316610400565b34801561068557600080fd5b506103b0600a81565b34801561069a57600080fd5b506106ae6106a9366004612c95565b6112c5565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff169082015291810151151590820152606001610391565b3480156106f157600080fd5b50610438610700366004612c95565b6112eb565b34801561071157600080fd5b506103d3611338565b610438610728366004612d30565b611347565b34801561073957600080fd5b50610438611550565b34801561074e57600080fd5b5060165461075c9060ff1681565b6040516103919190612e4e565b34801561077557600080fd5b506103b06103e881565b34801561078b57600080fd5b5061043861079a366004612e76565b6115ac565b3480156107ab57600080fd5b506103b060125481565b3480156107c157600080fd5b506103b0600f5481565b3480156107d757600080fd5b506103b060115481565b3480156107ed57600080fd5b506104386107fc366004612ec8565b61165b565b34801561080d57600080fd5b506103b060145481565b34801561082357600080fd5b506103b060105481565b34801561083957600080fd5b506103d3610848366004612c95565b6116ac565b61043861085b366004612d30565b61174a565b34801561086c57600080fd5b5061043861087b366004612cca565b611953565b34801561088c57600080fd5b5061043861089b366004612c95565b611a12565b3480156108ac57600080fd5b506103b06108bb366004612e1d565b611a5f565b6104386108ce366004612d30565b611a93565b3480156108df57600080fd5b506103856108ee366004612fa4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092857600080fd5b50610438610937366004612c95565b611c9c565b61043861094a366004612c95565b611ce9565b34801561095b57600080fd5b5061043861096a366004612e1d565b611e5b565b34801561097b57600080fd5b5061043861098a366004612dab565b611f28565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806109f257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a2657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610a3b90612fd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6790612fd7565b8015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b5050505050905090565b6000610ac982611f7c565b610aff576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b26826111f7565b9050806001600160a01b0316836001600160a01b03161415610b74576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610b945750610b9281336108ee565b155b15610bcb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd6838383611fa7565b505050565b600a8054610be890612fd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1490612fd7565b8015610c615780601f10610c3657610100808354040283529160200191610c61565b820191906000526020600020905b815481529060010190602001808311610c4457829003601f168201915b505050505081565b610bd6838383612010565b6008546001600160a01b03163314610cc15760405162461bcd60e51b8152602060048201819052602482015260008051602061316e83398151915260448201526064015b60405180910390fd5b601680546002919060ff19166001835b0217905550565b6008546001600160a01b03163314610d205760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b61271081610d316001546000540390565b610d3b9190613028565b1115610d895760405162461bcd60e51b815260206004820152601260248201527f65786365656473206d617820737570706c7900000000000000000000000000006044820152606401610cb8565b610d94335b8261224c565b50565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546000919060ff1916600183610cd1565b6008546001600160a01b03163314610e3b5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b60026009541415610e8e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cb8565b600260095560405133904780156108fc02916000818181858888f19350505050158015610ebf573d6000803e3d6000fd5b506001600955565b6008546001600160a01b03163314610f0f5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546001919060ff19168280610cd1565b610bd68383836040518060200160405280600081525061165b565b323314610f8c5760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600160165460ff166003811115610fa557610fa5612e38565b14610fe55760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b610ff0338484612266565b61103c5760405162461bcd60e51b815260206004820152601360248201527f6e6f74206120646f706520696e766573746f72000000000000000000000000006044820152606401610cb8565b336000908152600c60205260409020546103e89061105b908390613028565b11156110a95760405162461bcd60e51b815260206004820152601960248201527f43616e206f6e6c79206d696e74206d6178696d756d20313030000000000000006044820152606401610cb8565b612710816110ba6001546000540390565b6110c49190613028565b11156111125760405162461bcd60e51b815260206004820152601260248201527f657863656564206d617820737570706c792e00000000000000000000000000006044820152606401610cb8565b336000908152600c602052604081208054839290611131908490613028565b90915550611140905033610d8e565b610bd6816011546111519190613040565b6122e9565b6008546001600160a01b0316331461119e5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b610bd6600b8383612b5e565b6008546001600160a01b031633146111f25760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600d55565b600061120282612377565b5192915050565b60006001600160a01b03821661124b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112b95760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b6112c360006124ac565b565b6040805160608101825260008082526020820181905291810191909152610a2682612377565b6008546001600160a01b031633146113335760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600e55565b606060038054610a3b90612fd7565b3233146113965760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff1660038111156113af576113af612e38565b146113ef5760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b6113fa33848461250b565b6114465760405162461bcd60e51b815260206004820152601a60248201527f6e6f742061207072696d61727920646f7065206c69737465722e0000000000006044820152606401610cb8565b336000908152600c6020526040902054600390611464908390613028565b11156114b25760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20330000000000000000006044820152606401610cb8565b612710816114c36001546000540390565b6114cd9190613028565b11156115115760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611530908490613028565b9091555061153f905033610d8e565b610bd6816013546111519190613040565b6008546001600160a01b031633146115985760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601680546003919060ff1916600183610cd1565b6001600160a01b0382163314156115ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611666848484612010565b6001600160a01b0383163b15158015611688575061168684848484612586565b155b156116a6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606116b782611f7c565b6116ed576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116f761267d565b90508051600014156117185760405180602001604052806000815250611743565b806117228461268c565b60405160200161173392919061305f565b6040516020818303038152906040525b9392505050565b3233146117995760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff1660038111156117b2576117b2612e38565b146117f25760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b6117fd3384846127be565b6118495760405162461bcd60e51b815260206004820152601c60248201527f6e6f742061207365636f6e6461727920646f7065206c69737465722e000000006044820152606401610cb8565b336000908152600c6020526040902054600290611867908390613028565b11156118b55760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20320000000000000000006044820152606401610cb8565b612710816118c66001546000540390565b6118d09190613028565b11156119145760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611933908490613028565b90915550611942905033610d8e565b610bd6816014546111519190613040565b6008546001600160a01b0316331461199b5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b612710816119ac6001546000540390565b6119b69190613028565b1115611a045760405162461bcd60e51b815260206004820152601260248201527f65786365656473206d617820737570706c7900000000000000000000000000006044820152606401610cb8565b611a0e828261224c565b5050565b6008546001600160a01b03163314611a5a5760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b600f55565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610a26565b323314611ae25760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600260165460ff166003811115611afb57611afb612e38565b14611b3b5760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b611b46338484612839565b611b925760405162461bcd60e51b815260206004820152601260248201527f6e6f74206120646f706520667269656e642e00000000000000000000000000006044820152606401610cb8565b336000908152600c6020526040902054600590611bb0908390613028565b1115611bfe5760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79206d696e74206d6178696d756d20350000000000000000006044820152606401610cb8565b61271081611c0f6001546000540390565b611c199190613028565b1115611c5d5760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b336000908152600c602052604081208054839290611c7c908490613028565b90915550611c8b905033610d8e565b610bd6816012546111519190613040565b6008546001600160a01b03163314611ce45760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b601055565b323314611d385760405162461bcd60e51b815260206004820152601760248201527f5468652063616c6c65722069736e2774206120757365720000000000000000006044820152606401610cb8565b600360165460ff166003811115611d5157611d51612e38565b14611d915760405162461bcd60e51b815260206004820152601060248201526f1cd85b19481b9bdd081cdd185c9d195960821b6044820152606401610cb8565b61271081611da26001546000540390565b611dac9190613028565b1115611df05760405162461bcd60e51b815260206004820152601360248201527232bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610cb8565b600a811115611e415760405162461bcd60e51b815260206004820152601760248201527f43616e2774206d696e74206d6f7265207468616e2031300000000000000000006044820152606401610cb8565b611e4a33610d8e565b610d94816015546111519190613040565b6008546001600160a01b03163314611ea35760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb8565b610d94816124ac565b6008546001600160a01b03163314611f705760405162461bcd60e51b8152602060048201819052602482015260008051602061316e8339815191526044820152606401610cb8565b610bd6600a8383612b5e565b6000805482108015610a26575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061201b82612377565b9050836001600160a01b031681600001516001600160a01b03161461206c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061208a575061208a85336108ee565b806120a557503361209a84610abe565b6001600160a01b0316145b9050806120de576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661211e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212a60008487611fa7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612200576000548214612200578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b611a0e8282604051806020016040528060008152506128b4565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b949350505050565b803410156123395760405162461bcd60e51b815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152606401610cb8565b80341115610d9457336108fc61234f833461308e565b6040518115909202916000818181858888f19350505050158015611a0e573d6000803e3d6000fd5b60408051606081018252600080825260208201819052918101919091528160005481101561247a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906124785780516001600160a01b03161561240e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612473579392505050565b61240e565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125bb9033908990889088906004016130a5565b602060405180830381600087803b1580156125d557600080fd5b505af1925050508015612605575060408051601f3d908101601f19168201909252612602918101906130e1565b60015b612660573d808015612633576040519150601f19603f3d011682016040523d82523d6000602084013e612638565b606091505b508051612658576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600b8054610a3b90612fd7565b6060816126cc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126f657806126e0816130fe565b91506126ef9050600a8361312f565b91506126d0565b60008167ffffffffffffffff81111561271157612711612eb2565b6040519080825280601f01601f19166020018201604052801561273b576020820181803683370190505b5090505b84156122e15761275060018361308e565b915061275d600a86613143565b612768906030613028565b60f81b81838151811061277d5761277d613157565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506127b7600a8661312f565b945061273f565b60006122e1838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b60006122e183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e546040805160608b901b6bffffffffffffffffffffffff1916602080830191909152825160148184030181526034909201909252805191012090925090506128c1565b610bd683838360016128d7565b6000826128ce8584612aea565b14949350505050565b6000546001600160a01b03851661291a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612951576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612a1257506001600160a01b0387163b15155b15612a9b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a636000888480600101955088612586565b612a80576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612a18578260005414612a9657600080fd5b612ae1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612a9c575b50600055612245565b600081815b8451811015612b56576000858281518110612b0c57612b0c613157565b60200260200101519050808311612b325760008381526020829052604090209250612b43565b600081815260208490526040902092505b5080612b4e816130fe565b915050612aef565b509392505050565b828054612b6a90612fd7565b90600052602060002090601f016020900481019282612b8c5760008555612bd2565b82601f10612ba55782800160ff19823516178555612bd2565b82800160010185558215612bd2579182015b82811115612bd2578235825591602001919060010190612bb7565b50612bde929150612be2565b5090565b5b80821115612bde5760008155600101612be3565b6001600160e01b031981168114610d9457600080fd5b600060208284031215612c1f57600080fd5b813561174381612bf7565b60005b83811015612c45578181015183820152602001612c2d565b838111156116a65750506000910152565b60008151808452612c6e816020860160208601612c2a565b601f01601f19169290920160200192915050565b6020815260006117436020830184612c56565b600060208284031215612ca757600080fd5b5035919050565b80356001600160a01b0381168114612cc557600080fd5b919050565b60008060408385031215612cdd57600080fd5b612ce683612cae565b946020939093013593505050565b600080600060608486031215612d0957600080fd5b612d1284612cae565b9250612d2060208501612cae565b9150604084013590509250925092565b600080600060408486031215612d4557600080fd5b833567ffffffffffffffff80821115612d5d57600080fd5b818601915086601f830112612d7157600080fd5b813581811115612d8057600080fd5b8760208260051b8501011115612d9557600080fd5b6020928301989097509590910135949350505050565b60008060208385031215612dbe57600080fd5b823567ffffffffffffffff80821115612dd657600080fd5b818501915085601f830112612dea57600080fd5b813581811115612df957600080fd5b866020828501011115612e0b57600080fd5b60209290920196919550909350505050565b600060208284031215612e2f57600080fd5b61174382612cae565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612e7057634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215612e8957600080fd5b612e9283612cae565b915060208301358015158114612ea757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612ede57600080fd5b612ee785612cae565b9350612ef560208601612cae565b925060408501359150606085013567ffffffffffffffff80821115612f1957600080fd5b818701915087601f830112612f2d57600080fd5b813581811115612f3f57612f3f612eb2565b604051601f8201601f19908116603f01168101908382118183101715612f6757612f67612eb2565b816040528281528a6020848701011115612f8057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612fb757600080fd5b612fc083612cae565b9150612fce60208401612cae565b90509250929050565b600181811c90821680612feb57607f821691505b6020821081141561300c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561303b5761303b613012565b500190565b600081600019048311821515161561305a5761305a613012565b500290565b60008351613071818460208801612c2a565b835190830190613085818360208801612c2a565b01949350505050565b6000828210156130a0576130a0613012565b500390565b60006001600160a01b038087168352808616602084015250836040830152608060608301526130d76080830184612c56565b9695505050505050565b6000602082840312156130f357600080fd5b815161174381612bf7565b600060001982141561311257613112613012565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261313e5761313e613119565b500490565b60008261315257613152613119565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f5444af3a463c6fbae53f9814bc3e31ebf3e72ea31161b58ef20d323274e073b64736f6c63430008090033
Deployed Bytecode Sourcemap
72896:8049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55079:305;;;;;;;;;;-1:-1:-1;55079:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;55079:305:0;;;;;;;;73820:47;;;;;;;;;;;;;;;;;;;784:25:1;;;772:2;757:18;73820:47:0;638:177:1;58192:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59695:204::-;;;;;;;;;;-1:-1:-1;59695:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1920:55:1;;;1902:74;;1890:2;1875:18;59695:204:0;1756:226:1;59258:371:0;;;;;;;;;;-1:-1:-1;59258:371:0;;;;;:::i;:::-;;:::i;:::-;;73087:28;;;;;;;;;;;;;:::i;73926:39::-;;;;;;;;;;;;;;;;54328:303;;;;;;;;;;-1:-1:-1;54582:12:0;;54372:7;54566:13;:28;54328:303;;73349:58;;;;;;;;;;;;73406:1;73349:58;;73231:52;;;;;;;;;;;;73282:1;73231:52;;60560:170;;;;;;;;;;-1:-1:-1;60560:170:0;;;;;:::i;:::-;;:::i;75674:93::-;;;;;;;;;;;;;:::i;73611:28::-;;;;;;;;;;;;;;;;73122:42;;;;;;;;;;;;73159:5;73122:42;;75169:176;;;;;;;;;;-1:-1:-1;75169:176:0;;;;;:::i;:::-;;:::i;75868:83::-;;;;;;;;;;;;;:::i;74848:118::-;;;;;;;;;;;;;:::i;75574:94::-;;;;;;;;;;;;;:::i;60801:185::-;;;;;;;;;;-1:-1:-1;60801:185:0;;;;;:::i;:::-;;:::i;73576:30::-;;;;;;;;;;;;;;;;76009:616;;;;;;:::i;:::-;;:::i;74509:99::-;;;;;;;;;;-1:-1:-1;74509:99:0;;;;;:::i;:::-;;:::i;79010:108::-;;;;;;;;;;-1:-1:-1;79010:108:0;;;;;:::i;:::-;;:::i;58000:125::-;;;;;;;;;;-1:-1:-1;58000:125:0;;;;;:::i;:::-;;:::i;55448:206::-;;;;;;;;;;-1:-1:-1;55448:206:0;;;;;:::i;:::-;;:::i;44822:103::-;;;;;;;;;;;;;:::i;73288:56::-;;;;;;;;;;;;73343:1;73288:56;;44171:87;;;;;;;;;;-1:-1:-1;44244:6:0;;-1:-1:-1;;;;;44244:6:0;44171:87;;73412:47;;;;;;;;;;;;73457:2;73412:47;;80681:148;;;;;;;;;;-1:-1:-1;80681:148:0;;;;;:::i;:::-;;:::i;:::-;;;;4861:13:1;;-1:-1:-1;;;;;4857:62:1;4839:81;;4980:4;4968:17;;;4962:24;4988:18;4958:49;4936:20;;;4929:79;5066:17;;;5060:24;5053:32;5046:40;5024:20;;;5017:70;4827:2;4812:18;80681:148:0;4629:464:1;79124:104:0;;;;;;;;;;-1:-1:-1;79124:104:0;;;;;:::i;:::-;;:::i;58361:::-;;;;;;;;;;;;;:::i;77242:652::-;;;;;;:::i;:::-;;:::i;75773:89::-;;;;;;;;;;;;;:::i;73972:28::-;;;;;;;;;;-1:-1:-1;73972:28:0;;;;;;;;;;;;;;;:::i;73169:57::-;;;;;;;;;;;;73222:4;73169:57;;59971:287;;;;;;;;;;-1:-1:-1;59971:287:0;;;;;:::i;:::-;;:::i;73772:43::-;;;;;;;;;;;;;;;;73644:32;;;;;;;;;;;;;;;;73722:45;;;;;;;;;;;;;;;;61057:369;;;;;;;;;;-1:-1:-1;61057:369:0;;;;;:::i;:::-;;:::i;73872:49::-;;;;;;;;;;;;;;;;73681:34;;;;;;;;;;;;;;;;58536:318;;;;;;;;;;-1:-1:-1;58536:318:0;;;;;:::i;:::-;;:::i;77900:641::-;;;;;;:::i;:::-;;:::i;74972:191::-;;;;;;;;;;-1:-1:-1;74972:191:0;;;;;:::i;:::-;;:::i;79234:112::-;;;;;;;;;;-1:-1:-1;79234:112:0;;;;;:::i;:::-;;:::i;80835:107::-;;;;;;;;;;-1:-1:-1;80835:107:0;;;;;:::i;:::-;;:::i;76631:605::-;;;;;;:::i;:::-;;:::i;60329:164::-;;;;;;;;;;-1:-1:-1;60329:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;60450:25:0;;;60426:4;60450:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60329:164;79352:116;;;;;;;;;;-1:-1:-1;79352:116:0;;;;;:::i;:::-;;:::i;78547:368::-;;;;;;:::i;:::-;;:::i;45080:201::-;;;;;;;;;;-1:-1:-1;45080:201:0;;;;;:::i;:::-;;:::i;74675:110::-;;;;;;;;;;-1:-1:-1;74675:110:0;;;;;:::i;:::-;;:::i;55079:305::-;55181:4;-1:-1:-1;;;;;;55218:40:0;;55233:25;55218:40;;:105;;-1:-1:-1;;;;;;;55275:48:0;;55290:33;55275:48;55218:105;:158;;;-1:-1:-1;20285:25:0;-1:-1:-1;;;;;;20270:40:0;;;55340:36;55198:178;55079:305;-1:-1:-1;;55079:305:0:o;58192:100::-;58246:13;58279:5;58272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58192:100;:::o;59695:204::-;59763:7;59788:16;59796:7;59788;:16::i;:::-;59783:64;;59813:34;;;;;;;;;;;;;;59783:64;-1:-1:-1;59867:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59867:24:0;;59695:204::o;59258:371::-;59331:13;59347:24;59363:7;59347:15;:24::i;:::-;59331:40;;59392:5;-1:-1:-1;;;;;59386:11:0;:2;-1:-1:-1;;;;;59386:11:0;;59382:48;;;59406:24;;;;;;;;;;;;;;59382:48;17024:10;-1:-1:-1;;;;;59447:21:0;;;;;;:63;;-1:-1:-1;59473:37:0;59490:5;17024:10;60329:164;:::i;59473:37::-;59472:38;59447:63;59443:138;;;59534:35;;;;;;;;;;;;;;59443:138;59593:28;59602:2;59606:7;59615:5;59593:8;:28::i;:::-;59320:309;59258:371;;:::o;73087:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60560:170::-;60694:28;60704:4;60710:2;60714:7;60694:9;:28::i;75674:93::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;;;;;;;;;75729:11:::1;:32:::0;;75743:18:::1;::::0;75729:11;-1:-1:-1;;75729:32:0::1;::::0;75743:18;75729:32:::1;;;;;;75674:93::o:0;75169:176::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;73159:5:::1;75256:6;75240:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;75240:13:::1;:22;;;;:::i;:::-;:36;;75232:67;;;::::0;-1:-1:-1;;;75232:67:0;;8967:2:1;75232:67:0::1;::::0;::::1;8949:21:1::0;9006:2;8986:18;;;8979:30;9045:20;9025:18;;;9018:48;9083:18;;75232:67:0::1;8765:342:1::0;75232:67:0::1;75308:31;17024:10:::0;75318:12:::1;75332:6;75308:9;:31::i;:::-;75169:176:::0;:::o;75868:83::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;75913:11:::1;:32:::0;;75927:18:::1;::::0;75913:11;-1:-1:-1;;75913:32:0::1;::::0;75927:18;75913:32:::1;::::0;74848:118;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;47459:1:::1;48057:7;;:19;;48049:63;;;::::0;-1:-1:-1;;;48049:63:0;;9314:2:1;48049:63:0::1;::::0;::::1;9296:21:1::0;9353:2;9333:18;;;9326:30;9392:33;9372:18;;;9365:61;9443:18;;48049:63:0::1;9112:355:1::0;48049:63:0::1;47459:1;48190:7;:18:::0;74907:53:::2;::::0;17024:10;;74938:21:::2;74907:53:::0;::::2;;;::::0;::::2;::::0;;;74938:21;17024:10;74907:53;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;47415:1:0::1;48369:7;:22:::0;74848:118::o;75574:94::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;75629:11:::1;:33:::0;;75643:19:::1;::::0;75629:11;-1:-1:-1;;75629:33:0::1;75643:19:::0;;75629:33:::1;::::0;60801:185;60939:39;60956:4;60962:2;60966:7;60939:39;;;;;;;;;;;;:16;:39::i;76009:616::-;74144:9;17024:10;74144:25;74136:61;;;;-1:-1:-1;;;74136:61:0;;9674:2:1;74136:61:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:25;9732:18;;;9725:53;9795:18;;74136:61:0;9472:347:1;74136:61:0;76156:19:::1;76141:11;::::0;::::1;;:34;::::0;::::1;;;;;;:::i;:::-;;76133:63;;;::::0;-1:-1:-1;;;76133:63:0;;10026:2:1;76133:63:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;76133:63:0::1;9824:340:1::0;76133:63:0::1;76211:36;17024:10:::0;76241:5:::1;;76211:15;:36::i;:::-;76203:68;;;::::0;-1:-1:-1;;;76203:68:0;;10371:2:1;76203:68:0::1;::::0;::::1;10353:21:1::0;10410:2;10390:18;;;10383:30;10449:21;10429:18;;;10422:49;10488:18;;76203:68:0::1;10169:343:1::0;76203:68:0::1;17024:10:::0;76294:31:::1;::::0;;;:17:::1;:31;::::0;;;;;73222:4:::1;::::0;76294:40:::1;::::0;76328:6;;76294:40:::1;:::i;:::-;:70;;76278:129;;;::::0;-1:-1:-1;;;76278:129:0;;10719:2:1;76278:129:0::1;::::0;::::1;10701:21:1::0;10758:2;10738:18;;;10731:30;10797:27;10777:18;;;10770:55;10842:18;;76278:129:0::1;10517:349:1::0;76278:129:0::1;73159:5;76438:6;76422:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;76422:13:::1;:22;;;;:::i;:::-;:36;;76414:67;;;::::0;-1:-1:-1;;;76414:67:0;;11073:2:1;76414:67:0::1;::::0;::::1;11055:21:1::0;11112:2;11092:18;;;11085:30;11151:20;11131:18;;;11124:48;11189:18;;76414:67:0::1;10871:342:1::0;76414:67:0::1;17024:10:::0;76490:31:::1;::::0;;;:17:::1;:31;::::0;;;;:41;;76525:6;;76490:31;:41:::1;::::0;76525:6;;76490:41:::1;:::i;:::-;::::0;;;-1:-1:-1;76538:31:0::1;::::0;-1:-1:-1;17024:10:0;76548:12:::1;16944:98:::0;76538:31:::1;76578:41;76612:6;76591:18;;:27;;;;:::i;:::-;76578:12;:41::i;74509:99::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;74580:22:::1;:12;74595:7:::0;;74580:22:::1;:::i;79010:108::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;79084:15:::1;:28:::0;79010:108::o;58000:125::-;58064:7;58091:21;58104:7;58091:12;:21::i;:::-;:26;;58000:125;-1:-1:-1;;58000:125:0:o;55448:206::-;55512:7;-1:-1:-1;;;;;55536:19:0;;55532:60;;55564:28;;;;;;;;;;;;;;55532:60;-1:-1:-1;;;;;;55618:19:0;;;;;:12;:19;;;;;:27;;;;55448:206::o;44822:103::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;44887:30:::1;44914:1;44887:18;:30::i;:::-;44822:103::o:0;80681:148::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;80802:21:0;80815:7;80802:12;:21::i;79124:104::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;79196:13:::1;:26:::0;79124:104::o;58361:::-;58417:13;58450:7;58443:14;;;;;:::i;77242:652::-;74144:9;17024:10;74144:25;74136:61;;;;-1:-1:-1;;;74136:61:0;;9674:2:1;74136:61:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:25;9732:18;;;9725:53;9795:18;;74136:61:0;9472:347:1;74136:61:0;77391:18:::1;77376:11;::::0;::::1;;:33;::::0;::::1;;;;;;:::i;:::-;;77368:62;;;::::0;-1:-1:-1;;;77368:62:0;;10026:2:1;77368:62:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;77368:62:0::1;9824:340:1::0;77368:62:0::1;77453:40;17024:10:::0;77487:5:::1;;77453:19;:40::i;:::-;77437:100;;;::::0;-1:-1:-1;;;77437:100:0;;11593:2:1;77437:100:0::1;::::0;::::1;11575:21:1::0;11632:2;11612:18;;;11605:30;11671:28;11651:18;;;11644:56;11717:18;;77437:100:0::1;11391:350:1::0;77437:100:0::1;17024:10:::0;77560:31:::1;::::0;;;:17:::1;:31;::::0;;;;;73343:1:::1;::::0;77560:40:::1;::::0;77594:6;;77560:40:::1;:::i;:::-;:72;;77544:129;;;::::0;-1:-1:-1;;;77544:129:0;;11948:2:1;77544:129:0::1;::::0;::::1;11930:21:1::0;11987:2;11967:18;;;11960:30;12026:25;12006:18;;;11999:53;12069:18;;77544:129:0::1;11746:347:1::0;77544:129:0::1;73159:5;77704:6;77688:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;77688:13:::1;:22;;;;:::i;:::-;:36;;77680:68;;;::::0;-1:-1:-1;;;77680:68:0;;12300:2:1;77680:68:0::1;::::0;::::1;12282:21:1::0;12339:2;12319:18;;;12312:30;-1:-1:-1;;;12358:18:1;;;12351:49;12417:18;;77680:68:0::1;12098:343:1::0;77680:68:0::1;17024:10:::0;77757:31:::1;::::0;;;:17:::1;:31;::::0;;;;:41;;77792:6;;77757:31;:41:::1;::::0;77792:6;;77757:41:::1;:::i;:::-;::::0;;;-1:-1:-1;77805:31:0::1;::::0;-1:-1:-1;17024:10:0;77815:12:::1;16944:98:::0;77805:31:::1;77845:43;77881:6;77858:20;;:29;;;;:::i;75773:89::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;75826:11:::1;:30:::0;;75840:16:::1;::::0;75826:11;-1:-1:-1;;75826:30:0::1;::::0;75840:16;75826:30:::1;::::0;59971:287;-1:-1:-1;;;;;60070:24:0;;17024:10;60070:24;60066:54;;;60103:17;;;;;;;;;;;;;;60066:54;17024:10;60133:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;60133:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;60133:53:0;;;;;;;;;;60202:48;;586:41:1;;;60133:42:0;;17024:10;60202:48;;559:18:1;60202:48:0;;;;;;;59971:287;;:::o;61057:369::-;61224:28;61234:4;61240:2;61244:7;61224:9;:28::i;:::-;-1:-1:-1;;;;;61267:13:0;;9282:19;:23;;61267:76;;;;;61287:56;61318:4;61324:2;61328:7;61337:5;61287:30;:56::i;:::-;61286:57;61267:76;61263:156;;;61367:40;;-1:-1:-1;;;61367:40:0;;;;;;;;;;;61263:156;61057:369;;;;:::o;58536:318::-;58609:13;58640:16;58648:7;58640;:16::i;:::-;58635:59;;58665:29;;;;;;;;;;;;;;58635:59;58707:21;58731:10;:8;:10::i;:::-;58707:34;;58765:7;58759:21;58784:1;58759:26;;:87;;;;;;;;;;;;;;;;;58812:7;58821:18;:7;:16;:18::i;:::-;58795:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58759:87;58752:94;58536:318;-1:-1:-1;;;58536:318:0:o;77900:641::-;74144:9;17024:10;74144:25;74136:61;;;;-1:-1:-1;;;74136:61:0;;9674:2:1;74136:61:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:25;9732:18;;;9725:53;9795:18;;74136:61:0;9472:347:1;74136:61:0;78051:18:::1;78036:11;::::0;::::1;;:33;::::0;::::1;;;;;;:::i;:::-;;78028:62;;;::::0;-1:-1:-1;;;78028:62:0;;10026:2:1;78028:62:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;78028:62:0::1;9824:340:1::0;78028:62:0::1;78105:42;17024:10:::0;78141:5:::1;;78105:21;:42::i;:::-;78097:83;;;::::0;-1:-1:-1;;;78097:83:0;;13123:2:1;78097:83:0::1;::::0;::::1;13105:21:1::0;13162:2;13142:18;;;13135:30;13201;13181:18;;;13174:58;13249:18;;78097:83:0::1;12921:352:1::0;78097:83:0::1;17024:10:::0;78203:31:::1;::::0;;;:17:::1;:31;::::0;;;;;73406:1:::1;::::0;78203:40:::1;::::0;78237:6;;78203:40:::1;:::i;:::-;:74;;78187:131;;;::::0;-1:-1:-1;;;78187:131:0;;13480:2:1;78187:131:0::1;::::0;::::1;13462:21:1::0;13519:2;13499:18;;;13492:30;13558:25;13538:18;;;13531:53;13601:18;;78187:131:0::1;13278:347:1::0;78187:131:0::1;73159:5;78349:6;78333:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;78333:13:::1;:22;;;;:::i;:::-;:36;;78325:68;;;::::0;-1:-1:-1;;;78325:68:0;;12300:2:1;78325:68:0::1;::::0;::::1;12282:21:1::0;12339:2;12319:18;;;12312:30;-1:-1:-1;;;12358:18:1;;;12351:49;12417:18;;78325:68:0::1;12098:343:1::0;78325:68:0::1;17024:10:::0;78402:31:::1;::::0;;;:17:::1;:31;::::0;;;;:41;;78437:6;;78402:31;:41:::1;::::0;78437:6;;78402:41:::1;:::i;:::-;::::0;;;-1:-1:-1;78450:31:0::1;::::0;-1:-1:-1;17024:10:0;78460:12:::1;16944:98:::0;78450:31:::1;78490:45;78528:6;78503:22;;:31;;;;:::i;74972:191::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;73159:5:::1;75074:6;75058:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;75058:13:::1;:22;;;;:::i;:::-;:36;;75050:67;;;::::0;-1:-1:-1;;;75050:67:0;;8967:2:1;75050:67:0::1;::::0;::::1;8949:21:1::0;9006:2;8986:18;;;8979:30;9045:20;9025:18;;;9018:48;9083:18;;75050:67:0::1;8765:342:1::0;75050:67:0::1;75126:31;75136:12;75150:6;75126:9;:31::i;:::-;74972:191:::0;;:::o;79234:112::-;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;79310:17:::1;:30:::0;79234:112::o;80835:107::-;-1:-1:-1;;;;;55832:19:0;;80893:7;55832:19;;;:12;:19;;;;;:32;;;;;;80916:20;55736:137;76631:605;74144:9;17024:10;74144:25;74136:61;;;;-1:-1:-1;;;74136:61:0;;9674:2:1;74136:61:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:25;9732:18;;;9725:53;9795:18;;74136:61:0;9472:347:1;74136:61:0;76776:18:::1;76761:11;::::0;::::1;;:33;::::0;::::1;;;;;;:::i;:::-;;76753:62;;;::::0;-1:-1:-1;;;76753:62:0;;10026:2:1;76753:62:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;76753:62:0::1;9824:340:1::0;76753:62:0::1;76830:34;17024:10:::0;76858:5:::1;;76830:13;:34::i;:::-;76822:65;;;::::0;-1:-1:-1;;;76822:65:0;;13832:2:1;76822:65:0::1;::::0;::::1;13814:21:1::0;13871:2;13851:18;;;13844:30;13910:20;13890:18;;;13883:48;13948:18;;76822:65:0::1;13630:342:1::0;76822:65:0::1;17024:10:::0;76910:31:::1;::::0;;;:17:::1;:31;::::0;;;;;73282:1:::1;::::0;76910:40:::1;::::0;76944:6;;76910:40:::1;:::i;:::-;:68;;76894:125;;;::::0;-1:-1:-1;;;76894:125:0;;14179:2:1;76894:125:0::1;::::0;::::1;14161:21:1::0;14218:2;14198:18;;;14191:30;14257:25;14237:18;;;14230:53;14300:18;;76894:125:0::1;13977:347:1::0;76894:125:0::1;73159:5;77050:6;77034:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;77034:13:::1;:22;;;;:::i;:::-;:36;;77026:68;;;::::0;-1:-1:-1;;;77026:68:0;;12300:2:1;77026:68:0::1;::::0;::::1;12282:21:1::0;12339:2;12319:18;;;12312:30;-1:-1:-1;;;12358:18:1;;;12351:49;12417:18;;77026:68:0::1;12098:343:1::0;77026:68:0::1;17024:10:::0;77103:31:::1;::::0;;;:17:::1;:31;::::0;;;;:41;;77138:6;;77103:31;:41:::1;::::0;77138:6;;77103:41:::1;:::i;:::-;::::0;;;-1:-1:-1;77151:31:0::1;::::0;-1:-1:-1;17024:10:0;77161:12:::1;16944:98:::0;77151:31:::1;77191:39;77223:6;77204:16;;:25;;;;:::i;79352:116::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;79430:19:::1;:32:::0;79352:116::o;78547:368::-;74144:9;17024:10;74144:25;74136:61;;;;-1:-1:-1;;;74136:61:0;;9674:2:1;74136:61:0;;;9656:21:1;9713:2;9693:18;;;9686:30;9752:25;9732:18;;;9725:53;9795:18;;74136:61:0;9472:347:1;74136:61:0;78643:16:::1;78628:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;78620:60;;;::::0;-1:-1:-1;;;78620:60:0;;10026:2:1;78620:60:0::1;::::0;::::1;10008:21:1::0;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:46;10140:18;;78620:60:0::1;9824:340:1::0;78620:60:0::1;73159:5;78711:6;78695:13;54582:12:::0;;54372:7;54566:13;:28;;54328:303;78695:13:::1;:22;;;;:::i;:::-;:36;;78687:68;;;::::0;-1:-1:-1;;;78687:68:0;;12300:2:1;78687:68:0::1;::::0;::::1;12282:21:1::0;12339:2;12319:18;;;12312:30;-1:-1:-1;;;12358:18:1;;;12351:49;12417:18;;78687:68:0::1;12098:343:1::0;78687:68:0::1;73457:2;78770:6;:28;;78762:64;;;::::0;-1:-1:-1;;;78762:64:0;;14531:2:1;78762:64:0::1;::::0;::::1;14513:21:1::0;14570:2;14550:18;;;14543:30;14609:25;14589:18;;;14582:53;14652:18;;78762:64:0::1;14329:347:1::0;78762:64:0::1;78835:31;17024:10:::0;78845:12:::1;16944:98:::0;78835:31:::1;78875:34;78902:6;78888:11;;:20;;;;:::i;45080:201::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;-1:-1:-1;;;;;45169:22:0;::::1;45161:73;;;::::0;-1:-1:-1;;;45161:73:0;;14883:2:1;45161:73:0::1;::::0;::::1;14865:21:1::0;14922:2;14902:18;;;14895:30;14961:34;14941:18;;;14934:62;15032:8;15012:18;;;15005:36;15058:19;;45161:73:0::1;14681:402:1::0;45161:73:0::1;45245:28;45264:8;45245:18;:28::i;74675:110::-:0;44244:6;;-1:-1:-1;;;;;44244:6:0;17024:10;44391:23;44383:68;;;;-1:-1:-1;;;44383:68:0;;8284:2:1;44383:68:0;;;8266:21:1;;;8303:18;;;8296:30;-1:-1:-1;;;;;;;;;;;8342:18:1;;;8335:62;8414:18;;44383:68:0;8082:356:1;44383:68:0;74752:27:::1;:14;74769:10:::0;;74752:27:::1;:::i;61681:174::-:0;61738:4;61802:13;;61792:7;:23;61762:85;;;;-1:-1:-1;;61820:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;61820:27:0;;;;61819:28;;61681:174::o;69838:196::-;69953:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;69953:29:0;-1:-1:-1;;;;;69953:29:0;;;;;;;;;69998:28;;69953:24;;69998:28;;;;;;;69838:196;;;:::o;64781:2130::-;64896:35;64934:21;64947:7;64934:12;:21::i;:::-;64896:59;;64994:4;-1:-1:-1;;;;;64972:26:0;:13;:18;;;-1:-1:-1;;;;;64972:26:0;;64968:67;;65007:28;;;;;;;;;;;;;;64968:67;65048:22;17024:10;-1:-1:-1;;;;;65074:20:0;;;;:73;;-1:-1:-1;65111:36:0;65128:4;17024:10;60329:164;:::i;65111:36::-;65074:126;;;-1:-1:-1;17024:10:0;65164:20;65176:7;65164:11;:20::i;:::-;-1:-1:-1;;;;;65164:36:0;;65074:126;65048:153;;65219:17;65214:66;;65245:35;;;;;;;;;;;;;;65214:66;-1:-1:-1;;;;;65295:16:0;;65291:52;;65320:23;;;;;;;;;;;;;;65291:52;65464:35;65481:1;65485:7;65494:4;65464:8;:35::i;:::-;-1:-1:-1;;;;;65795:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;65795:31:0;;;;;;;-1:-1:-1;;65795:31:0;;;;;;;65841:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;65841:29:0;;;;;;;;;;;65921:20;;;:11;:20;;;;;;65956:18;;-1:-1:-1;;;;;;65989:49:0;;;;-1:-1:-1;;;66022:15:0;65989:49;;;;;;;;;;66312:11;;66372:24;;;;;66415:13;;65921:20;;66372:24;;66415:13;66411:384;;66625:13;;66610:11;:28;66606:174;;66663:20;;66732:28;;;;66706:54;;-1:-1:-1;;;66706:54:0;-1:-1:-1;;;;;;66706:54:0;;;-1:-1:-1;;;;;66663:20:0;;66706:54;;;;66606:174;65770:1036;;;66842:7;66838:2;-1:-1:-1;;;;;66823:27:0;66832:4;-1:-1:-1;;;;;66823:27:0;;;;;;;;;;;66861:42;64885:2026;;64781:2130;;;:::o;61863:104::-;61932:27;61942:2;61946:8;61932:27;;;;;;;;;;;;:9;:27::i;79494:198::-;79600:4;79623:63;79642:5;;79623:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;79649:15:0;;80431:25;;;17249:2:1;17245:15;;;-1:-1:-1;;17241:53:1;80431:25:0;;;;17229:66:1;;;;80431:25:0;;;;;;;;;17311:12:1;;;;80431:25:0;;;80421:36;;;;;79649:15;;-1:-1:-1;80421:36:0;-1:-1:-1;79623:18:0;:63::i;:::-;79616:70;79494:198;-1:-1:-1;;;;79494:198:0:o;80469:206::-;80542:5;80529:9;:18;;80521:53;;;;-1:-1:-1;;;80521:53:0;;15290:2:1;80521:53:0;;;15272:21:1;15329:2;15309:18;;;15302:30;15368:24;15348:18;;;15341:52;15410:18;;80521:53:0;15088:346:1;80521:53:0;80597:5;80585:9;:17;80581:89;;;17024:10;80613:49;80644:17;80656:5;80644:9;:17;:::i;:::-;80613:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56829:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;56940:7:0;57023:13;;57016:4;:20;56985:886;;;57057:31;57091:17;;;:11;:17;;;;;;;;;57057:51;;;;;;;;;-1:-1:-1;;;;;57057:51:0;;;;-1:-1:-1;;;57057:51:0;;;;;;;;;;;-1:-1:-1;;;57057:51:0;;;;;;;;;;;;;;57127:729;;57177:14;;-1:-1:-1;;;;;57177:28:0;;57173:101;;57241:9;56829:1109;-1:-1:-1;;;56829:1109:0:o;57173:101::-;-1:-1:-1;;;57616:6:0;57661:17;;;;:11;:17;;;;;;;;;57649:29;;;;;;;;;-1:-1:-1;;;;;57649:29:0;;;;;-1:-1:-1;;;57649:29:0;;;;;;;;;;;-1:-1:-1;;;57649:29:0;;;;;;;;;;;;;57709:28;57705:109;;57777:9;56829:1109;-1:-1:-1;;;56829:1109:0:o;57705:109::-;57576:261;;;57038:833;56985:886;57899:31;;;;;;;;;;;;;;45441:191;45534:6;;;-1:-1:-1;;;;;45551:17:0;;;-1:-1:-1;;45551:17:0;;;;;;;45584:40;;45534:6;;;45551:17;45534:6;;45584:40;;45515:16;;45584:40;45504:128;45441:191;:::o;79898:204::-;80008:4;80031:65;80050:5;;80031:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;80057:17:0;;80431:25;;;17249:2:1;17245:15;;;-1:-1:-1;;17241:53:1;80431:25:0;;;;17229:66:1;;;;80431:25:0;;;;;;;;;17311:12:1;;;;80431:25:0;;;80421:36;;;;;80057:17;;-1:-1:-1;80421:36:0;-1:-1:-1;79623:18:0;:63::i;70526:667::-;70710:72;;-1:-1:-1;;;70710:72:0;;70689:4;;-1:-1:-1;;;;;70710:36:0;;;;;:72;;17024:10;;70761:4;;70767:7;;70776:5;;70710:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70710:72:0;;;;;;;;-1:-1:-1;;70710:72:0;;;;;;;;;;;;:::i;:::-;;;70706:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70944:13:0;;70940:235;;70990:40;;-1:-1:-1;;;70990:40:0;;;;;;;;;;;70940:235;71133:6;71127:13;71118:6;71114:2;71110:15;71103:38;70706:480;-1:-1:-1;;;;;;70829:55:0;-1:-1:-1;;;70829:55:0;;-1:-1:-1;70526:667:0;;;;;;:::o;74335:107::-;74395:13;74424:12;74417:19;;;;;:::i;17531:723::-;17587:13;17808:10;17804:53;;-1:-1:-1;;17835:10:0;;;;;;;;;;;;;;;;;;17531:723::o;17804:53::-;17882:5;17867:12;17923:78;17930:9;;17923:78;;17956:8;;;;:::i;:::-;;-1:-1:-1;17979:10:0;;-1:-1:-1;17987:2:0;17979:10;;:::i;:::-;;;17923:78;;;18011:19;18043:6;18033:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18033:17:0;;18011:39;;18061:154;18068:10;;18061:154;;18095:11;18105:1;18095:11;;:::i;:::-;;-1:-1:-1;18164:10:0;18172:2;18164:5;:10;:::i;:::-;18151:24;;:2;:24;:::i;:::-;18138:39;;18121:6;18128;18121:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;18192:11:0;18201:2;18192:11;;:::i;:::-;;;18061:154;;80108:208;80220:4;80243:67;80262:5;;80243:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;80269:19:0;;80431:25;;;17249:2:1;17245:15;;;-1:-1:-1;;17241:53:1;80431:25:0;;;;17229:66:1;;;;80431:25:0;;;;;;;;;17311:12:1;;;;80431:25:0;;;80421:36;;;;;80269:19;;-1:-1:-1;80421:36:0;-1:-1:-1;79623:18:0;:63::i;79698:194::-;79802:4;79825:61;79844:5;;79825:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;79851:13:0;;80431:25;;;17249:2:1;17245:15;;;-1:-1:-1;;17241:53:1;80431:25:0;;;;17229:66:1;;;;80431:25:0;;;;;;;;;17311:12:1;;;;80431:25:0;;;80421:36;;;;;79851:13;;-1:-1:-1;80421:36:0;-1:-1:-1;79623:18:0;:63::i;62330:163::-;62453:32;62459:2;62463:8;62473:5;62480:4;62453:5;:32::i;49337:190::-;49462:4;49515;49486:25;49499:5;49506:4;49486:12;:25::i;:::-;:33;;49337:190;-1:-1:-1;;;;49337:190:0:o;62752:1775::-;62891:20;62914:13;-1:-1:-1;;;;;62942:16:0;;62938:48;;62967:19;;;;;;;;;;;;;;62938:48;63001:13;62997:44;;63023:18;;;;;;;;;;;;;;62997:44;-1:-1:-1;;;;;63392:16:0;;;;;;:12;:16;;;;;;;;:44;;63451:49;;;63392:44;;;;;;;;63451:49;;;;-1:-1:-1;;63392:44:0;;;;;;63451:49;;;;;;;;;;;;;;;;63517:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;63567:66:0;;;;-1:-1:-1;;;63617:15:0;63567:66;;;;;;;;;;63517:25;63714:23;;;63758:4;:23;;;;-1:-1:-1;;;;;;63766:13:0;;9282:19;:23;;63766:15;63754:641;;;63802:314;63833:38;;63858:12;;-1:-1:-1;;;;;63833:38:0;;;63850:1;;63833:38;;63850:1;;63833:38;63899:69;63938:1;63942:2;63946:14;;;;;;63962:5;63899:30;:69::i;:::-;63894:174;;64004:40;;-1:-1:-1;;;64004:40:0;;;;;;;;;;;63894:174;64111:3;64095:12;:19;;63802:314;;64197:12;64180:13;;:29;64176:43;;64211:8;;;64176:43;63754:641;;;64260:120;64291:40;;64316:14;;;;;-1:-1:-1;;;;;64291:40:0;;;64308:1;;64291:40;;64308:1;;64291:40;64375:3;64359:12;:19;;64260:120;;63754:641;-1:-1:-1;64409:13:0;:28;64459:60;61057:369;49889:675;49972:7;50015:4;49972:7;50030:497;50054:5;:12;50050:1;:16;50030:497;;;50088:20;50111:5;50117:1;50111:8;;;;;;;;:::i;:::-;;;;;;;50088:31;;50154:12;50138;:28;50134:382;;50640:13;50690:15;;;50726:4;50719:15;;;50773:4;50757:21;;50266:57;;50134:382;;;50640:13;50690:15;;;50726:4;50719:15;;;50773:4;50757:21;;50443:57;;50134:382;-1:-1:-1;50068:3:0;;;;:::i;:::-;;;;50030:497;;;-1:-1:-1;50544:12:0;49889:675;-1:-1:-1;;;49889:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;820:258::-;892:1;902:113;916:6;913:1;910:13;902:113;;;992:11;;;986:18;973:11;;;966:39;938:2;931:10;902:113;;;1033:6;1030:1;1027:13;1024:48;;;-1:-1:-1;;1068:1:1;1050:16;;1043:27;820:258::o;1083:::-;1125:3;1163:5;1157:12;1190:6;1185:3;1178:19;1206:63;1262:6;1255:4;1250:3;1246:14;1239:4;1232:5;1228:16;1206:63;:::i;:::-;1323:2;1302:15;-1:-1:-1;;1298:29:1;1289:39;;;;1330:4;1285:50;;1083:258;-1:-1:-1;;1083:258:1:o;1346:220::-;1495:2;1484:9;1477:21;1458:4;1515:45;1556:2;1545:9;1541:18;1533:6;1515:45;:::i;1571:180::-;1630:6;1683:2;1671:9;1662:7;1658:23;1654:32;1651:52;;;1699:1;1696;1689:12;1651:52;-1:-1:-1;1722:23:1;;1571:180;-1:-1:-1;1571:180:1:o;1987:196::-;2055:20;;-1:-1:-1;;;;;2104:54:1;;2094:65;;2084:93;;2173:1;2170;2163:12;2084:93;1987:196;;;:::o;2188:254::-;2256:6;2264;2317:2;2305:9;2296:7;2292:23;2288:32;2285:52;;;2333:1;2330;2323:12;2285:52;2356:29;2375:9;2356:29;:::i;:::-;2346:39;2432:2;2417:18;;;;2404:32;;-1:-1:-1;;;2188:254:1:o;2447:328::-;2524:6;2532;2540;2593:2;2581:9;2572:7;2568:23;2564:32;2561:52;;;2609:1;2606;2599:12;2561:52;2632:29;2651:9;2632:29;:::i;:::-;2622:39;;2680:38;2714:2;2703:9;2699:18;2680:38;:::i;:::-;2670:48;;2765:2;2754:9;2750:18;2737:32;2727:42;;2447:328;;;;;:::o;2962:689::-;3057:6;3065;3073;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3182:9;3169:23;3211:18;3252:2;3244:6;3241:14;3238:34;;;3268:1;3265;3258:12;3238:34;3306:6;3295:9;3291:22;3281:32;;3351:7;3344:4;3340:2;3336:13;3332:27;3322:55;;3373:1;3370;3363:12;3322:55;3413:2;3400:16;3439:2;3431:6;3428:14;3425:34;;;3455:1;3452;3445:12;3425:34;3510:7;3503:4;3493:6;3490:1;3486:14;3482:2;3478:23;3474:34;3471:47;3468:67;;;3531:1;3528;3521:12;3468:67;3562:4;3554:13;;;;3586:6;;-1:-1:-1;3624:20:1;;;;3611:34;;2962:689;-1:-1:-1;;;;2962:689:1:o;3656:592::-;3727:6;3735;3788:2;3776:9;3767:7;3763:23;3759:32;3756:52;;;3804:1;3801;3794:12;3756:52;3844:9;3831:23;3873:18;3914:2;3906:6;3903:14;3900:34;;;3930:1;3927;3920:12;3900:34;3968:6;3957:9;3953:22;3943:32;;4013:7;4006:4;4002:2;3998:13;3994:27;3984:55;;4035:1;4032;4025:12;3984:55;4075:2;4062:16;4101:2;4093:6;4090:14;4087:34;;;4117:1;4114;4107:12;4087:34;4162:7;4157:2;4148:6;4144:2;4140:15;4136:24;4133:37;4130:57;;;4183:1;4180;4173:12;4130:57;4214:2;4206:11;;;;;4236:6;;-1:-1:-1;3656:592:1;;-1:-1:-1;;;;3656:592:1:o;4438:186::-;4497:6;4550:2;4538:9;4529:7;4525:23;4521:32;4518:52;;;4566:1;4563;4556:12;4518:52;4589:29;4608:9;4589:29;:::i;5098:184::-;-1:-1:-1;;;5147:1:1;5140:88;5247:4;5244:1;5237:15;5271:4;5268:1;5261:15;5287:399;5433:2;5418:18;;5466:1;5455:13;;5445:201;;-1:-1:-1;;;5499:1:1;5492:88;5603:4;5600:1;5593:15;5631:4;5628:1;5621:15;5445:201;5655:25;;;5287:399;:::o;5691:347::-;5756:6;5764;5817:2;5805:9;5796:7;5792:23;5788:32;5785:52;;;5833:1;5830;5823:12;5785:52;5856:29;5875:9;5856:29;:::i;:::-;5846:39;;5935:2;5924:9;5920:18;5907:32;5982:5;5975:13;5968:21;5961:5;5958:32;5948:60;;6004:1;6001;5994:12;5948:60;6027:5;6017:15;;;5691:347;;;;;:::o;6043:184::-;-1:-1:-1;;;6092:1:1;6085:88;6192:4;6189:1;6182:15;6216:4;6213:1;6206:15;6232:1138;6327:6;6335;6343;6351;6404:3;6392:9;6383:7;6379:23;6375:33;6372:53;;;6421:1;6418;6411:12;6372:53;6444:29;6463:9;6444:29;:::i;:::-;6434:39;;6492:38;6526:2;6515:9;6511:18;6492:38;:::i;:::-;6482:48;;6577:2;6566:9;6562:18;6549:32;6539:42;;6632:2;6621:9;6617:18;6604:32;6655:18;6696:2;6688:6;6685:14;6682:34;;;6712:1;6709;6702:12;6682:34;6750:6;6739:9;6735:22;6725:32;;6795:7;6788:4;6784:2;6780:13;6776:27;6766:55;;6817:1;6814;6807:12;6766:55;6853:2;6840:16;6875:2;6871;6868:10;6865:36;;;6881:18;;:::i;:::-;6956:2;6950:9;6924:2;7010:13;;-1:-1:-1;;7006:22:1;;;7030:2;7002:31;6998:40;6986:53;;;7054:18;;;7074:22;;;7051:46;7048:72;;;7100:18;;:::i;:::-;7140:10;7136:2;7129:22;7175:2;7167:6;7160:18;7215:7;7210:2;7205;7201;7197:11;7193:20;7190:33;7187:53;;;7236:1;7233;7226:12;7187:53;7292:2;7287;7283;7279:11;7274:2;7266:6;7262:15;7249:46;7337:1;7332:2;7327;7319:6;7315:15;7311:24;7304:35;7358:6;7348:16;;;;;;;6232:1138;;;;;;;:::o;7375:260::-;7443:6;7451;7504:2;7492:9;7483:7;7479:23;7475:32;7472:52;;;7520:1;7517;7510:12;7472:52;7543:29;7562:9;7543:29;:::i;:::-;7533:39;;7591:38;7625:2;7614:9;7610:18;7591:38;:::i;:::-;7581:48;;7375:260;;;;;:::o;7640:437::-;7719:1;7715:12;;;;7762;;;7783:61;;7837:4;7829:6;7825:17;7815:27;;7783:61;7890:2;7882:6;7879:14;7859:18;7856:38;7853:218;;;-1:-1:-1;;;7924:1:1;7917:88;8028:4;8025:1;8018:15;8056:4;8053:1;8046:15;7853:218;;7640:437;;;:::o;8443:184::-;-1:-1:-1;;;8492:1:1;8485:88;8592:4;8589:1;8582:15;8616:4;8613:1;8606:15;8632:128;8672:3;8703:1;8699:6;8696:1;8693:13;8690:39;;;8709:18;;:::i;:::-;-1:-1:-1;8745:9:1;;8632:128::o;11218:168::-;11258:7;11324:1;11320;11316:6;11312:14;11309:1;11306:21;11301:1;11294:9;11287:17;11283:45;11280:71;;;11331:18;;:::i;:::-;-1:-1:-1;11371:9:1;;11218:168::o;12446:470::-;12625:3;12663:6;12657:13;12679:53;12725:6;12720:3;12713:4;12705:6;12701:17;12679:53;:::i;:::-;12795:13;;12754:16;;;;12817:57;12795:13;12754:16;12851:4;12839:17;;12817:57;:::i;:::-;12890:20;;12446:470;-1:-1:-1;;;;12446:470:1:o;15439:125::-;15479:4;15507:1;15504;15501:8;15498:34;;;15512:18;;:::i;:::-;-1:-1:-1;15549:9:1;;15439:125::o;15569:512::-;15763:4;-1:-1:-1;;;;;15873:2:1;15865:6;15861:15;15850:9;15843:34;15925:2;15917:6;15913:15;15908:2;15897:9;15893:18;15886:43;;15965:6;15960:2;15949:9;15945:18;15938:34;16008:3;16003:2;15992:9;15988:18;15981:31;16029:46;16070:3;16059:9;16055:19;16047:6;16029:46;:::i;:::-;16021:54;15569:512;-1:-1:-1;;;;;;15569:512:1:o;16086:249::-;16155:6;16208:2;16196:9;16187:7;16183:23;16179:32;16176:52;;;16224:1;16221;16214:12;16176:52;16256:9;16250:16;16275:30;16299:5;16275:30;:::i;16340:135::-;16379:3;-1:-1:-1;;16400:17:1;;16397:43;;;16420:18;;:::i;:::-;-1:-1:-1;16467:1:1;16456:13;;16340:135::o;16480:184::-;-1:-1:-1;;;16529:1:1;16522:88;16629:4;16626:1;16619:15;16653:4;16650:1;16643:15;16669:120;16709:1;16735;16725:35;;16740:18;;:::i;:::-;-1:-1:-1;16774:9:1;;16669:120::o;16794:112::-;16826:1;16852;16842:35;;16857:18;;:::i;:::-;-1:-1:-1;16891:9:1;;16794:112::o;16911:184::-;-1:-1:-1;;;16960:1:1;16953:88;17060:4;17057:1;17050:15;17084:4;17081:1;17074:15
Swarm Source
ipfs://f5444af3a463c6fbae53f9814bc3e31ebf3e72ea31161b58ef20d323274e073b
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.