ERC-721
Overview
Max Total Supply
50 LAND
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 LANDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Farmlands
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-14 */ // Sources flattened with hardhat v2.6.5 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] 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] 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] 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] 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] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] 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] 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] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] 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 tokenId); /** * @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] 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 contracts/Farmlands.sol pragma solidity ^0.8.6; contract Farmlands is ERC721Enumerable, Ownable { using Strings for uint256; event MintLand(address indexed sender, uint256 startWith, uint256 times); //supply counters uint256 public totalLands; uint256 public totalCount; uint256 public totalPublic; //token Index tracker uint256 public maxBatch; uint256 public price; //string string public baseURI; //bool bool private started; //constructor args constructor( string memory name_, string memory symbol_, string memory baseURI_, uint256 maxTokens_, uint256 forDevMint_, uint256 maxBatch_, uint256 price_ ) ERC721(name_, symbol_) { baseURI = baseURI_; totalCount = maxTokens_; totalPublic = maxTokens_ - forDevMint_; maxBatch = maxBatch_; price = price_; } //basic functions. function _baseURI() internal view virtual override returns (string memory){ return baseURI; } function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } //erc721 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token."); string memory existedBaseURI = _baseURI(); return bytes(existedBaseURI).length > 0 ? string(abi.encodePacked(existedBaseURI, tokenId.toString(), "")) : ''; } function setStart(bool _start) public onlyOwner { started = _start; } function tokensOfOwner(address owner) public view returns (uint256[] memory) { uint256 count = balanceOf(owner); uint256[] memory ids = new uint256[](count); for (uint256 i = 0; i < count; i++) { ids[i] = tokenOfOwnerByIndex(owner, i); } return ids; } function devMint(uint256 _times) public onlyOwner { require(totalLands >= totalPublic, "Must sell out."); require(totalPublic +_times <= totalCount, "exceed max supply."); emit MintLand(_msgSender(), totalPublic+1, _times); for(uint256 i=0; i<_times; i++) { _mint(_msgSender(), 1 + totalPublic++); } } function mint(uint256 _times) payable public { require(started, "Land sale ain't started, partner."); require(_times > 0 && _times <= maxBatch, "Too many lands"); require(totalLands + _times <= totalPublic, "ALL BOUGHT OUT"); require(msg.value == _times * price, "value error, please check price."); payable(owner()).transfer(msg.value); emit MintLand(_msgSender(), totalLands+1, _times); for(uint256 i=0; i< _times; i++){ _mint(_msgSender(), 1 + totalLands++); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"maxTokens_","type":"uint256"},{"internalType":"uint256","name":"forDevMint_","type":"uint256"},{"internalType":"uint256","name":"maxBatch_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintLand","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLands","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620031cd380380620031cd833981016040819052620000349162000272565b8651879087906200004d90600090602085019062000115565b5080516200006390600190602084019062000115565b505050620000806200007a620000bf60201b60201c565b620000c3565b84516200009590601090602088019062000115565b50600c849055620000a783856200032a565b600d55600e91909155600f5550620003a39350505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001239062000350565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600082601f830112620001cd57600080fd5b81516001600160401b0380821115620001ea57620001ea6200038d565b604051601f8301601f19908116603f011681019082821181831017156200021557620002156200038d565b816040528381526020925086838588010111156200023257600080fd5b600091505b8382101562000256578582018301518183018401529082019062000237565b83821115620002685760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200028e57600080fd5b87516001600160401b0380821115620002a657600080fd5b620002b48b838c01620001bb565b985060208a0151915080821115620002cb57600080fd5b620002d98b838c01620001bb565b975060408a0151915080821115620002f057600080fd5b50620002ff8a828b01620001bb565b955050606088015193506080880151925060a0880151915060c0880151905092959891949750929550565b6000828210156200034b57634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200036557607f821691505b602082108114156200038757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e1a80620003b36000396000f3fe6080604052600436106101cd5760003560e01c806367765b87116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde14610507578063c87b56dd14610527578063e985e9c514610547578063f2fde38b1461059d57600080fd5b806395d89b41146104a9578063a035b1fe146104be578063a0712d68146104d4578063a22cb465146104e757600080fd5b806370a08231116100d157806370a082311461041c578063715018a61461043c5780638462151c146104515780638da5cb5b1461047e57600080fd5b806367765b87146103d157806368e24327146103e75780636c0360eb1461040757600080fd5b806323d07d1b1161016f57806342842e0e1161013e57806342842e0e146103515780634f6ccce71461037157806355f804b3146103915780636352211e146103b157600080fd5b806323d07d1b146102e55780632f745c59146102fb57806334eafb111461031b578063375a069a1461033157600080fd5b8063095ea7b3116101ab578063095ea7b31461026e57806318160ddd146102905780631d8de063146102af57806323b872dd146102c557600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046129c9565b6105bd565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610619565b6040516101fe9190612b6b565b34801561023557600080fd5b50610249610244366004612a4c565b6106ab565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561027a57600080fd5b5061028e610289366004612984565b61078a565b005b34801561029c57600080fd5b506008545b6040519081526020016101fe565b3480156102bb57600080fd5b506102a1600b5481565b3480156102d157600080fd5b5061028e6102e03660046128a2565b610917565b3480156102f157600080fd5b506102a1600d5481565b34801561030757600080fd5b506102a1610316366004612984565b6109b8565b34801561032757600080fd5b506102a1600c5481565b34801561033d57600080fd5b5061028e61034c366004612a4c565b610a87565b34801561035d57600080fd5b5061028e61036c3660046128a2565b610c81565b34801561037d57600080fd5b506102a161038c366004612a4c565b610c9c565b34801561039d57600080fd5b5061028e6103ac366004612a03565b610d5a565b3480156103bd57600080fd5b506102496103cc366004612a4c565b610dee565b3480156103dd57600080fd5b506102a1600e5481565b3480156103f357600080fd5b5061028e6104023660046129ae565b610ea0565b34801561041357600080fd5b5061021c610f52565b34801561042857600080fd5b506102a1610437366004612854565b610fe0565b34801561044857600080fd5b5061028e6110ae565b34801561045d57600080fd5b5061047161046c366004612854565b61113b565b6040516101fe9190612b27565b34801561048a57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610249565b3480156104b557600080fd5b5061021c6111dd565b3480156104ca57600080fd5b506102a1600f5481565b61028e6104e2366004612a4c565b6111ec565b3480156104f357600080fd5b5061028e61050236600461295a565b6114a5565b34801561051357600080fd5b5061028e6105223660046128de565b6115bc565b34801561053357600080fd5b5061021c610542366004612a4c565b611664565b34801561055357600080fd5b506101f261056236600461286f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a957600080fd5b5061028e6105b8366004612854565b611774565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106135750610613826118a4565b92915050565b60606000805461062890612c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461065490612c2a565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061079582610dee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610758565b3373ffffffffffffffffffffffffffffffffffffffff8216148061087c575061087c8133610562565b610908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610758565b6109128383611987565b505050565b6109213382611a27565b6109ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610758565b610912838383611b97565b60006109c383610fe0565b8210610a51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610758565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b600d54600b541015610b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4d7573742073656c6c206f75742e0000000000000000000000000000000000006044820152606401610758565b600c5481600d54610b879190612b7e565b1115610bef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f657863656564206d617820737570706c792e00000000000000000000000000006044820152606401610758565b600d5433907f59397fa3b16ace9d5bb4841253423be95f06cdca24a50068b5ee6b4c20a65d4890610c21906001612b7e565b60408051918252602082018590520160405180910390a260005b81811015610c7d57610c6b33600d8054906000610c5783612c7e565b90915550610c66906001612b7e565b611e09565b80610c7581612c7e565b915050610c3b565b5050565b610912838383604051806020016040528060008152506115bc565b6000610ca760085490565b8210610d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610758565b60088281548110610d4857610d48612d58565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b8051610c7d9060109060208401906126ee565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610758565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60108054610f5f90612c2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b90612c2a565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610758565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b6111396000611fd7565b565b6060600061114883610fe0565b905060008167ffffffffffffffff81111561116557611165612d87565b60405190808252806020026020018201604052801561118e578160200160208202803683370190505b50905060005b828110156111d5576111a685826109b8565b8282815181106111b8576111b8612d58565b6020908102919091010152806111cd81612c7e565b915050611194565b509392505050565b60606001805461062890612c2a565b60115460ff1661127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4c616e642073616c652061696e277420737461727465642c20706172746e657260448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610758565b6000811180156112905750600e548111155b6112f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f546f6f206d616e79206c616e64730000000000000000000000000000000000006044820152606401610758565b600d5481600b546113079190612b7e565b111561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f414c4c20424f55474854204f55540000000000000000000000000000000000006044820152606401610758565b600f5461137c9082612baa565b34146113e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e6044820152606401610758565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02916000818181858888f1935050505015801561142a573d6000803e3d6000fd5b50600b5433907f59397fa3b16ace9d5bb4841253423be95f06cdca24a50068b5ee6b4c20a65d489061145d906001612b7e565b60408051918252602082018590520160405180910390a260005b81811015610c7d5761149333600b8054906000610c5783612c7e565b8061149d81612c7e565b915050611477565b73ffffffffffffffffffffffffffffffffffffffff8216331415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610758565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c63383611a27565b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610758565b61165e8484848461204e565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e000000000000000000000000000000006064820152608401610758565b60006117226120f1565b90506000815111611742576040518060200160405280600081525061176d565b8061174c84612100565b60405160200161175d929190612aaf565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b73ffffffffffffffffffffffffffffffffffffffff8116611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610758565b6118a181611fd7565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061193757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610613565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906119e182610dee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610758565b6000611ae383610dee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5257508373ffffffffffffffffffffffffffffffffffffffff16611b3a846106ab565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b8f575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb782610dee565b73ffffffffffffffffffffffffffffffffffffffff1614611c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610758565b73ffffffffffffffffffffffffffffffffffffffff8216611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610758565b611d07838383612232565b611d12600082611987565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611d48908490612be7565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611d83908490612b7e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216611e86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610758565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611f12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610758565b611f1e60008383612232565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611f54908490612b7e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612059848484611b97565b61206584848484612338565b61165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610758565b60606010805461062890612c2a565b60608161214057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561216a578061215481612c7e565b91506121639050600a83612b96565b9150612144565b60008167ffffffffffffffff81111561218557612185612d87565b6040519080825280601f01601f1916602001820160405280156121af576020820181803683370190505b5090505b8415611b8f576121c4600183612be7565b91506121d1600a86612cb7565b6121dc906030612b7e565b60f81b8183815181106121f1576121f1612d58565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061222b600a86612b96565b94506121b3565b73ffffffffffffffffffffffffffffffffffffffff831661229a5761229581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122d7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122d7576122d78382612537565b73ffffffffffffffffffffffffffffffffffffffff82166122fb57610912816125ee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461091257610912828261269d565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561252c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906123af903390899088908890600401612ade565b602060405180830381600087803b1580156123c957600080fd5b505af1925050508015612417575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612414918101906129e6565b60015b6124e1573d808015612445576040519150601f19603f3d011682016040523d82523d6000602084013e61244a565b606091505b5080516124d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610758565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b8f565b506001949350505050565b6000600161254484610fe0565b61254e9190612be7565b6000838152600760205260409020549091508082146125ae5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b60085460009061260090600190612be7565b6000838152600960205260408120546008805493945090928490811061262857612628612d58565b90600052602060002001549050806008838154811061264957612649612d58565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061268157612681612d29565b6001900381819060005260206000200160009055905550505050565b60006126a883610fe0565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126fa90612c2a565b90600052602060002090601f01602090048101928261271c5760008555612762565b82601f1061273557805160ff1916838001178555612762565b82800160010185558215612762579182015b82811115612762578251825591602001919060010190612747565b5061276e929150612772565b5090565b5b8082111561276e5760008155600101612773565b600067ffffffffffffffff808411156127a2576127a2612d87565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156127e8576127e8612d87565b8160405280935085815286868601111561280157600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461283f57600080fd5b919050565b8035801515811461283f57600080fd5b60006020828403121561286657600080fd5b61176d8261281b565b6000806040838503121561288257600080fd5b61288b8361281b565b91506128996020840161281b565b90509250929050565b6000806000606084860312156128b757600080fd5b6128c08461281b565b92506128ce6020850161281b565b9150604084013590509250925092565b600080600080608085870312156128f457600080fd5b6128fd8561281b565b935061290b6020860161281b565b925060408501359150606085013567ffffffffffffffff81111561292e57600080fd5b8501601f8101871361293f57600080fd5b61294e87823560208401612787565b91505092959194509250565b6000806040838503121561296d57600080fd5b6129768361281b565b915061289960208401612844565b6000806040838503121561299757600080fd5b6129a08361281b565b946020939093013593505050565b6000602082840312156129c057600080fd5b61176d82612844565b6000602082840312156129db57600080fd5b813561176d81612db6565b6000602082840312156129f857600080fd5b815161176d81612db6565b600060208284031215612a1557600080fd5b813567ffffffffffffffff811115612a2c57600080fd5b8201601f81018413612a3d57600080fd5b611b8f84823560208401612787565b600060208284031215612a5e57600080fd5b5035919050565b60008151808452612a7d816020860160208601612bfe565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612ac1818460208801612bfe565b835190830190612ad5818360208801612bfe565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b1d6080830184612a65565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b5f57835183529284019291840191600101612b43565b50909695505050505050565b60208152600061176d6020830184612a65565b60008219821115612b9157612b91612ccb565b500190565b600082612ba557612ba5612cfa565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612be257612be2612ccb565b500290565b600082821015612bf957612bf9612ccb565b500390565b60005b83811015612c19578181015183820152602001612c01565b8381111561165e5750506000910152565b600181811c90821680612c3e57607f821691505b60208210811415612c78577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cb057612cb0612ccb565b5060010190565b600082612cc657612cc6612cfa565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146118a157600080fdfea2646970667358221220680ffc1c7aadf4ca9c13b544ea16158799ff716ed0eef8b756ba02335be7616764736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000000094661726d6c616e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414e44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596a6133463576363234416d526261394d797963424d52326e704b376f32376a68677334336f66785865594e2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806367765b87116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde14610507578063c87b56dd14610527578063e985e9c514610547578063f2fde38b1461059d57600080fd5b806395d89b41146104a9578063a035b1fe146104be578063a0712d68146104d4578063a22cb465146104e757600080fd5b806370a08231116100d157806370a082311461041c578063715018a61461043c5780638462151c146104515780638da5cb5b1461047e57600080fd5b806367765b87146103d157806368e24327146103e75780636c0360eb1461040757600080fd5b806323d07d1b1161016f57806342842e0e1161013e57806342842e0e146103515780634f6ccce71461037157806355f804b3146103915780636352211e146103b157600080fd5b806323d07d1b146102e55780632f745c59146102fb57806334eafb111461031b578063375a069a1461033157600080fd5b8063095ea7b3116101ab578063095ea7b31461026e57806318160ddd146102905780631d8de063146102af57806323b872dd146102c557600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046129c9565b6105bd565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c610619565b6040516101fe9190612b6b565b34801561023557600080fd5b50610249610244366004612a4c565b6106ab565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101fe565b34801561027a57600080fd5b5061028e610289366004612984565b61078a565b005b34801561029c57600080fd5b506008545b6040519081526020016101fe565b3480156102bb57600080fd5b506102a1600b5481565b3480156102d157600080fd5b5061028e6102e03660046128a2565b610917565b3480156102f157600080fd5b506102a1600d5481565b34801561030757600080fd5b506102a1610316366004612984565b6109b8565b34801561032757600080fd5b506102a1600c5481565b34801561033d57600080fd5b5061028e61034c366004612a4c565b610a87565b34801561035d57600080fd5b5061028e61036c3660046128a2565b610c81565b34801561037d57600080fd5b506102a161038c366004612a4c565b610c9c565b34801561039d57600080fd5b5061028e6103ac366004612a03565b610d5a565b3480156103bd57600080fd5b506102496103cc366004612a4c565b610dee565b3480156103dd57600080fd5b506102a1600e5481565b3480156103f357600080fd5b5061028e6104023660046129ae565b610ea0565b34801561041357600080fd5b5061021c610f52565b34801561042857600080fd5b506102a1610437366004612854565b610fe0565b34801561044857600080fd5b5061028e6110ae565b34801561045d57600080fd5b5061047161046c366004612854565b61113b565b6040516101fe9190612b27565b34801561048a57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610249565b3480156104b557600080fd5b5061021c6111dd565b3480156104ca57600080fd5b506102a1600f5481565b61028e6104e2366004612a4c565b6111ec565b3480156104f357600080fd5b5061028e61050236600461295a565b6114a5565b34801561051357600080fd5b5061028e6105223660046128de565b6115bc565b34801561053357600080fd5b5061021c610542366004612a4c565b611664565b34801561055357600080fd5b506101f261056236600461286f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105a957600080fd5b5061028e6105b8366004612854565b611774565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806106135750610613826118a4565b92915050565b60606000805461062890612c2a565b80601f016020809104026020016040519081016040528092919081815260200182805461065490612c2a565b80156106a15780601f10610676576101008083540402835291602001916106a1565b820191906000526020600020905b81548152906001019060200180831161068457829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061079582610dee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610758565b3373ffffffffffffffffffffffffffffffffffffffff8216148061087c575061087c8133610562565b610908576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610758565b6109128383611987565b505050565b6109213382611a27565b6109ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610758565b610912838383611b97565b60006109c383610fe0565b8210610a51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610758565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b600d54600b541015610b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4d7573742073656c6c206f75742e0000000000000000000000000000000000006044820152606401610758565b600c5481600d54610b879190612b7e565b1115610bef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f657863656564206d617820737570706c792e00000000000000000000000000006044820152606401610758565b600d5433907f59397fa3b16ace9d5bb4841253423be95f06cdca24a50068b5ee6b4c20a65d4890610c21906001612b7e565b60408051918252602082018590520160405180910390a260005b81811015610c7d57610c6b33600d8054906000610c5783612c7e565b90915550610c66906001612b7e565b611e09565b80610c7581612c7e565b915050610c3b565b5050565b610912838383604051806020016040528060008152506115bc565b6000610ca760085490565b8210610d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610758565b60088281548110610d4857610d48612d58565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b8051610c7d9060109060208401906126ee565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610758565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60108054610f5f90612c2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b90612c2a565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610758565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b6111396000611fd7565b565b6060600061114883610fe0565b905060008167ffffffffffffffff81111561116557611165612d87565b60405190808252806020026020018201604052801561118e578160200160208202803683370190505b50905060005b828110156111d5576111a685826109b8565b8282815181106111b8576111b8612d58565b6020908102919091010152806111cd81612c7e565b915050611194565b509392505050565b60606001805461062890612c2a565b60115460ff1661127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4c616e642073616c652061696e277420737461727465642c20706172746e657260448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610758565b6000811180156112905750600e548111155b6112f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f546f6f206d616e79206c616e64730000000000000000000000000000000000006044820152606401610758565b600d5481600b546113079190612b7e565b111561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f414c4c20424f55474854204f55540000000000000000000000000000000000006044820152606401610758565b600f5461137c9082612baa565b34146113e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f76616c7565206572726f722c20706c6561736520636865636b2070726963652e6044820152606401610758565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116903480156108fc02916000818181858888f1935050505015801561142a573d6000803e3d6000fd5b50600b5433907f59397fa3b16ace9d5bb4841253423be95f06cdca24a50068b5ee6b4c20a65d489061145d906001612b7e565b60408051918252602082018590520160405180910390a260005b81811015610c7d5761149333600b8054906000610c5783612c7e565b8061149d81612c7e565b915050611477565b73ffffffffffffffffffffffffffffffffffffffff8216331415611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610758565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c63383611a27565b611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610758565b61165e8484848461204e565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e000000000000000000000000000000006064820152608401610758565b60006117226120f1565b90506000815111611742576040518060200160405280600081525061176d565b8061174c84612100565b60405160200161175d929190612aaf565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610758565b73ffffffffffffffffffffffffffffffffffffffff8116611898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610758565b6118a181611fd7565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061193757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610613565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906119e182610dee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610758565b6000611ae383610dee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5257508373ffffffffffffffffffffffffffffffffffffffff16611b3a846106ab565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b8f575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611bb782610dee565b73ffffffffffffffffffffffffffffffffffffffff1614611c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610758565b73ffffffffffffffffffffffffffffffffffffffff8216611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610758565b611d07838383612232565b611d12600082611987565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611d48908490612be7565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611d83908490612b7e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216611e86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610758565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611f12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610758565b611f1e60008383612232565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611f54908490612b7e565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612059848484611b97565b61206584848484612338565b61165e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610758565b60606010805461062890612c2a565b60608161214057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561216a578061215481612c7e565b91506121639050600a83612b96565b9150612144565b60008167ffffffffffffffff81111561218557612185612d87565b6040519080825280601f01601f1916602001820160405280156121af576020820181803683370190505b5090505b8415611b8f576121c4600183612be7565b91506121d1600a86612cb7565b6121dc906030612b7e565b60f81b8183815181106121f1576121f1612d58565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061222b600a86612b96565b94506121b3565b73ffffffffffffffffffffffffffffffffffffffff831661229a5761229581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122d7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122d7576122d78382612537565b73ffffffffffffffffffffffffffffffffffffffff82166122fb57610912816125ee565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461091257610912828261269d565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561252c576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906123af903390899088908890600401612ade565b602060405180830381600087803b1580156123c957600080fd5b505af1925050508015612417575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612414918101906129e6565b60015b6124e1573d808015612445576040519150601f19603f3d011682016040523d82523d6000602084013e61244a565b606091505b5080516124d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610758565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611b8f565b506001949350505050565b6000600161254484610fe0565b61254e9190612be7565b6000838152600760205260409020549091508082146125ae5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b60085460009061260090600190612be7565b6000838152600960205260408120546008805493945090928490811061262857612628612d58565b90600052602060002001549050806008838154811061264957612649612d58565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061268157612681612d29565b6001900381819060005260206000200160009055905550505050565b60006126a883610fe0565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126fa90612c2a565b90600052602060002090601f01602090048101928261271c5760008555612762565b82601f1061273557805160ff1916838001178555612762565b82800160010185558215612762579182015b82811115612762578251825591602001919060010190612747565b5061276e929150612772565b5090565b5b8082111561276e5760008155600101612773565b600067ffffffffffffffff808411156127a2576127a2612d87565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156127e8576127e8612d87565b8160405280935085815286868601111561280157600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461283f57600080fd5b919050565b8035801515811461283f57600080fd5b60006020828403121561286657600080fd5b61176d8261281b565b6000806040838503121561288257600080fd5b61288b8361281b565b91506128996020840161281b565b90509250929050565b6000806000606084860312156128b757600080fd5b6128c08461281b565b92506128ce6020850161281b565b9150604084013590509250925092565b600080600080608085870312156128f457600080fd5b6128fd8561281b565b935061290b6020860161281b565b925060408501359150606085013567ffffffffffffffff81111561292e57600080fd5b8501601f8101871361293f57600080fd5b61294e87823560208401612787565b91505092959194509250565b6000806040838503121561296d57600080fd5b6129768361281b565b915061289960208401612844565b6000806040838503121561299757600080fd5b6129a08361281b565b946020939093013593505050565b6000602082840312156129c057600080fd5b61176d82612844565b6000602082840312156129db57600080fd5b813561176d81612db6565b6000602082840312156129f857600080fd5b815161176d81612db6565b600060208284031215612a1557600080fd5b813567ffffffffffffffff811115612a2c57600080fd5b8201601f81018413612a3d57600080fd5b611b8f84823560208401612787565b600060208284031215612a5e57600080fd5b5035919050565b60008151808452612a7d816020860160208601612bfe565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612ac1818460208801612bfe565b835190830190612ad5818360208801612bfe565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b1d6080830184612a65565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b5f57835183529284019291840191600101612b43565b50909695505050505050565b60208152600061176d6020830184612a65565b60008219821115612b9157612b91612ccb565b500190565b600082612ba557612ba5612cfa565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612be257612be2612ccb565b500290565b600082821015612bf957612bf9612ccb565b500390565b60005b83811015612c19578181015183820152602001612c01565b8381111561165e5750506000910152565b600181811c90821680612c3e57607f821691505b60208210811415612c78577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cb057612cb0612ccb565b5060010190565b600082612cc657612cc6612cfa565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146118a157600080fdfea2646970667358221220680ffc1c7aadf4ca9c13b544ea16158799ff716ed0eef8b756ba02335be7616764736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000000094661726d6c616e6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c414e44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596a6133463576363234416d526261394d797963424d52326e704b376f32376a68677334336f66785865594e2f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Farmlands
Arg [1] : symbol_ (string): LAND
Arg [2] : baseURI_ (string): ipfs://QmYja3F5v624AmRba9MyycBMR2npK7o27jhgs43ofxXeYN/
Arg [3] : maxTokens_ (uint256): 10000
Arg [4] : forDevMint_ (uint256): 1000
Arg [5] : maxBatch_ (uint256): 20
Arg [6] : price_ (uint256): 30000000000000000
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4661726d6c616e64730000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4c414e4400000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d596a6133463576363234416d526261394d797963424d52
Arg [13] : 326e704b376f32376a68677334336f66785865594e2f00000000000000000000
Deployed Bytecode Sourcemap
43416:2929:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37190:224;;;;;;;;;;-1:-1:-1;37190:224:0;;;;;:::i;:::-;;:::i;:::-;;;6828:14:1;;6821:22;6803:41;;6791:2;6776:18;37190:224:0;;;;;;;;24071:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25630:221::-;;;;;;;;;;-1:-1:-1;25630:221:0;;;;;:::i;:::-;;:::i;:::-;;;5455:42:1;5443:55;;;5425:74;;5413:2;5398:18;25630:221:0;5380:125:1;25153:411:0;;;;;;;;;;-1:-1:-1;25153:411:0;;;;;:::i;:::-;;:::i;:::-;;37830:113;;;;;;;;;;-1:-1:-1;37918:10:0;:17;37830:113;;;16572:25:1;;;16560:2;16545:18;37830:113:0;16527:76:1;43607:25:0;;;;;;;;;;;;;;;;26520:339;;;;;;;;;;-1:-1:-1;26520:339:0;;;;;:::i;:::-;;:::i;43671:26::-;;;;;;;;;;;;;;;;37498:256;;;;;;;;;;-1:-1:-1;37498:256:0;;;;;:::i;:::-;;:::i;43639:25::-;;;;;;;;;;;;;;;;45415:364;;;;;;;;;;-1:-1:-1;45415:364:0;;;;;:::i;:::-;;:::i;26930:185::-;;;;;;;;;;-1:-1:-1;26930:185:0;;;;;:::i;:::-;;:::i;38020:233::-;;;;;;;;;;-1:-1:-1;38020:233:0;;;;;:::i;:::-;;:::i;44473:96::-;;;;;;;;;;-1:-1:-1;44473:96:0;;;;;:::i;:::-;;:::i;23765:239::-;;;;;;;;;;-1:-1:-1;23765:239:0;;;;;:::i;:::-;;:::i;43735:23::-;;;;;;;;;;;;;;;;44970:83;;;;;;;;;;-1:-1:-1;44970:83:0;;;;;:::i;:::-;;:::i;43808:21::-;;;;;;;;;;;;;:::i;23495:208::-;;;;;;;;;;-1:-1:-1;23495:208:0;;;;;:::i;:::-;;:::i;2603:94::-;;;;;;;;;;;;;:::i;45061:346::-;;;;;;;;;;-1:-1:-1;45061:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1952:87::-;;;;;;;;;;-1:-1:-1;2025:6:0;;;;1952:87;;24240:104;;;;;;;;;;;;;:::i;43765:20::-;;;;;;;;;;;;;;;;45787:555;;;;;;:::i;:::-;;:::i;25923:295::-;;;;;;;;;;-1:-1:-1;25923:295:0;;;;;:::i;:::-;;:::i;27186:328::-;;;;;;;;;;-1:-1:-1;27186:328:0;;;;;:::i;:::-;;:::i;44591:373::-;;;;;;;;;;-1:-1:-1;44591:373:0;;;;;:::i;:::-;;:::i;26289:164::-;;;;;;;;;;-1:-1:-1;26289:164:0;;;;;:::i;:::-;26410:25;;;;26386:4;26410:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26289:164;2852:192;;;;;;;;;;-1:-1:-1;2852:192:0;;;;;:::i;:::-;;:::i;37190:224::-;37292:4;37316:50;;;37331:35;37316:50;;:90;;;37370:36;37394:11;37370:23;:36::i;:::-;37309:97;37190:224;-1:-1:-1;;37190:224:0:o;24071:100::-;24125:13;24158:5;24151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24071:100;:::o;25630:221::-;25706:7;29113:16;;;:7;:16;;;;;;:30;:16;25726:73;;;;;;;12341:2:1;25726:73:0;;;12323:21:1;12380:2;12360:18;;;12353:30;12419:34;12399:18;;;12392:62;12490:14;12470:18;;;12463:42;12522:19;;25726:73:0;;;;;;;;;-1:-1:-1;25819:24:0;;;;:15;:24;;;;;;;;;25630:221::o;25153:411::-;25234:13;25250:23;25265:7;25250:14;:23::i;:::-;25234:39;;25298:5;25292:11;;:2;:11;;;;25284:57;;;;;;;14215:2:1;25284:57:0;;;14197:21:1;14254:2;14234:18;;;14227:30;14293:34;14273:18;;;14266:62;14364:3;14344:18;;;14337:31;14385:19;;25284:57:0;14187:223:1;25284:57:0;810:10;25376:21;;;;;:62;;-1:-1:-1;25401:37:0;25418:5;810:10;26289:164;:::i;25401:37::-;25354:168;;;;;;;10734:2:1;25354:168:0;;;10716:21:1;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;10883:26;10863:18;;;10856:54;10927:19;;25354:168:0;10706:246:1;25354:168:0;25535:21;25544:2;25548:7;25535:8;:21::i;:::-;25223:341;25153:411;;:::o;26520:339::-;26715:41;810:10;26748:7;26715:18;:41::i;:::-;26707:103;;;;;;;14978:2:1;26707:103:0;;;14960:21:1;15017:2;14997:18;;;14990:30;15056:34;15036:18;;;15029:62;15127:19;15107:18;;;15100:47;15164:19;;26707:103:0;14950:239:1;26707:103:0;26823:28;26833:4;26839:2;26843:7;26823:9;:28::i;37498:256::-;37595:7;37631:23;37648:5;37631:16;:23::i;:::-;37623:5;:31;37615:87;;;;;;;7624:2:1;37615:87:0;;;7606:21:1;7663:2;7643:18;;;7636:30;7702:34;7682:18;;;7675:62;7773:13;7753:18;;;7746:41;7804:19;;37615:87:0;7596:233:1;37615:87:0;-1:-1:-1;37720:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37498:256::o;45415:364::-;2025:6;;2172:23;2025:6;810:10;2172:23;2164:68;;;;;;;12754:2:1;2164:68:0;;;12736:21:1;;;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;12884:18;;2164:68:0;12726:182:1;2164:68:0;45498:11:::1;;45484:10;;:25;;45476:52;;;::::0;::::1;::::0;;13525:2:1;45476:52:0::1;::::0;::::1;13507:21:1::0;13564:2;13544:18;;;13537:30;13603:16;13583:18;;;13576:44;13637:18;;45476:52:0::1;13497:164:1::0;45476:52:0::1;45570:10;;45560:6;45547:11;;:19;;;;:::i;:::-;:33;;45539:64;;;::::0;::::1;::::0;;13868:2:1;45539:64:0::1;::::0;::::1;13850:21:1::0;13907:2;13887:18;;;13880:30;13946:20;13926:18;;;13919:48;13984:18;;45539:64:0::1;13840:168:1::0;45539:64:0::1;45642:11;::::0;810:10;;45619:45:::1;::::0;45642:13:::1;::::0;45654:1:::1;45642:13;:::i;:::-;45619:45;::::0;;16782:25:1;;;16838:2;16823:18;;16816:34;;;16755:18;45619:45:0::1;;;;;;;45679:9;45675:97;45694:6;45692:1;:8;45675:97;;;45722:38;810:10:::0;45746:11:::1;:13:::0;;;:11:::1;:13;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;45742:17:0::1;::::0;:1:::1;:17;:::i;:::-;45722:5;:38::i;:::-;45702:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45675:97;;;;45415:364:::0;:::o;26930:185::-;27068:39;27085:4;27091:2;27095:7;27068:39;;;;;;;;;;;;:16;:39::i;38020:233::-;38095:7;38131:30;37918:10;:17;;37830:113;38131:30;38123:5;:38;38115:95;;;;;;;15396:2:1;38115:95:0;;;15378:21:1;15435:2;15415:18;;;15408:30;15474:34;15454:18;;;15447:62;15545:14;15525:18;;;15518:42;15577:19;;38115:95:0;15368:234:1;38115:95:0;38228:10;38239:5;38228:17;;;;;;;;:::i;:::-;;;;;;;;;38221:24;;38020:233;;;:::o;44473:96::-;2025:6;;2172:23;2025:6;810:10;2172:23;2164:68;;;;;;;12754:2:1;2164:68:0;;;12736:21:1;;;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;12884:18;;2164:68:0;12726:182:1;2164:68:0;44544:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;23765:239::-:0;23837:7;23873:16;;;:7;:16;;;;;;;;23908:19;23900:73;;;;;;;11570:2:1;23900:73:0;;;11552:21:1;11609:2;11589:18;;;11582:30;11648:34;11628:18;;;11621:62;11719:11;11699:18;;;11692:39;11748:19;;23900:73:0;11542:231:1;44970:83:0;2025:6;;2172:23;2025:6;810:10;2172:23;2164:68;;;;;;;12754:2:1;2164:68:0;;;12736:21:1;;;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;12884:18;;2164:68:0;12726:182:1;2164:68:0;45029:7:::1;:16:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;44970:83::o;43808:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23495:208::-;23567:7;23595:19;;;23587:74;;;;;;;11159:2:1;23587:74:0;;;11141:21:1;11198:2;11178:18;;;11171:30;11237:34;11217:18;;;11210:62;11308:12;11288:18;;;11281:40;11338:19;;23587:74:0;11131:232:1;23587:74:0;-1:-1:-1;23679:16:0;;;;;;:9;:16;;;;;;;23495:208::o;2603:94::-;2025:6;;2172:23;2025:6;810:10;2172:23;2164:68;;;;;;;12754:2:1;2164:68:0;;;12736:21:1;;;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;12884:18;;2164:68:0;12726:182:1;2164:68:0;2668:21:::1;2686:1;2668:9;:21::i;:::-;2603:94::o:0;45061:346::-;45147:16;45181:13;45197:16;45207:5;45197:9;:16::i;:::-;45181:32;;45224:20;45261:5;45247:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45247:20:0;;45224:43;;45283:9;45278:101;45302:5;45298:1;:9;45278:101;;;45338:29;45358:5;45365:1;45338:19;:29::i;:::-;45329:3;45333:1;45329:6;;;;;;;;:::i;:::-;;;;;;;;;;:38;45309:3;;;;:::i;:::-;;;;45278:101;;;-1:-1:-1;45396:3:0;45061:346;-1:-1:-1;;;45061:346:0:o;24240:104::-;24296:13;24329:7;24322:14;;;;;:::i;45787:555::-;45851:7;;;;45843:53;;;;;;;15809:2:1;45843:53:0;;;15791:21:1;15848:2;15828:18;;;15821:30;15887:34;15867:18;;;15860:62;15958:3;15938:18;;;15931:31;15979:19;;45843:53:0;15781:223:1;45843:53:0;45924:1;45915:6;:10;:32;;;;;45939:8;;45929:6;:18;;45915:32;45907:59;;;;;;;7281:2:1;45907:59:0;;;7263:21:1;7320:2;7300:18;;;7293:30;7359:16;7339:18;;;7332:44;7393:18;;45907:59:0;7253:164:1;45907:59:0;46008:11;;45998:6;45985:10;;:19;;;;:::i;:::-;:34;;45977:61;;;;;;;9978:2:1;45977:61:0;;;9960:21:1;10017:2;9997:18;;;9990:30;10056:16;10036:18;;;10029:44;10090:18;;45977:61:0;9950:164:1;45977:61:0;46079:5;;46070:14;;:6;:14;:::i;:::-;46057:9;:27;46049:72;;;;;;;14617:2:1;46049:72:0;;;14599:21:1;;;14636:18;;;14629:30;14695:34;14675:18;;;14668:62;14747:18;;46049:72:0;14589:182:1;46049:72:0;2025:6;;46132:36;;2025:6;;;;;46158:9;46132:36;;;;;;;;;46158:9;2025:6;46132:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46207:10:0;;810;;46184:44;;46207:12;;46218:1;46207:12;:::i;:::-;46184:44;;;16782:25:1;;;16838:2;16823:18;;16816:34;;;16755:18;46184:44:0;;;;;;;46243:9;46239:96;46259:6;46256:1;:9;46239:96;;;46286:37;810:10;46310;:12;;;:10;:12;;;:::i;46286:37::-;46267:3;;;;:::i;:::-;;;;46239:96;;25923:295;26026:24;;;810:10;26026:24;;26018:62;;;;;;;9624:2:1;26018:62:0;;;9606:21:1;9663:2;9643:18;;;9636:30;9702:27;9682:18;;;9675:55;9747:18;;26018:62:0;9596:175:1;26018:62:0;810:10;26093:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;26162:48;;6803:41:1;;;26093:42:0;;810:10;26162:48;;6776:18:1;26162:48:0;;;;;;;25923:295;;:::o;27186:328::-;27361:41;810:10;27394:7;27361:18;:41::i;:::-;27353:103;;;;;;;14978:2:1;27353:103:0;;;14960:21:1;15017:2;14997:18;;;14990:30;15056:34;15036:18;;;15029:62;15127:19;15107:18;;;15100:47;15164:19;;27353:103:0;14950:239:1;27353:103:0;27467:39;27481:4;27487:2;27491:7;27500:5;27467:13;:39::i;:::-;27186:328;;;;:::o;44591:373::-;29089:4;29113:16;;;:7;:16;;;;;;44664:13;;29113:30;:16;44690:77;;;;;;;16211:2:1;44690:77:0;;;16193:21:1;16250:2;16230:18;;;16223:30;16289:34;16269:18;;;16262:62;16360:18;16340;;;16333:46;16396:19;;44690:77:0;16183:238:1;44690:77:0;44780:28;44811:10;:8;:10::i;:::-;44780:41;;44870:1;44845:14;44839:28;:32;:117;;;;;;;;;;;;;;;;;44911:14;44927:18;:7;:16;:18::i;:::-;44894:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44839:117;44832:124;44591:373;-1:-1:-1;;;44591:373:0:o;2852:192::-;2025:6;;2172:23;2025:6;810:10;2172:23;2164:68;;;;;;;12754:2:1;2164:68:0;;;12736:21:1;;;12773:18;;;12766:30;12832:34;12812:18;;;12805:62;12884:18;;2164:68:0;12726:182:1;2164:68:0;2941:22:::1;::::0;::::1;2933:73;;;::::0;::::1;::::0;;8455:2:1;2933:73:0::1;::::0;::::1;8437:21:1::0;8494:2;8474:18;;;8467:30;8533:34;8513:18;;;8506:62;8604:8;8584:18;;;8577:36;8630:19;;2933:73:0::1;8427:228:1::0;2933:73:0::1;3017:19;3027:8;3017:9;:19::i;:::-;2852:192:::0;:::o;23126:305::-;23228:4;23265:40;;;23280:25;23265:40;;:105;;-1:-1:-1;23322:48:0;;;23337:33;23322:48;23265:105;:158;;;-1:-1:-1;21744:25:0;21729:40;;;;23387:36;21620:157;33006:174;33081:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;33135:23;33081:24;33135:14;:23::i;:::-;33126:46;;;;;;;;;;;;33006:174;;:::o;29318:348::-;29411:4;29113:16;;;:7;:16;;;;;;:30;:16;29428:73;;;;;;;10321:2:1;29428:73:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399:34;10379:18;;;10372:62;10470:14;10450:18;;;10443:42;10502:19;;29428:73:0;10293:234:1;29428:73:0;29512:13;29528:23;29543:7;29528:14;:23::i;:::-;29512:39;;29581:5;29570:16;;:7;:16;;;:51;;;;29614:7;29590:31;;:20;29602:7;29590:11;:20::i;:::-;:31;;;29570:51;:87;;;-1:-1:-1;26410:25:0;;;;26386:4;26410:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29625:32;29562:96;29318:348;-1:-1:-1;;;;29318:348:0:o;32310:578::-;32469:4;32442:31;;:23;32457:7;32442:14;:23::i;:::-;:31;;;32434:85;;;;;;;13115:2:1;32434:85:0;;;13097:21:1;13154:2;13134:18;;;13127:30;13193:34;13173:18;;;13166:62;13264:11;13244:18;;;13237:39;13293:19;;32434:85:0;13087:231:1;32434:85:0;32538:16;;;32530:65;;;;;;;9219:2:1;32530:65:0;;;9201:21:1;9258:2;9238:18;;;9231:30;9297:34;9277:18;;;9270:62;9368:6;9348:18;;;9341:34;9392:19;;32530:65:0;9191:226:1;32530:65:0;32608:39;32629:4;32635:2;32639:7;32608:20;:39::i;:::-;32712:29;32729:1;32733:7;32712:8;:29::i;:::-;32754:15;;;;;;;:9;:15;;;;;:20;;32773:1;;32754:15;:20;;32773:1;;32754:20;:::i;:::-;;;;-1:-1:-1;;32785:13:0;;;;;;;:9;:13;;;;;:18;;32802:1;;32785:13;:18;;32802:1;;32785:18;:::i;:::-;;;;-1:-1:-1;;32814:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;32853:27;;32814:16;;32853:27;;;;;;;32310:578;;;:::o;31002:382::-;31082:16;;;31074:61;;;;;;;11980:2:1;31074:61:0;;;11962:21:1;;;11999:18;;;11992:30;12058:34;12038:18;;;12031:62;12110:18;;31074:61:0;11952:182:1;31074:61:0;29089:4;29113:16;;;:7;:16;;;;;;:30;:16;:30;31146:58;;;;;;;8862:2:1;31146:58:0;;;8844:21:1;8901:2;8881:18;;;8874:30;8940;8920:18;;;8913:58;8988:18;;31146:58:0;8834:178:1;31146:58:0;31217:45;31246:1;31250:2;31254:7;31217:20;:45::i;:::-;31275:13;;;;;;;:9;:13;;;;;:18;;31292:1;;31275:13;:18;;31292:1;;31275:18;:::i;:::-;;;;-1:-1:-1;;31304:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;31343:33;;31304:16;;;31343:33;;31304:16;;31343:33;31002:382;;:::o;3052:173::-;3127:6;;;;3144:17;;;;;;;;;;;3177:40;;3127:6;;;3144:17;3127:6;;3177:40;;3108:16;;3177:40;3097:128;3052:173;:::o;28396:315::-;28553:28;28563:4;28569:2;28573:7;28553:9;:28::i;:::-;28600:48;28623:4;28629:2;28633:7;28642:5;28600:22;:48::i;:::-;28592:111;;;;;;;8036:2:1;28592:111:0;;;8018:21:1;8075:2;8055:18;;;8048:30;8114:34;8094:18;;;8087:62;8185:20;8165:18;;;8158:48;8223:19;;28592:111:0;8008:240:1;44360:107:0;44420:13;44452:7;44445:14;;;;;:::i;19053:723::-;19109:13;19330:10;19326:53;;-1:-1:-1;;19357:10:0;;;;;;;;;;;;;;;;;;19053:723::o;19326:53::-;19404:5;19389:12;19445:78;19452:9;;19445:78;;19478:8;;;;:::i;:::-;;-1:-1:-1;19501:10:0;;-1:-1:-1;19509:2:0;19501:10;;:::i;:::-;;;19445:78;;;19533:19;19565:6;19555:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19555:17:0;;19533:39;;19583:154;19590:10;;19583:154;;19617:11;19627:1;19617:11;;:::i;:::-;;-1:-1:-1;19686:10:0;19694:2;19686:5;:10;:::i;:::-;19673:24;;:2;:24;:::i;:::-;19660:39;;19643:6;19650;19643:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;19714:11:0;19723:2;19714:11;;:::i;:::-;;;19583:154;;38866:589;39072:18;;;39068:187;;39107:40;39139:7;40282:10;:17;;40255:24;;;;:15;:24;;;;;:44;;;40310:24;;;;;;;;;;;;40178:164;39107:40;39068:187;;;39177:2;39169:10;;:4;:10;;;39165:90;;39196:47;39229:4;39235:7;39196:32;:47::i;:::-;39269:16;;;39265:183;;39302:45;39339:7;39302:36;:45::i;39265:183::-;39375:4;39369:10;;:2;:10;;;39365:83;;39396:40;39424:2;39428:7;39396:27;:40::i;33745:799::-;33900:4;33921:13;;;11722:20;11770:8;33917:620;;33957:72;;;;;:36;;;;;;:72;;810:10;;34008:4;;34014:7;;34023:5;;33957:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33957:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33953:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34199:13:0;;34195:272;;34242:60;;;;;8036:2:1;34242:60:0;;;8018:21:1;8075:2;8055:18;;;8048:30;8114:34;8094:18;;;8087:62;8185:20;8165:18;;;8158:48;8223:19;;34242:60:0;8008:240:1;34195:272:0;34417:6;34411:13;34402:6;34398:2;34394:15;34387:38;33953:529;34080:51;;34090:41;34080:51;;-1:-1:-1;34073:58:0;;33917:620;-1:-1:-1;34521:4:0;33745:799;;;;;;:::o;40969:988::-;41235:22;41285:1;41260:22;41277:4;41260:16;:22::i;:::-;:26;;;;:::i;:::-;41297:18;41318:26;;;:17;:26;;;;;;41235:51;;-1:-1:-1;41451:28:0;;;41447:328;;41518:18;;;41496:19;41518:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41569:30;;;;;;:44;;;41686:30;;:17;:30;;;;;:43;;;41447:328;-1:-1:-1;41871:26:0;;;;:17;:26;;;;;;;;41864:33;;;41915:18;;;;;;:12;:18;;;;;:34;;;;;;;41908:41;40969:988::o;42252:1079::-;42530:10;:17;42505:22;;42530:21;;42550:1;;42530:21;:::i;:::-;42562:18;42583:24;;;:15;:24;;;;;;42956:10;:26;;42505:46;;-1:-1:-1;42583:24:0;;42505:46;;42956:26;;;;;;:::i;:::-;;;;;;;;;42934:48;;43020:11;42995:10;43006;42995:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43100:28;;;:15;:28;;;;;;;:41;;;43272:24;;;;;43265:31;43307:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42323:1008;;;42252:1079;:::o;39756:221::-;39841:14;39858:20;39875:2;39858:16;:20::i;:::-;39889:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39934:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39756:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:2;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:2;;;591:1;588;581:12;550:2;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;88:616;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:2;;895:1;892;885:12;806:2;758:147;;;:::o;910:160::-;975:20;;1031:13;;1024:21;1014:32;;1004:2;;1060:1;1057;1050:12;1075:186;1134:6;1187:2;1175:9;1166:7;1162:23;1158:32;1155:2;;;1203:1;1200;1193:12;1155:2;1226:29;1245:9;1226:29;:::i;1266:260::-;1334:6;1342;1395:2;1383:9;1374:7;1370:23;1366:32;1363:2;;;1411:1;1408;1401:12;1363:2;1434:29;1453:9;1434:29;:::i;:::-;1424:39;;1482:38;1516:2;1505:9;1501:18;1482:38;:::i;:::-;1472:48;;1353:173;;;;;:::o;1531:328::-;1608:6;1616;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:2;;;1693:1;1690;1683:12;1645:2;1716:29;1735:9;1716:29;:::i;:::-;1706:39;;1764:38;1798:2;1787:9;1783:18;1764:38;:::i;:::-;1754:48;;1849:2;1838:9;1834:18;1821:32;1811:42;;1635:224;;;;;:::o;1864:666::-;1959:6;1967;1975;1983;2036:3;2024:9;2015:7;2011:23;2007:33;2004:2;;;2053:1;2050;2043:12;2004:2;2076:29;2095:9;2076:29;:::i;:::-;2066:39;;2124:38;2158:2;2147:9;2143:18;2124:38;:::i;:::-;2114:48;;2209:2;2198:9;2194:18;2181:32;2171:42;;2264:2;2253:9;2249:18;2236:32;2291:18;2283:6;2280:30;2277:2;;;2323:1;2320;2313:12;2277:2;2346:22;;2399:4;2391:13;;2387:27;-1:-1:-1;2377:2:1;;2428:1;2425;2418:12;2377:2;2451:73;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2451:73;:::i;:::-;2441:83;;;1994:536;;;;;;;:::o;2535:254::-;2600:6;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;2677:1;2674;2667:12;2629:2;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:35;2779:2;2768:9;2764:18;2748:35;:::i;2794:254::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:2;;;2939:1;2936;2929:12;2891:2;2962:29;2981:9;2962:29;:::i;:::-;2952:39;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2881:167:1:o;3053:180::-;3109:6;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3178:1;3175;3168:12;3130:2;3201:26;3217:9;3201:26;:::i;3238:245::-;3296:6;3349:2;3337:9;3328:7;3324:23;3320:32;3317:2;;;3365:1;3362;3355:12;3317:2;3404:9;3391:23;3423:30;3447:5;3423:30;:::i;3488:249::-;3557:6;3610:2;3598:9;3589:7;3585:23;3581:32;3578:2;;;3626:1;3623;3616:12;3578:2;3658:9;3652:16;3677:30;3701:5;3677:30;:::i;3742:450::-;3811:6;3864:2;3852:9;3843:7;3839:23;3835:32;3832:2;;;3880:1;3877;3870:12;3832:2;3920:9;3907:23;3953:18;3945:6;3942:30;3939:2;;;3985:1;3982;3975:12;3939:2;4008:22;;4061:4;4053:13;;4049:27;-1:-1:-1;4039:2:1;;4090:1;4087;4080:12;4039:2;4113:73;4178:7;4173:2;4160:16;4155:2;4151;4147:11;4113:73;:::i;4197:180::-;4256:6;4309:2;4297:9;4288:7;4284:23;4280:32;4277:2;;;4325:1;4322;4315:12;4277:2;-1:-1:-1;4348:23:1;;4267:110;-1:-1:-1;4267:110:1:o;4382:316::-;4423:3;4461:5;4455:12;4488:6;4483:3;4476:19;4504:63;4560:6;4553:4;4548:3;4544:14;4537:4;4530:5;4526:16;4504:63;:::i;:::-;4612:2;4600:15;4617:66;4596:88;4587:98;;;;4687:4;4583:109;;4431:267;-1:-1:-1;;4431:267:1:o;4703:571::-;4983:3;5021:6;5015:13;5037:53;5083:6;5078:3;5071:4;5063:6;5059:17;5037:53;:::i;:::-;5153:13;;5112:16;;;;5175:57;5153:13;5112:16;5209:4;5197:17;;5175:57;:::i;:::-;5248:20;;4991:283;-1:-1:-1;;;;4991:283:1:o;5510:511::-;5704:4;5733:42;5814:2;5806:6;5802:15;5791:9;5784:34;5866:2;5858:6;5854:15;5849:2;5838:9;5834:18;5827:43;;5906:6;5901:2;5890:9;5886:18;5879:34;5949:3;5944:2;5933:9;5929:18;5922:31;5970:45;6010:3;5999:9;5995:19;5987:6;5970:45;:::i;:::-;5962:53;5713:308;-1:-1:-1;;;;;;5713:308:1:o;6026:632::-;6197:2;6249:21;;;6319:13;;6222:18;;;6341:22;;;6168:4;;6197:2;6420:15;;;;6394:2;6379:18;;;6168:4;6463:169;6477:6;6474:1;6471:13;6463:169;;;6538:13;;6526:26;;6607:15;;;;6572:12;;;;6499:1;6492:9;6463:169;;;-1:-1:-1;6649:3:1;;6177:481;-1:-1:-1;;;;;;6177:481:1:o;6855:219::-;7004:2;6993:9;6986:21;6967:4;7024:44;7064:2;7053:9;7049:18;7041:6;7024:44;:::i;16861:128::-;16901:3;16932:1;16928:6;16925:1;16922:13;16919:2;;;16938:18;;:::i;:::-;-1:-1:-1;16974:9:1;;16909:80::o;16994:120::-;17034:1;17060;17050:2;;17065:18;;:::i;:::-;-1:-1:-1;17099:9:1;;17040:74::o;17119:228::-;17159:7;17285:1;17217:66;17213:74;17210:1;17207:81;17202:1;17195:9;17188:17;17184:105;17181:2;;;17292:18;;:::i;:::-;-1:-1:-1;17332:9:1;;17171:176::o;17352:125::-;17392:4;17420:1;17417;17414:8;17411:2;;;17425:18;;:::i;:::-;-1:-1:-1;17462:9:1;;17401:76::o;17482:258::-;17554:1;17564:113;17578:6;17575:1;17572:13;17564:113;;;17654:11;;;17648:18;17635:11;;;17628:39;17600:2;17593:10;17564:113;;;17695:6;17692:1;17689:13;17686:2;;;-1:-1:-1;;17730:1:1;17712:16;;17705:27;17535:205::o;17745:437::-;17824:1;17820:12;;;;17867;;;17888:2;;17942:4;17934:6;17930:17;17920:27;;17888:2;17995;17987:6;17984:14;17964:18;17961:38;17958:2;;;18032:77;18029:1;18022:88;18133:4;18130:1;18123:15;18161:4;18158:1;18151:15;17958:2;;17800:382;;;:::o;18187:195::-;18226:3;18257:66;18250:5;18247:77;18244:2;;;18327:18;;:::i;:::-;-1:-1:-1;18374:1:1;18363:13;;18234:148::o;18387:112::-;18419:1;18445;18435:2;;18450:18;;:::i;:::-;-1:-1:-1;18484:9:1;;18425:74::o;18504:184::-;18556:77;18553:1;18546:88;18653:4;18650:1;18643:15;18677:4;18674:1;18667:15;18693:184;18745:77;18742:1;18735:88;18842:4;18839:1;18832:15;18866:4;18863:1;18856:15;18882:184;18934:77;18931:1;18924:88;19031:4;19028:1;19021:15;19055:4;19052:1;19045:15;19071:184;19123:77;19120:1;19113:88;19220:4;19217:1;19210:15;19244:4;19241:1;19234:15;19260:184;19312:77;19309:1;19302:88;19409:4;19406:1;19399:15;19433:4;19430:1;19423:15;19449:177;19534:66;19527:5;19523:78;19516:5;19513:89;19503:2;;19616:1;19613;19606:12
Swarm Source
ipfs://680ffc1c7aadf4ca9c13b544ea16158799ff716ed0eef8b756ba02335be76167
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.