More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Release | 14298384 | 1028 days ago | IN | 0 ETH | 0.00571295 | ||||
Transfer From | 14038524 | 1069 days ago | IN | 0 ETH | 0.01666146 | ||||
Transfer From | 13877297 | 1094 days ago | IN | 0 ETH | 0.00558128 | ||||
Transfer From | 13877295 | 1094 days ago | IN | 0 ETH | 0.00697735 | ||||
Transfer From | 13865567 | 1095 days ago | IN | 0 ETH | 0.00639189 | ||||
Mint | 13846486 | 1098 days ago | IN | 0.084 ETH | 0.01576142 | ||||
Transfer From | 13846155 | 1098 days ago | IN | 0 ETH | 0.00585344 | ||||
Transfer From | 13846149 | 1098 days ago | IN | 0 ETH | 0.00790279 | ||||
Mint | 13845918 | 1098 days ago | IN | 0.042 ETH | 0.01254695 | ||||
Mint | 13844854 | 1099 days ago | IN | 0.042 ETH | 0.00950128 | ||||
Mint | 13844644 | 1099 days ago | IN | 0.21 ETH | 0.05754845 | ||||
Mint | 13837598 | 1100 days ago | IN | 0.042 ETH | 0.01001102 | ||||
Transfer From | 13832877 | 1100 days ago | IN | 0 ETH | 0.00503902 | ||||
Transfer From | 13831400 | 1101 days ago | IN | 0 ETH | 0.00624 | ||||
Mint | 13827678 | 1101 days ago | IN | 0.21 ETH | 0.03001311 | ||||
Mint | 13826862 | 1101 days ago | IN | 0.042 ETH | 0.00806586 | ||||
Mint | 13823954 | 1102 days ago | IN | 0.168 ETH | 0.09124195 | ||||
Mint | 13823765 | 1102 days ago | IN | 0.042 ETH | 0.01358663 | ||||
Mint | 13822892 | 1102 days ago | IN | 0.042 ETH | 0.0090843 | ||||
Mint | 13821402 | 1102 days ago | IN | 0.336 ETH | 0.05419971 | ||||
Mint | 13821246 | 1102 days ago | IN | 0.084 ETH | 0.01368498 | ||||
Mint | 13820883 | 1102 days ago | IN | 0.168 ETH | 0.03455 | ||||
Mint | 13820807 | 1102 days ago | IN | 0.042 ETH | 0.00926399 | ||||
Set Sale State | 13820804 | 1102 days ago | IN | 0 ETH | 0.00255566 | ||||
Reserve | 13820332 | 1102 days ago | IN | 0 ETH | 1.01376007 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14298384 | 1028 days ago | 0.1554 ETH |
Loading...
Loading
Contract Name:
Furbz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/finance/PaymentSplitter.sol'; /// @author no-op (nftlab: https://discord.gg/kH7Gvnr2qp) /// @title Furbz contract Furbz is ERC721Enumerable, Ownable, PaymentSplitter { /** Maximum amount of tokens in collection */ uint256 public constant MAX_SUPPLY = 6969; /** Maximum number of tokens per tx */ uint256 public constant MAX_TX = 9; /** Price per token */ uint256 public constant COST = 0.0420 ether; /** Base URI */ string private _uri; /** Public sale state */ bool public saleActive = false; /** Notify on sale state change */ event SaleStateChanged(bool val); /** Notify on total supply change */ event TotalSupplyChanged(uint256 val); constructor( string memory name, string memory symbol, address[] memory shareholders, uint256[] memory shares ) ERC721(name, symbol) PaymentSplitter(shareholders, shares) {} /// @notice Sets public sale state /// @param val The new value function setSaleState(bool val) external onlyOwner { saleActive = val; emit SaleStateChanged(val); } /// @notice Sets the base metadata URI /// @param val The new URI function setBaseURI(string memory val) external onlyOwner { _uri = val; } /// @notice Reserves a set of NFTs for collection owner (giveaways, etc) /// @param amt The amount to reserve function reserve(uint256 amt) external onlyOwner { uint256 _currentSupply = totalSupply(); for (uint256 i = 0; i < amt; i++) { _safeMint(msg.sender, _currentSupply + i); } emit TotalSupplyChanged(totalSupply()); } /// @notice Mints a new token in public sale /// @param amt The number of tokens to mint /// @dev Must send COST * amt in ETH function mint(uint256 amt) external payable { uint256 _currentSupply = totalSupply(); require(saleActive, "Sale is not yet active."); require(_currentSupply + amt <= MAX_SUPPLY, "Amount exceeds supply."); require(COST * amt <= msg.value, "ETH sent is below cost."); for (uint256 i = 0; i < amt; i++) { _safeMint(msg.sender, _currentSupply + i); } emit TotalSupplyChanged(totalSupply()); } /// @notice Returns base URI /// @dev Refers to uri var for super baseURI function function _baseURI() internal view virtual override returns (string memory) { return _uri; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @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(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":"address[]","name":"shareholders","type":"address[]"},{"internalType":"uint256[]","name":"shares","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"val","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"val","type":"uint256"}],"name":"TotalSupplyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"amt","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526013805460ff191690553480156200001b57600080fd5b506040516200396e3803806200396e8339810160408190526200003e91620005c4565b8181858581600090805190602001906200005a9291906200040f565b508051620000709060019060208401906200040f565b5050506200008d62000087620001cb60201b60201c565b620001cf565b8051825114620000ff5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001525760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620000f6565b60005b8251811015620001be57620001a9838281518110620001785762000178620007d8565b6020026020010151838381518110620001955762000195620007d8565b60200260200101516200022160201b60201c565b80620001b581620007a4565b91505062000155565b5050505050505062000804565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200028e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620000f6565b60008111620002e05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620000f6565b6001600160a01b0382166000908152600d6020526040902054156200035c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620000f6565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620003c69082906200074c565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200041d9062000767565b90600052602060002090601f0160209004810192826200044157600085556200048c565b82601f106200045c57805160ff19168380011785556200048c565b828001600101855582156200048c579182015b828111156200048c5782518255916020019190600101906200046f565b506200049a9291506200049e565b5090565b5b808211156200049a57600081556001016200049f565b600082601f830112620004c757600080fd5b81516020620004e0620004da8362000726565b620006f3565b80838252828201915082860187848660051b89010111156200050157600080fd5b60005b85811015620005225781518452928401929084019060010162000504565b5090979650505050505050565b600082601f8301126200054157600080fd5b81516001600160401b038111156200055d576200055d620007ee565b602062000573601f8301601f19168201620006f3565b82815285828487010111156200058857600080fd5b60005b83811015620005a85785810183015182820184015282016200058b565b83811115620005ba5760008385840101525b5095945050505050565b60008060008060808587031215620005db57600080fd5b84516001600160401b0380821115620005f357600080fd5b62000601888389016200052f565b95506020915081870151818111156200061957600080fd5b6200062789828a016200052f565b9550506040870151818111156200063d57600080fd5b8701601f810189136200064f57600080fd5b805162000660620004da8262000726565b8082825285820191508584018c878560051b87010111156200068157600080fd5b600094505b83851015620006bc5780516001600160a01b0381168114620006a757600080fd5b83526001949094019391860191860162000686565b5060608b0151909750945050505080821115620006d857600080fd5b50620006e787828801620004b5565b91505092959194509250565b604051601f8201601f191681016001600160401b03811182821017156200071e576200071e620007ee565b604052919050565b60006001600160401b03821115620007425762000742620007ee565b5060051b60200190565b60008219821115620007625762000762620007c2565b500190565b600181811c908216806200077c57607f821691505b602082108114156200079e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007bb57620007bb620007c2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61315a80620008146000396000f3fe6080604052600436106102535760003560e01c8063715018a611610138578063bf8fbbd2116100b0578063d79779b21161007f578063e985e9c511610064578063e985e9c514610709578063f2fde38b14610752578063f3b2db3f1461077257600080fd5b8063d79779b2146106be578063e33b7de3146106f457600080fd5b8063bf8fbbd21461062d578063c4e3709514610648578063c87b56dd14610668578063ce7c2ac21461068857600080fd5b806395d89b4111610107578063a0712d68116100ec578063a0712d68146105da578063a22cb465146105ed578063b88d4fde1461060d57600080fd5b806395d89b411461058f5780639852595c146105a457600080fd5b8063715018a61461051c578063819b25ba146105315780638b83209b146105515780638da5cb5b1461057157600080fd5b80633a98ef39116101cb5780634f6ccce71161019a5780636352211e1161017f5780636352211e146104c257806368428a1b146104e257806370a08231146104fc57600080fd5b80634f6ccce71461048257806355f804b3146104a257600080fd5b80633a98ef39146103e7578063406072a9146103fc57806342842e0e1461044257806348b750441461046257600080fd5b806318160ddd1161022257806323b872dd1161020757806323b872dd146103915780632f745c59146103b157806332cb6b0c146103d157600080fd5b806318160ddd14610352578063191655871461037157600080fd5b806301ffc9a7146102a157806306fdde03146102d6578063081812fc146102f8578063095ea7b31461033057600080fd5b3661029c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ad57600080fd5b506102c16102bc366004612d02565b610787565b60405190151581526020015b60405180910390f35b3480156102e257600080fd5b506102eb6107e3565b6040516102cd9190612e88565b34801561030457600080fd5b50610318610313366004612d85565b610875565b6040516001600160a01b0390911681526020016102cd565b34801561033c57600080fd5b5061035061034b366004612c9c565b610920565b005b34801561035e57600080fd5b506008545b6040519081526020016102cd565b34801561037d57600080fd5b5061035061038c366004612b57565b610a52565b34801561039d57600080fd5b506103506103ac366004612bad565b610c2c565b3480156103bd57600080fd5b506103636103cc366004612c9c565b610cb3565b3480156103dd57600080fd5b50610363611b3981565b3480156103f357600080fd5b50600b54610363565b34801561040857600080fd5b50610363610417366004612b74565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561044e57600080fd5b5061035061045d366004612bad565b610d5b565b34801561046e57600080fd5b5061035061047d366004612b74565b610d76565b34801561048e57600080fd5b5061036361049d366004612d85565b611023565b3480156104ae57600080fd5b506103506104bd366004612d3c565b6110c7565b3480156104ce57600080fd5b506103186104dd366004612d85565b611138565b3480156104ee57600080fd5b506013546102c19060ff1681565b34801561050857600080fd5b50610363610517366004612b57565b6111c3565b34801561052857600080fd5b5061035061125d565b34801561053d57600080fd5b5061035061054c366004612d85565b6112c3565b34801561055d57600080fd5b5061031861056c366004612d85565b61139a565b34801561057d57600080fd5b50600a546001600160a01b0316610318565b34801561059b57600080fd5b506102eb6113ca565b3480156105b057600080fd5b506103636105bf366004612b57565b6001600160a01b03166000908152600e602052604090205490565b6103506105e8366004612d85565b6113d9565b3480156105f957600080fd5b50610350610608366004612c6e565b61151f565b34801561061957600080fd5b50610350610628366004612bee565b61152a565b34801561063957600080fd5b50610363669536c70891000081565b34801561065457600080fd5b50610350610663366004612cc8565b6115b8565b34801561067457600080fd5b506102eb610683366004612d85565b611677565b34801561069457600080fd5b506103636106a3366004612b57565b6001600160a01b03166000908152600d602052604090205490565b3480156106ca57600080fd5b506103636106d9366004612b57565b6001600160a01b031660009081526010602052604090205490565b34801561070057600080fd5b50600c54610363565b34801561071557600080fd5b506102c1610724366004612b74565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075e57600080fd5b5061035061076d366004612b57565b611760565b34801561077e57600080fd5b50610363600981565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107dd57506107dd82611842565b92915050565b6060600080546107f290612f47565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90612f47565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092b82611138565b9050806001600160a01b0316836001600160a01b031614156109b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108fb565b336001600160a01b03821614806109d157506109d18133610724565b610a435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fb565b610a4d8383611925565b505050565b6001600160a01b0381166000908152600d6020526040902054610add5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084016108fb565b6000610ae8600c5490565b610af29047612e9b565b90506000610b1f8383610b1a866001600160a01b03166000908152600e602052604090205490565b6119ab565b905080610b945760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e7400000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b0383166000908152600e602052604081208054839290610bbc908490612e9b565b9250508190555080600c6000828254610bd59190612e9b565b90915550610be5905083826119f1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c363382611b0a565b610ca85760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108fb565b610a4d838383611c11565b6000610cbe836111c3565b8210610d325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108fb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a4d8383836040518060200160405280600081525061152a565b6001600160a01b0381166000908152600d6020526040902054610e015760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b0382166000908152601060205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610e7257600080fd5b505afa158015610e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eaa9190612d9e565b610eb49190612e9b565b90506000610eed8383610b1a87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b905080610f625760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e7400000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b03808516600090815260116020908152604080832093871683529290529081208054839290610f99908490612e9b565b90915550506001600160a01b03841660009081526010602052604081208054839290610fc6908490612e9b565b90915550610fd79050848483611e01565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061102e60085490565b82106110a25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108fb565b600882815481106110b5576110b5613075565b90600052602060002001549050919050565b600a546001600160a01b031633146111215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b8051611134906012906020840190612a2a565b5050565b6000818152600260205260408120546001600160a01b0316806107dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108fb565b60006001600160a01b0382166112415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108fb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b6112c16000611e81565b565b600a546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b600061132860085490565b905060005b8281101561135a57611348336113438385612e9b565b611eeb565b8061135281612f9b565b91505061132d565b507fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f761138560085490565b60405190815260200160405180910390a15050565b6000600f82815481106113af576113af613075565b6000918252602090912001546001600160a01b031692915050565b6060600180546107f290612f47565b60006113e460085490565b60135490915060ff166114395760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f7420796574206163746976652e00000000000000000060448201526064016108fb565b611b396114468383612e9b565b11156114945760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e0000000000000000000060448201526064016108fb565b346114a683669536c708910000612ec7565b11156114f45760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e00000000000000000060448201526064016108fb565b60005b8281101561135a5761150d336113438385612e9b565b8061151781612f9b565b9150506114f7565b611134338383611f05565b6115343383611b0a565b6115a65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108fb565b6115b284848484611ff2565b50505050565b600a546001600160a01b031633146116125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a150565b6000818152600260205260409020546060906001600160a01b03166117045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108fb565b600061170e61207b565b9050600081511161172e5760405180602001604052806000815250611759565b806117388461208a565b604051602001611749929190612e1d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b6001600160a01b0381166118365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108fb565b61183f81611e81565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107dd57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107dd565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061197282611138565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916119d59086612ec7565b6119df9190612eb3565b6119e99190612f04565b949350505050565b80471015611a415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a8e576040519150601f19603f3d011682016040523d82523d6000602084013e611a93565b606091505b5050905080610a4d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fb565b6000818152600260205260408120546001600160a01b0316611b945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108fb565b6000611b9f83611138565b9050806001600160a01b0316846001600160a01b03161480611bda5750836001600160a01b0316611bcf84610875565b6001600160a01b0316145b806119e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b0316611c2482611138565b6001600160a01b031614611ca05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b038216611d1b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108fb565b611d268383836121bc565b611d31600082611925565b6001600160a01b0383166000908152600360205260408120805460019290611d5a908490612f04565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d88908490612e9b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a4d908490612274565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611134828260405180602001604052806000815250612359565b816001600160a01b0316836001600160a01b03161415611f675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fb565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ffd848484611c11565b612009848484846123e2565b6115b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b6060601280546107f290612f47565b6060816120ca57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120f457806120de81612f9b565b91506120ed9050600a83612eb3565b91506120ce565b60008167ffffffffffffffff81111561210f5761210f6130a4565b6040519080825280601f01601f191660200182016040528015612139576020820181803683370190505b5090505b84156119e95761214e600183612f04565b915061215b600a86612fd4565b612166906030612e9b565b60f81b81838151811061217b5761217b613075565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121b5600a86612eb3565b945061213d565b6001600160a01b0383166122175761221281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61223a565b816001600160a01b0316836001600160a01b03161461223a5761223a83826125ad565b6001600160a01b03821661225157610a4d8161264a565b826001600160a01b0316826001600160a01b031614610a4d57610a4d82826126f9565b60006122c9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661273d9092919063ffffffff16565b805190915015610a4d57808060200190518101906122e79190612ce5565b610a4d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108fb565b612363838361274c565b61237060008484846123e2565b610a4d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b60006001600160a01b0384163b156125a2576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061243f903390899088908890600401612e4c565b602060405180830381600087803b15801561245957600080fd5b505af19250505080156124a7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124a491810190612d1f565b60015b612557573d8080156124d5576040519150601f19603f3d011682016040523d82523d6000602084013e6124da565b606091505b50805161254f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119e9565b506001949350505050565b600060016125ba846111c3565b6125c49190612f04565b600083815260076020526040902054909150808214612617576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061265c90600190612f04565b6000838152600960205260408120546008805493945090928490811061268457612684613075565b9060005260206000200154905080600883815481106126a5576126a5613075565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126dd576126dd613046565b6001900381819060005260206000200160009055905550505050565b6000612704836111c3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606119e984846000856128b2565b6001600160a01b0382166127a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fb565b6000818152600260205260409020546001600160a01b0316156128075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b612813600083836121bc565b6001600160a01b038216600090815260036020526040812080546001929061283c908490612e9b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608247101561292a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108fb565b843b6129785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108fb565b600080866001600160a01b031685876040516129949190612e01565b60006040518083038185875af1925050503d80600081146129d1576040519150601f19603f3d011682016040523d82523d6000602084013e6129d6565b606091505b50915091506129e68282866129f1565b979650505050505050565b60608315612a00575081611759565b825115612a105782518084602001fd5b8160405162461bcd60e51b81526004016108fb9190612e88565b828054612a3690612f47565b90600052602060002090601f016020900481019282612a585760008555612a9e565b82601f10612a7157805160ff1916838001178555612a9e565b82800160010185558215612a9e579182015b82811115612a9e578251825591602001919060010190612a83565b50612aaa929150612aae565b5090565b5b80821115612aaa5760008155600101612aaf565b600067ffffffffffffffff80841115612ade57612ade6130a4565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612b2457612b246130a4565b81604052809350858152868686011115612b3d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b6957600080fd5b8135611759816130d3565b60008060408385031215612b8757600080fd5b8235612b92816130d3565b91506020830135612ba2816130d3565b809150509250929050565b600080600060608486031215612bc257600080fd5b8335612bcd816130d3565b92506020840135612bdd816130d3565b929592945050506040919091013590565b60008060008060808587031215612c0457600080fd5b8435612c0f816130d3565b93506020850135612c1f816130d3565b925060408501359150606085013567ffffffffffffffff811115612c4257600080fd5b8501601f81018713612c5357600080fd5b612c6287823560208401612ac3565b91505092959194509250565b60008060408385031215612c8157600080fd5b8235612c8c816130d3565b91506020830135612ba2816130e8565b60008060408385031215612caf57600080fd5b8235612cba816130d3565b946020939093013593505050565b600060208284031215612cda57600080fd5b8135611759816130e8565b600060208284031215612cf757600080fd5b8151611759816130e8565b600060208284031215612d1457600080fd5b8135611759816130f6565b600060208284031215612d3157600080fd5b8151611759816130f6565b600060208284031215612d4e57600080fd5b813567ffffffffffffffff811115612d6557600080fd5b8201601f81018413612d7657600080fd5b6119e984823560208401612ac3565b600060208284031215612d9757600080fd5b5035919050565b600060208284031215612db057600080fd5b5051919050565b60008151808452612dcf816020860160208601612f1b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251612e13818460208701612f1b565b9190910192915050565b60008351612e2f818460208801612f1b565b835190830190612e43818360208801612f1b565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e7e6080830184612db7565b9695505050505050565b6020815260006117596020830184612db7565b60008219821115612eae57612eae612fe8565b500190565b600082612ec257612ec2613017565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eff57612eff612fe8565b500290565b600082821015612f1657612f16612fe8565b500390565b60005b83811015612f36578181015183820152602001612f1e565b838111156115b25750506000910152565b600181811c90821680612f5b57607f821691505b60208210811415612f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fcd57612fcd612fe8565b5060010190565b600082612fe357612fe3613017565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461183f57600080fd5b801515811461183f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461183f57600080fdfea2646970667358221220c9d7e169541c3ea25dffbe6ad7108cbb025141d9c40291df40b65226200ed49a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000005465552425a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005465552425a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47000000000000000000000000fd1a8ee99415d61576498914547140339f59a80b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a
Deployed Bytecode
0x6080604052600436106102535760003560e01c8063715018a611610138578063bf8fbbd2116100b0578063d79779b21161007f578063e985e9c511610064578063e985e9c514610709578063f2fde38b14610752578063f3b2db3f1461077257600080fd5b8063d79779b2146106be578063e33b7de3146106f457600080fd5b8063bf8fbbd21461062d578063c4e3709514610648578063c87b56dd14610668578063ce7c2ac21461068857600080fd5b806395d89b4111610107578063a0712d68116100ec578063a0712d68146105da578063a22cb465146105ed578063b88d4fde1461060d57600080fd5b806395d89b411461058f5780639852595c146105a457600080fd5b8063715018a61461051c578063819b25ba146105315780638b83209b146105515780638da5cb5b1461057157600080fd5b80633a98ef39116101cb5780634f6ccce71161019a5780636352211e1161017f5780636352211e146104c257806368428a1b146104e257806370a08231146104fc57600080fd5b80634f6ccce71461048257806355f804b3146104a257600080fd5b80633a98ef39146103e7578063406072a9146103fc57806342842e0e1461044257806348b750441461046257600080fd5b806318160ddd1161022257806323b872dd1161020757806323b872dd146103915780632f745c59146103b157806332cb6b0c146103d157600080fd5b806318160ddd14610352578063191655871461037157600080fd5b806301ffc9a7146102a157806306fdde03146102d6578063081812fc146102f8578063095ea7b31461033057600080fd5b3661029c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ad57600080fd5b506102c16102bc366004612d02565b610787565b60405190151581526020015b60405180910390f35b3480156102e257600080fd5b506102eb6107e3565b6040516102cd9190612e88565b34801561030457600080fd5b50610318610313366004612d85565b610875565b6040516001600160a01b0390911681526020016102cd565b34801561033c57600080fd5b5061035061034b366004612c9c565b610920565b005b34801561035e57600080fd5b506008545b6040519081526020016102cd565b34801561037d57600080fd5b5061035061038c366004612b57565b610a52565b34801561039d57600080fd5b506103506103ac366004612bad565b610c2c565b3480156103bd57600080fd5b506103636103cc366004612c9c565b610cb3565b3480156103dd57600080fd5b50610363611b3981565b3480156103f357600080fd5b50600b54610363565b34801561040857600080fd5b50610363610417366004612b74565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561044e57600080fd5b5061035061045d366004612bad565b610d5b565b34801561046e57600080fd5b5061035061047d366004612b74565b610d76565b34801561048e57600080fd5b5061036361049d366004612d85565b611023565b3480156104ae57600080fd5b506103506104bd366004612d3c565b6110c7565b3480156104ce57600080fd5b506103186104dd366004612d85565b611138565b3480156104ee57600080fd5b506013546102c19060ff1681565b34801561050857600080fd5b50610363610517366004612b57565b6111c3565b34801561052857600080fd5b5061035061125d565b34801561053d57600080fd5b5061035061054c366004612d85565b6112c3565b34801561055d57600080fd5b5061031861056c366004612d85565b61139a565b34801561057d57600080fd5b50600a546001600160a01b0316610318565b34801561059b57600080fd5b506102eb6113ca565b3480156105b057600080fd5b506103636105bf366004612b57565b6001600160a01b03166000908152600e602052604090205490565b6103506105e8366004612d85565b6113d9565b3480156105f957600080fd5b50610350610608366004612c6e565b61151f565b34801561061957600080fd5b50610350610628366004612bee565b61152a565b34801561063957600080fd5b50610363669536c70891000081565b34801561065457600080fd5b50610350610663366004612cc8565b6115b8565b34801561067457600080fd5b506102eb610683366004612d85565b611677565b34801561069457600080fd5b506103636106a3366004612b57565b6001600160a01b03166000908152600d602052604090205490565b3480156106ca57600080fd5b506103636106d9366004612b57565b6001600160a01b031660009081526010602052604090205490565b34801561070057600080fd5b50600c54610363565b34801561071557600080fd5b506102c1610724366004612b74565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075e57600080fd5b5061035061076d366004612b57565b611760565b34801561077e57600080fd5b50610363600981565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107dd57506107dd82611842565b92915050565b6060600080546107f290612f47565b80601f016020809104026020016040519081016040528092919081815260200182805461081e90612f47565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092b82611138565b9050806001600160a01b0316836001600160a01b031614156109b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108fb565b336001600160a01b03821614806109d157506109d18133610724565b610a435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fb565b610a4d8383611925565b505050565b6001600160a01b0381166000908152600d6020526040902054610add5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084016108fb565b6000610ae8600c5490565b610af29047612e9b565b90506000610b1f8383610b1a866001600160a01b03166000908152600e602052604090205490565b6119ab565b905080610b945760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e7400000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b0383166000908152600e602052604081208054839290610bbc908490612e9b565b9250508190555080600c6000828254610bd59190612e9b565b90915550610be5905083826119f1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c363382611b0a565b610ca85760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108fb565b610a4d838383611c11565b6000610cbe836111c3565b8210610d325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108fb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a4d8383836040518060200160405280600081525061152a565b6001600160a01b0381166000908152600d6020526040902054610e015760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b0382166000908152601060205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610e7257600080fd5b505afa158015610e86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eaa9190612d9e565b610eb49190612e9b565b90506000610eed8383610b1a87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b905080610f625760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e7400000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b03808516600090815260116020908152604080832093871683529290529081208054839290610f99908490612e9b565b90915550506001600160a01b03841660009081526010602052604081208054839290610fc6908490612e9b565b90915550610fd79050848483611e01565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061102e60085490565b82106110a25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108fb565b600882815481106110b5576110b5613075565b90600052602060002001549050919050565b600a546001600160a01b031633146111215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b8051611134906012906020840190612a2a565b5050565b6000818152600260205260408120546001600160a01b0316806107dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108fb565b60006001600160a01b0382166112415760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108fb565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b6112c16000611e81565b565b600a546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b600061132860085490565b905060005b8281101561135a57611348336113438385612e9b565b611eeb565b8061135281612f9b565b91505061132d565b507fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f761138560085490565b60405190815260200160405180910390a15050565b6000600f82815481106113af576113af613075565b6000918252602090912001546001600160a01b031692915050565b6060600180546107f290612f47565b60006113e460085490565b60135490915060ff166114395760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f7420796574206163746976652e00000000000000000060448201526064016108fb565b611b396114468383612e9b565b11156114945760405162461bcd60e51b815260206004820152601660248201527f416d6f756e74206578636565647320737570706c792e0000000000000000000060448201526064016108fb565b346114a683669536c708910000612ec7565b11156114f45760405162461bcd60e51b815260206004820152601760248201527f4554482073656e742069732062656c6f7720636f73742e00000000000000000060448201526064016108fb565b60005b8281101561135a5761150d336113438385612e9b565b8061151781612f9b565b9150506114f7565b611134338383611f05565b6115343383611b0a565b6115a65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108fb565b6115b284848484611ff2565b50505050565b600a546001600160a01b031633146116125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a150565b6000818152600260205260409020546060906001600160a01b03166117045760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108fb565b600061170e61207b565b9050600081511161172e5760405180602001604052806000815250611759565b806117388461208a565b604051602001611749929190612e1d565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fb565b6001600160a01b0381166118365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108fb565b61183f81611e81565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118d557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107dd57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107dd565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061197282611138565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916119d59086612ec7565b6119df9190612eb3565b6119e99190612f04565b949350505050565b80471015611a415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fb565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a8e576040519150601f19603f3d011682016040523d82523d6000602084013e611a93565b606091505b5050905080610a4d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fb565b6000818152600260205260408120546001600160a01b0316611b945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108fb565b6000611b9f83611138565b9050806001600160a01b0316846001600160a01b03161480611bda5750836001600160a01b0316611bcf84610875565b6001600160a01b0316145b806119e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b0316611c2482611138565b6001600160a01b031614611ca05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108fb565b6001600160a01b038216611d1b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108fb565b611d268383836121bc565b611d31600082611925565b6001600160a01b0383166000908152600360205260408120805460019290611d5a908490612f04565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d88908490612e9b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a4d908490612274565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611134828260405180602001604052806000815250612359565b816001600160a01b0316836001600160a01b03161415611f675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fb565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ffd848484611c11565b612009848484846123e2565b6115b25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b6060601280546107f290612f47565b6060816120ca57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120f457806120de81612f9b565b91506120ed9050600a83612eb3565b91506120ce565b60008167ffffffffffffffff81111561210f5761210f6130a4565b6040519080825280601f01601f191660200182016040528015612139576020820181803683370190505b5090505b84156119e95761214e600183612f04565b915061215b600a86612fd4565b612166906030612e9b565b60f81b81838151811061217b5761217b613075565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121b5600a86612eb3565b945061213d565b6001600160a01b0383166122175761221281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61223a565b816001600160a01b0316836001600160a01b03161461223a5761223a83826125ad565b6001600160a01b03821661225157610a4d8161264a565b826001600160a01b0316826001600160a01b031614610a4d57610a4d82826126f9565b60006122c9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661273d9092919063ffffffff16565b805190915015610a4d57808060200190518101906122e79190612ce5565b610a4d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016108fb565b612363838361274c565b61237060008484846123e2565b610a4d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b60006001600160a01b0384163b156125a2576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061243f903390899088908890600401612e4c565b602060405180830381600087803b15801561245957600080fd5b505af19250505080156124a7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124a491810190612d1f565b60015b612557573d8080156124d5576040519150601f19603f3d011682016040523d82523d6000602084013e6124da565b606091505b50805161254f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108fb565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506119e9565b506001949350505050565b600060016125ba846111c3565b6125c49190612f04565b600083815260076020526040902054909150808214612617576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061265c90600190612f04565b6000838152600960205260408120546008805493945090928490811061268457612684613075565b9060005260206000200154905080600883815481106126a5576126a5613075565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126dd576126dd613046565b6001900381819060005260206000200160009055905550505050565b6000612704836111c3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606119e984846000856128b2565b6001600160a01b0382166127a25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fb565b6000818152600260205260409020546001600160a01b0316156128075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fb565b612813600083836121bc565b6001600160a01b038216600090815260036020526040812080546001929061283c908490612e9b565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60608247101561292a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016108fb565b843b6129785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108fb565b600080866001600160a01b031685876040516129949190612e01565b60006040518083038185875af1925050503d80600081146129d1576040519150601f19603f3d011682016040523d82523d6000602084013e6129d6565b606091505b50915091506129e68282866129f1565b979650505050505050565b60608315612a00575081611759565b825115612a105782518084602001fd5b8160405162461bcd60e51b81526004016108fb9190612e88565b828054612a3690612f47565b90600052602060002090601f016020900481019282612a585760008555612a9e565b82601f10612a7157805160ff1916838001178555612a9e565b82800160010185558215612a9e579182015b82811115612a9e578251825591602001919060010190612a83565b50612aaa929150612aae565b5090565b5b80821115612aaa5760008155600101612aaf565b600067ffffffffffffffff80841115612ade57612ade6130a4565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612b2457612b246130a4565b81604052809350858152868686011115612b3d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b6957600080fd5b8135611759816130d3565b60008060408385031215612b8757600080fd5b8235612b92816130d3565b91506020830135612ba2816130d3565b809150509250929050565b600080600060608486031215612bc257600080fd5b8335612bcd816130d3565b92506020840135612bdd816130d3565b929592945050506040919091013590565b60008060008060808587031215612c0457600080fd5b8435612c0f816130d3565b93506020850135612c1f816130d3565b925060408501359150606085013567ffffffffffffffff811115612c4257600080fd5b8501601f81018713612c5357600080fd5b612c6287823560208401612ac3565b91505092959194509250565b60008060408385031215612c8157600080fd5b8235612c8c816130d3565b91506020830135612ba2816130e8565b60008060408385031215612caf57600080fd5b8235612cba816130d3565b946020939093013593505050565b600060208284031215612cda57600080fd5b8135611759816130e8565b600060208284031215612cf757600080fd5b8151611759816130e8565b600060208284031215612d1457600080fd5b8135611759816130f6565b600060208284031215612d3157600080fd5b8151611759816130f6565b600060208284031215612d4e57600080fd5b813567ffffffffffffffff811115612d6557600080fd5b8201601f81018413612d7657600080fd5b6119e984823560208401612ac3565b600060208284031215612d9757600080fd5b5035919050565b600060208284031215612db057600080fd5b5051919050565b60008151808452612dcf816020860160208601612f1b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251612e13818460208701612f1b565b9190910192915050565b60008351612e2f818460208801612f1b565b835190830190612e43818360208801612f1b565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612e7e6080830184612db7565b9695505050505050565b6020815260006117596020830184612db7565b60008219821115612eae57612eae612fe8565b500190565b600082612ec257612ec2613017565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eff57612eff612fe8565b500290565b600082821015612f1657612f16612fe8565b500390565b60005b83811015612f36578181015183820152602001612f1e565b838111156115b25750506000910152565b600181811c90821680612f5b57607f821691505b60208210811415612f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fcd57612fcd612fe8565b5060010190565b600082612fe357612fe3613017565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b038116811461183f57600080fd5b801515811461183f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461183f57600080fdfea2646970667358221220c9d7e169541c3ea25dffbe6ad7108cbb025141d9c40291df40b65226200ed49a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000005465552425a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005465552425a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47000000000000000000000000fd1a8ee99415d61576498914547140339f59a80b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000005a
-----Decoded View---------------
Arg [0] : name (string): FURBZ
Arg [1] : symbol (string): FURBZ
Arg [2] : shareholders (address[]): 0x6B99D2B10f3Cc0CE6b871A9F5f94e1ECD6222f47,0xFd1a8EE99415d61576498914547140339f59a80b
Arg [3] : shares (uint256[]): 10,90
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 465552425a000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 465552425a000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 0000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47
Arg [10] : 000000000000000000000000fd1a8ee99415d61576498914547140339f59a80b
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [13] : 000000000000000000000000000000000000000000000000000000000000005a
Deployed Bytecode Sourcemap
333:2232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3249:40:2;719:10:12;3249:40:2;;;-1:-1:-1;;;;;7799:55:16;;;7781:74;;3279:9:2;7886:2:16;7871:18;;7864:34;7754:18;3249:40:2;;;;;;;333:2232:0;;;;;990:222:8;;;;;;;;;;-1:-1:-1;990:222:8;;;;;:::i;:::-;;:::i;:::-;;;8892:14:16;;8885:22;8867:41;;8855:2;8840:18;990:222:8;;;;;;;;2473:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;;;;;-1:-1:-1;3984:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7532:55:16;;;7514:74;;7502:2;7487:18;3984:217:5;7368:226:16;3522:401:5;;;;;;;;;;-1:-1:-1;3522:401:5;;;;;:::i;:::-;;:::i;:::-;;1615:111:8;;;;;;;;;;-1:-1:-1;1702:10:8;:17;1615:111;;;20331:25:16;;;20319:2;20304:18;1615:111:8;20185:177:16;4977:553:2;;;;;;;;;;-1:-1:-1;4977:553:2;;;;;:::i;:::-;;:::i;4711:330:5:-;;;;;;;;;;-1:-1:-1;4711:330:5;;;;;:::i;:::-;;:::i;1291:253:8:-;;;;;;;;;;-1:-1:-1;1291:253:8;;;;;:::i;:::-;;:::i;446:41:0:-;;;;;;;;;;;;483:4;446:41;;3374:89:2;;;;;;;;;;-1:-1:-1;3444:12:2;;3374:89;;4466:133;;;;;;;;;;-1:-1:-1;4466:133:2;;;;;:::i;:::-;-1:-1:-1;;;;;4562:21:2;;;4536:7;4562:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4466:133;5107:179:5;;;;;;;;;;-1:-1:-1;5107:179:5;;;;;:::i;:::-;;:::i;5791:628:2:-;;;;;;;;;;-1:-1:-1;5791:628:2;;;;;:::i;:::-;;:::i;1798:230:8:-;;;;;;;;;;-1:-1:-1;1798:230:8;;;;;:::i;:::-;;:::i;1356:79:0:-;;;;;;;;;;-1:-1:-1;1356:79:0;;;;;:::i;:::-;;:::i;2176:235:5:-;;;;;;;;;;-1:-1:-1;2176:235:5;;;;;:::i;:::-;;:::i;710:30:0:-;;;;;;;;;;-1:-1:-1;710:30:0;;;;;;;;1914:205:5;;;;;;;;;;-1:-1:-1;1914:205:5;;;;;:::i;:::-;;:::i;1668:101:1:-;;;;;;;;;;;;;:::i;1553:238:0:-;;;;;;;;;;-1:-1:-1;1553:238:0;;;;;:::i;:::-;;:::i;4685:98:2:-;;;;;;;;;;-1:-1:-1;4685:98:2;;;;;:::i;:::-;;:::i;1036:85:1:-;;;;;;;;;;-1:-1:-1;1108:6:1;;-1:-1:-1;;;;;1108:6:1;1036:85;;2635:102:5;;;;;;;;;;;;;:::i;4196:107:2:-;;;;;;;;;;-1:-1:-1;4196:107:2;;;;;:::i;:::-;-1:-1:-1;;;;;4278:18:2;4252:7;4278:18;;;:9;:18;;;;;;;4196:107;1927:426:0;;;;;;:::i;:::-;;:::i;4268:153:5:-;;;;;;;;;;-1:-1:-1;4268:153:5;;;;;:::i;:::-;;:::i;5352:320::-;;;;;;;;;;-1:-1:-1;5352:320:5;;;;;:::i;:::-;;:::i;595:43:0:-;;;;;;;;;;;;626:12;595:43;;1172:110;;;;;;;;;;-1:-1:-1;1172:110:0;;;;;:::i;:::-;;:::i;2803:329:5:-;;;;;;;;;;-1:-1:-1;2803:329:5;;;;;:::i;:::-;;:::i;3999:103:2:-;;;;;;;;;;-1:-1:-1;3999:103:2;;;;;:::i;:::-;-1:-1:-1;;;;;4079:16:2;4053:7;4079:16;;;:7;:16;;;;;;;3999:103;3796:117;;;;;;;;;;-1:-1:-1;3796:117:2;;;;;:::i;:::-;-1:-1:-1;;;;;3880:26:2;3854:7;3880:26;;;:19;:26;;;;;;;3796:117;3552:93;;;;;;;;;;-1:-1:-1;3624:14:2;;3552:93;;4487:162:5;;;;;;;;;;-1:-1:-1;4487:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;4607:25:5;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162;1918:198:1;;;;;;;;;;-1:-1:-1;1918:198:1;;;;;:::i;:::-;;:::i;532:34:0:-;;;;;;;;;;;;565:1;532:34;;990:222:8;1092:4;1115:50;;;1130:35;1115:50;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:8:o;2473:98:5:-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;4079:73;;;;-1:-1:-1;;;4079:73:5;;16433:2:16;4079:73:5;;;16415:21:16;16472:2;16452:18;;;16445:30;16511:34;16491:18;;;16484:62;16582:14;16562:18;;;16555:42;16614:19;;4079:73:5;;;;;;;;;-1:-1:-1;4170:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:5;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:5;:2;-1:-1:-1;;;;;3659:11:5;;;3651:57;;;;-1:-1:-1;;;3651:57:5;;18385:2:16;3651:57:5;;;18367:21:16;18424:2;18404:18;;;18397:30;18463:34;18443:18;;;18436:62;18534:3;18514:18;;;18507:31;18555:19;;3651:57:5;18183:397:16;3651:57:5;719:10:12;-1:-1:-1;;;;;3740:21:5;;;;:62;;-1:-1:-1;3765:37:5;3782:5;719:10:12;4487:162:5;:::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:5;;14826:2:16;3719:165:5;;;14808:21:16;14865:2;14845:18;;;14838:30;14904:34;14884:18;;;14877:62;14975:26;14955:18;;;14948:54;15019:19;;3719:165:5;14624:420:16;3719:165:5;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;4977:553:2:-;-1:-1:-1;;;;;5052:16:2;;5071:1;5052:16;;;:7;:16;;;;;;5044:71;;;;-1:-1:-1;;;5044:71:2;;11292:2:16;5044:71:2;;;11274:21:16;11331:2;11311:18;;;11304:30;11370:34;11350:18;;;11343:62;11441:8;11421:18;;;11414:36;11467:19;;5044:71:2;11090:402:16;5044:71:2;5126:21;5174:15;3624:14;;;3552:93;5174:15;5150:39;;:21;:39;:::i;:::-;5126:63;;5199:15;5217:58;5233:7;5242:13;5257:17;5266:7;-1:-1:-1;;;;;4278:18:2;4252:7;4278:18;;;:9;:18;;;;;;;4196:107;5257:17;5217:15;:58::i;:::-;5199:76;-1:-1:-1;5294:12:2;5286:68;;;;-1:-1:-1;;;5286:68:2;;14063:2:16;5286:68:2;;;14045:21:16;14102:2;14082:18;;;14075:30;14141:34;14121:18;;;14114:62;14212:13;14192:18;;;14185:41;14243:19;;5286:68:2;13861:407:16;5286:68:2;-1:-1:-1;;;;;5365:18:2;;;;;;:9;:18;;;;;:29;;5387:7;;5365:18;:29;;5387:7;;5365:29;:::i;:::-;;;;;;;;5422:7;5404:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5440:35:2;;-1:-1:-1;5458:7:2;5467;5440:17;:35::i;:::-;5490:33;;;-1:-1:-1;;;;;7799:55:16;;7781:74;;7886:2;7871:18;;7864:34;;;5490:33:2;;7754:18:16;5490:33:2;;;;;;;5034:496;;4977:553;:::o;4711:330:5:-;4900:41;719:10:12;4933:7:5;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:5;;18787:2:16;4892:103:5;;;18769:21:16;18826:2;18806:18;;;18799:30;18865:34;18845:18;;;18838:62;18936:19;18916:18;;;18909:47;18973:19;;4892:103:5;18585:413:16;4892:103:5;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;1291:253:8:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:8;;9697:2:16;1407:87:8;;;9679:21:16;9736:2;9716:18;;;9709:30;9775:34;9755:18;;;9748:62;9846:13;9826:18;;;9819:41;9877:19;;1407:87:8;9495:407:16;1407:87:8;-1:-1:-1;;;;;;1511:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;5107:179:5:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;5791:628:2:-;-1:-1:-1;;;;;5872:16:2;;5891:1;5872:16;;;:7;:16;;;;;;5864:71;;;;-1:-1:-1;;;5864:71:2;;11292:2:16;5864:71:2;;;11274:21:16;11331:2;11311:18;;;11304:30;11370:34;11350:18;;;11343:62;11441:8;11421:18;;;11414:36;11467:19;;5864:71:2;11090:402:16;5864:71:2;-1:-1:-1;;;;;3880:26:2;;5946:21;3880:26;;;:19;:26;;;;;;5970:30;;;;;5994:4;5970:30;;;7514:74:16;-1:-1:-1;;;;;5970:15:2;;;;;7487:18:16;;5970:30:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5946:77;;6033:15;6051:65;6067:7;6076:13;6091:24;6100:5;6107:7;-1:-1:-1;;;;;4562:21:2;;;4536:7;4562:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4466:133;6051:65;6033:83;-1:-1:-1;6135:12:2;6127:68;;;;-1:-1:-1;;;6127:68:2;;14063:2:16;6127:68:2;;;14045:21:16;14102:2;14082:18;;;14075:30;14141:34;14121:18;;;14114:62;14212:13;14192:18;;;14185:41;14243:19;;6127:68:2;13861:407:16;6127:68:2;-1:-1:-1;;;;;6206:21:2;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6240:7;;6206:21;:41;;6240:7;;6206:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6257:26:2;;;;;;:19;:26;;;;;:37;;6287:7;;6257:26;:37;;6287:7;;6257:37;:::i;:::-;;;;-1:-1:-1;6305:47:2;;-1:-1:-1;6328:5:2;6335:7;6344;6305:22;:47::i;:::-;6367:45;;;-1:-1:-1;;;;;7799:55:16;;;7781:74;;7886:2;7871:18;;7864:34;;;6367:45:2;;;;;7754:18:16;6367:45:2;;;;;;;5854:565;;5791:628;;:::o;1798:230:8:-;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:8;;19563:2:16;1892:95:8;;;19545:21:16;19602:2;19582:18;;;19575:30;19641:34;19621:18;;;19614:62;19712:14;19692:18;;;19685:42;19744:19;;1892:95:8;19361:408:16;1892:95:8;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;1997:24;;1798:230;;;:::o;1356:79:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:12;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;16846:2:16;1240:68:1;;;16828:21:16;;;16865:18;;;16858:30;16924:34;16904:18;;;16897:62;16976:18;;1240:68:1;16644:356:16;1240:68:1;1420:10:0;;::::1;::::0;:4:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1356:79:::0;:::o;2176:235:5:-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:5;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:5;;15662:2:16;2309:73:5;;;15644:21:16;15701:2;15681:18;;;15674:30;15740:34;15720:18;;;15713:62;15811:11;15791:18;;;15784:39;15840:19;;2309:73:5;15460:405:16;1914:205:5;1986:7;-1:-1:-1;;;;;2013:19:5;;2005:74;;;;-1:-1:-1;;;2005:74:5;;15251:2:16;2005:74:5;;;15233:21:16;15290:2;15270:18;;;15263:30;15329:34;15309:18;;;15302:62;15400:12;15380:18;;;15373:40;15430:19;;2005:74:5;15049:406:16;2005:74:5;-1:-1:-1;;;;;;2096:16:5;;;;;:9;:16;;;;;;;1914:205::o;1668:101:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:12;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;16846:2:16;1240:68:1;;;16828:21:16;;;16865:18;;;16858:30;16924:34;16904:18;;;16897:62;16976:18;;1240:68:1;16644:356:16;1240:68:1;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1553:238:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:12;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;16846:2:16;1240:68:1;;;16828:21:16;;;16865:18;;;16858:30;16924:34;16904:18;;;16897:62;16976:18;;1240:68:1;16644:356:16;1240:68:1;1608:22:0::1;1633:13;1702:10:8::0;:17;;1615:111;1633:13:0::1;1608:38;;1657:9;1652:90;1676:3;1672:1;:7;1652:90;;;1694:41;1704:10;1716:18;1733:1:::0;1716:14;:18:::1;:::i;:::-;1694:9;:41::i;:::-;1681:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1652:90;;;;1753:33;1772:13;1702:10:8::0;:17;;1615:111;1772:13:0::1;1753:33;::::0;20331:25:16;;;20319:2;20304:18;1753:33:0::1;;;;;;;1602:189;1553:238:::0;:::o;4685:98:2:-;4736:7;4762;4770:5;4762:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4762:14:2;;4685:98;-1:-1:-1;;4685:98:2:o;2635:102:5:-;2691:13;2723:7;2716:14;;;;;:::i;1927:426:0:-;1977:22;2002:13;1702:10:8;:17;;1615:111;2002:13:0;2029:10;;1977:38;;-1:-1:-1;2029:10:0;;2021:46;;;;-1:-1:-1;;;2021:46:0;;17207:2:16;2021:46:0;;;17189:21:16;17246:2;17226:18;;;17219:30;17285:25;17265:18;;;17258:53;17328:18;;2021:46:0;17005:347:16;2021:46:0;483:4;2081:20;2098:3;2081:14;:20;:::i;:::-;:34;;2073:69;;;;-1:-1:-1;;;2073:69:0;;14475:2:16;2073:69:0;;;14457:21:16;14514:2;14494:18;;;14487:30;14553:24;14533:18;;;14526:52;14595:18;;2073:69:0;14273:346:16;2073:69:0;2170:9;2156:10;2163:3;626:12;2156:10;:::i;:::-;:23;;2148:59;;;;-1:-1:-1;;;2148:59:0;;9345:2:16;2148:59:0;;;9327:21:16;9384:2;9364:18;;;9357:30;9423:25;9403:18;;;9396:53;9466:18;;2148:59:0;9143:347:16;2148:59:0;2219:9;2214:90;2238:3;2234:1;:7;2214:90;;;2256:41;2266:10;2278:18;2295:1;2278:14;:18;:::i;2256:41::-;2243:3;;;;:::i;:::-;;;;2214:90;;4268:153:5;4362:52;719:10:12;4395:8:5;4405;4362:18;:52::i;5352:320::-;5521:41;719:10:12;5554:7:5;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:5;;18787:2:16;5513:103:5;;;18769:21:16;18826:2;18806:18;;;18799:30;18865:34;18845:18;;;18838:62;18936:19;18916:18;;;18909:47;18973:19;;5513:103:5;18585:413:16;5513:103:5;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;1172:110:0:-;1108:6:1;;-1:-1:-1;;;;;1108:6:1;719:10:12;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;16846:2:16;1240:68:1;;;16828:21:16;;;16865:18;;;16858:30;16924:34;16904:18;;;16897:62;16976:18;;1240:68:1;16644:356:16;1240:68:1;1229:10:0::1;:16:::0;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;1256:21:::1;::::0;8867:41:16;;;1256:21:0::1;::::0;8855:2:16;8840:18;1256:21:0::1;;;;;;;1172:110:::0;:::o;2803:329:5:-;7209:4;7232:16;;;:7;:16;;;;;;2876:13;;-1:-1:-1;;;;;7232:16:5;2901:76;;;;-1:-1:-1;;;2901:76:5;;17969:2:16;2901:76:5;;;17951:21:16;18008:2;17988:18;;;17981:30;18047:34;18027:18;;;18020:62;18118:17;18098:18;;;18091:45;18153:19;;2901:76:5;17767:411:16;2901:76:5;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:5:o;1918:198:1:-;1108:6;;-1:-1:-1;;;;;1108:6:1;719:10:12;1248:23:1;1240:68;;;;-1:-1:-1;;;1240:68:1;;16846:2:16;1240:68:1;;;16828:21:16;;;16865:18;;;16858:30;16924:34;16904:18;;;16897:62;16976:18;;1240:68:1;16644:356:16;1240:68:1;-1:-1:-1;;;;;2006:22:1;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:1;;10528:2:16;1998:73:1::1;::::0;::::1;10510:21:16::0;10567:2;10547:18;;;10540:30;10606:34;10586:18;;;10579:62;10677:8;10657:18;;;10650:36;10703:19;;1998:73:1::1;10326:402:16::0;1998:73:1::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;1555:300:5:-;1657:4;1692:40;;;1707:25;1692:40;;:104;;-1:-1:-1;1748:48:5;;;1763:33;1748:48;1692:104;:156;;;-1:-1:-1;952:25:14;937:40;;;;1812:36:5;829:155:14;10995:171:5;11069:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;11069:29:5;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:5;;;;;;;;;;;10995:171;;:::o;6591:242:2:-;6796:12;;-1:-1:-1;;;;;6776:16:2;;6733:7;6776:16;;;:7;:16;;;;;;6733:7;;6811:15;;6760:32;;:13;:32;:::i;:::-;6759:49;;;;:::i;:::-;:67;;;;:::i;:::-;6752:74;6591:242;-1:-1:-1;;;;6591:242:2:o;2065:312:11:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:11;;12885:2:16;2146:73:11;;;12867:21:16;12924:2;12904:18;;;12897:30;12963:31;12943:18;;;12936:59;13012:18;;2146:73:11;12683:353:16;2146:73:11;2231:12;2249:9;-1:-1:-1;;;;;2249:14:11;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:11;;12458:2:16;2292:78:11;;;12440:21:16;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;12607:28;12587:18;;;12580:56;12653:19;;2292:78:11;12256:422:16;7427:344:5;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;7536:73;;;;-1:-1:-1;;;7536:73:5;;13650:2:16;7536:73:5;;;13632:21:16;13689:2;13669:18;;;13662:30;13728:34;13708:18;;;13701:62;13799:14;13779:18;;;13772:42;13831:19;;7536:73:5;13448:408:16;7536:73:5;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:5;:7;-1:-1:-1;;;;;7676:16:5;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:5;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:5;;7676:51;:87;;;-1:-1:-1;;;;;;4607:25:5;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7668:96;7427:344;-1:-1:-1;;;;7427:344:5:o;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:5;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:5;;10443:85;;;;-1:-1:-1;;;10443:85:5;;17559:2:16;10443:85:5;;;17541:21:16;17598:2;17578:18;;;17571:30;17637:34;17617:18;;;17610:62;17708:11;17688:18;;;17681:39;17737:19;;10443:85:5;17357:405:16;10443:85:5;-1:-1:-1;;;;;10546:16:5;;10538:65;;;;-1:-1:-1;;;10538:65:5;;11699:2:16;10538:65:5;;;11681:21:16;11738:2;11718:18;;;11711:30;11777:34;11757:18;;;11750:62;11848:6;11828:18;;;11821:34;11872:19;;10538:65:5;11497:400:16;10538:65:5;10614:39;10635:4;10641:2;10645:7;10614:20;:39::i;:::-;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:5;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:5;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:5;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;10813:21:5;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;701:205:4:-;840:58;;;-1:-1:-1;;;;;7799:55:16;;840:58:4;;;7781:74:16;7871:18;;;;7864:34;;;840:58:4;;;;;;;;;;7754:18:16;;;;840:58:4;;;;;;;;;;863:23;840:58;;;813:86;;833:5;;813:19;:86::i;2270:187:1:-;2362:6;;;-1:-1:-1;;;;;2378:17:1;;;;;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;8101:108:5:-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;11301:307::-;11451:8;-1:-1:-1;;;;;11442:17:5;:5;-1:-1:-1;;;;;11442:17:5;;;11434:55;;;;-1:-1:-1;;;11434:55:5;;12104:2:16;11434:55:5;;;12086:21:16;12143:2;12123:18;;;12116:30;12182:27;12162:18;;;12155:55;12227:18;;11434:55:5;11902:349:16;11434:55:5;-1:-1:-1;;;;;11499:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;11560:41;;8867::16;;;11560::5;;8840:18:16;11560:41:5;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:5;;10109:2:16;6723:111:5;;;10091:21:16;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;10258:20;10238:18;;;10231:48;10296:19;;6723:111:5;9907:414:16;2444:119:0;2524:13;2554:4;2547:11;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;2624:572:8;-1:-1:-1;;;;;2823:18:8;;2819:183;;2857:40;2889:7;4005:10;:17;;3978:24;;;;:15;:24;;;;;:44;;;4032:24;;;;;;;;;;;;3902:161;2857:40;2819:183;;;2926:2;-1:-1:-1;;;;;2918:10:8;:4;-1:-1:-1;;;;;2918:10:8;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:8;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:8;:2;-1:-1:-1;;;;;3113:10:8;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;3207:706:4:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:4;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:4;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:4;;19976:2:16;3811:85:4;;;19958:21:16;20015:2;19995:18;;;19988:30;20054:34;20034:18;;;20027:62;20125:12;20105:18;;;20098:40;20155:19;;3811:85:4;19774:406:16;8430:311:5;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;-1:-1:-1;;;8583:151:5;;10109:2:16;8583:151:5;;;10091:21:16;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;10258:20;10238:18;;;10231:48;10296:19;;8583:151:5;9907:414:16;12161:778:5;12311:4;-1:-1:-1;;;;;12331:13:5;;1087:20:11;1133:8;12327:606:5;;12366:72;;;;;-1:-1:-1;;;;;12366:36:5;;;;;:72;;719:10:12;;12417:4:5;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:5;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:5;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:5;;10109:2:16;12647:60:5;;;10091:21:16;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;10258:20;10238:18;;;10231:48;10296:19;;12647:60:5;9907:414:16;12601:266:5;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;12488:51;;12498:41;12488:51;;-1:-1:-1;12481:58:5;;12327:606;-1:-1:-1;12918:4:5;12161:778;;;;;;:::o;4680:970:8:-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;5003:18;5024:26;;;:17;:26;;;;;;4942:51;;-1:-1:-1;5154:28:8;;;5150:323;;-1:-1:-1;;;;;5220:18:8;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:8;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:8;;;;;:12;:18;;;;;:34;;;;;;;5602:41;4680:970::o;5938:1061::-;6212:10;:17;6187:22;;6212:21;;6232:1;;6212:21;:::i;:::-;6243:18;6264:24;;;:15;:24;;;;;;6632:10;:26;;6187:46;;-1:-1:-1;6264:24:8;;6187:46;;6632:26;;;;;;:::i;:::-;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:8:o;3514:223:11:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;9063:372:5:-;-1:-1:-1;;;;;9142:16:5;;9134:61;;;;-1:-1:-1;;;9134:61:5;;16072:2:16;9134:61:5;;;16054:21:16;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;9134:61:5;15870:356:16;9134:61:5;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:5;:30;9205:58;;;;-1:-1:-1;;;9205:58:5;;10935:2:16;9205:58:5;;;10917:21:16;10974:2;10954:18;;;10947:30;11013;10993:18;;;10986:58;11061:18;;9205:58:5;10733:352:16;9205:58:5;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;-1:-1:-1;;;;;9330:13:5;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:5;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;9358:21:5;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;4601:499:11:-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:11;;13243:2:16;4790:81:11;;;13225:21:16;13282:2;13262:18;;;13255:30;13321:34;13301:18;;;13294:62;13392:8;13372:18;;;13365:36;13418:19;;4790:81:11;13041:402:16;4790:81:11;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:11;;19205:2:16;4881:60:11;;;19187:21:16;19244:2;19224:18;;;19217:30;19283:31;19263:18;;;19256:59;19332:18;;4881:60:11;19003:353:16;4881:60:11;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:11;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:11:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:11;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:11;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:16;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;591:1;588;581:12;550:45;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;;;;14:690;;;;;:::o;709:247::-;768:6;821:2;809:9;800:7;796:23;792:32;789:52;;;837:1;834;827:12;789:52;876:9;863:23;895:31;920:5;895:31;:::i;1221:388::-;1289:6;1297;1350:2;1338:9;1329:7;1325:23;1321:32;1318:52;;;1366:1;1363;1356:12;1318:52;1405:9;1392:23;1424:31;1449:5;1424:31;:::i;:::-;1474:5;-1:-1:-1;1531:2:16;1516:18;;1503:32;1544:33;1503:32;1544:33;:::i;:::-;1596:7;1586:17;;;1221:388;;;;;:::o;1614:456::-;1691:6;1699;1707;1760:2;1748:9;1739:7;1735:23;1731:32;1728:52;;;1776:1;1773;1766:12;1728:52;1815:9;1802:23;1834:31;1859:5;1834:31;:::i;:::-;1884:5;-1:-1:-1;1941:2:16;1926:18;;1913:32;1954:33;1913:32;1954:33;:::i;:::-;1614:456;;2006:7;;-1:-1:-1;;;2060:2:16;2045:18;;;;2032:32;;1614:456::o;2075:794::-;2170:6;2178;2186;2194;2247:3;2235:9;2226:7;2222:23;2218:33;2215:53;;;2264:1;2261;2254:12;2215:53;2303:9;2290:23;2322:31;2347:5;2322:31;:::i;:::-;2372:5;-1:-1:-1;2429:2:16;2414:18;;2401:32;2442:33;2401:32;2442:33;:::i;:::-;2494:7;-1:-1:-1;2548:2:16;2533:18;;2520:32;;-1:-1:-1;2603:2:16;2588:18;;2575:32;2630:18;2619:30;;2616:50;;;2662:1;2659;2652:12;2616:50;2685:22;;2738:4;2730:13;;2726:27;-1:-1:-1;2716:55:16;;2767:1;2764;2757:12;2716:55;2790:73;2855:7;2850:2;2837:16;2832:2;2828;2824:11;2790:73;:::i;:::-;2780:83;;;2075:794;;;;;;;:::o;2874:382::-;2939:6;2947;3000:2;2988:9;2979:7;2975:23;2971:32;2968:52;;;3016:1;3013;3006:12;2968:52;3055:9;3042:23;3074:31;3099:5;3074:31;:::i;:::-;3124:5;-1:-1:-1;3181:2:16;3166:18;;3153:32;3194:30;3153:32;3194:30;:::i;3261:315::-;3329:6;3337;3390:2;3378:9;3369:7;3365:23;3361:32;3358:52;;;3406:1;3403;3396:12;3358:52;3445:9;3432:23;3464:31;3489:5;3464:31;:::i;:::-;3514:5;3566:2;3551:18;;;;3538:32;;-1:-1:-1;;;3261:315:16:o;3581:241::-;3637:6;3690:2;3678:9;3669:7;3665:23;3661:32;3658:52;;;3706:1;3703;3696:12;3658:52;3745:9;3732:23;3764:28;3786:5;3764:28;:::i;3827:245::-;3894:6;3947:2;3935:9;3926:7;3922:23;3918:32;3915:52;;;3963:1;3960;3953:12;3915:52;3995:9;3989:16;4014:28;4036:5;4014:28;:::i;4077:245::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;4243:9;4230:23;4262:30;4286:5;4262:30;:::i;4327:249::-;4396:6;4449:2;4437:9;4428:7;4424:23;4420:32;4417:52;;;4465:1;4462;4455:12;4417:52;4497:9;4491:16;4516:30;4540:5;4516:30;:::i;5254:450::-;5323:6;5376:2;5364:9;5355:7;5351:23;5347:32;5344:52;;;5392:1;5389;5382:12;5344:52;5432:9;5419:23;5465:18;5457:6;5454:30;5451:50;;;5497:1;5494;5487:12;5451:50;5520:22;;5573:4;5565:13;;5561:27;-1:-1:-1;5551:55:16;;5602:1;5599;5592:12;5551:55;5625:73;5690:7;5685:2;5672:16;5667:2;5663;5659:11;5625:73;:::i;5709:180::-;5768:6;5821:2;5809:9;5800:7;5796:23;5792:32;5789:52;;;5837:1;5834;5827:12;5789:52;-1:-1:-1;5860:23:16;;5709:180;-1:-1:-1;5709:180:16:o;5894:184::-;5964:6;6017:2;6005:9;5996:7;5992:23;5988:32;5985:52;;;6033:1;6030;6023:12;5985:52;-1:-1:-1;6056:16:16;;5894:184;-1:-1:-1;5894:184:16:o;6083:316::-;6124:3;6162:5;6156:12;6189:6;6184:3;6177:19;6205:63;6261:6;6254:4;6249:3;6245:14;6238:4;6231:5;6227:16;6205:63;:::i;:::-;6313:2;6301:15;6318:66;6297:88;6288:98;;;;6388:4;6284:109;;6083:316;-1:-1:-1;;6083:316:16:o;6404:274::-;6533:3;6571:6;6565:13;6587:53;6633:6;6628:3;6621:4;6613:6;6609:17;6587:53;:::i;:::-;6656:16;;;;;6404:274;-1:-1:-1;;6404:274:16:o;6683:470::-;6862:3;6900:6;6894:13;6916:53;6962:6;6957:3;6950:4;6942:6;6938:17;6916:53;:::i;:::-;7032:13;;6991:16;;;;7054:57;7032:13;6991:16;7088:4;7076:17;;7054:57;:::i;:::-;7127:20;;6683:470;-1:-1:-1;;;;6683:470:16:o;7909:511::-;8103:4;-1:-1:-1;;;;;8213:2:16;8205:6;8201:15;8190:9;8183:34;8265:2;8257:6;8253:15;8248:2;8237:9;8233:18;8226:43;;8305:6;8300:2;8289:9;8285:18;8278:34;8348:3;8343:2;8332:9;8328:18;8321:31;8369:45;8409:3;8398:9;8394:19;8386:6;8369:45;:::i;:::-;8361:53;7909:511;-1:-1:-1;;;;;;7909:511:16:o;8919:219::-;9068:2;9057:9;9050:21;9031:4;9088:44;9128:2;9117:9;9113:18;9105:6;9088:44;:::i;20367:128::-;20407:3;20438:1;20434:6;20431:1;20428:13;20425:39;;;20444:18;;:::i;:::-;-1:-1:-1;20480:9:16;;20367:128::o;20500:120::-;20540:1;20566;20556:35;;20571:18;;:::i;:::-;-1:-1:-1;20605:9:16;;20500:120::o;20625:228::-;20665:7;20791:1;20723:66;20719:74;20716:1;20713:81;20708:1;20701:9;20694:17;20690:105;20687:131;;;20798:18;;:::i;:::-;-1:-1:-1;20838:9:16;;20625:228::o;20858:125::-;20898:4;20926:1;20923;20920:8;20917:34;;;20931:18;;:::i;:::-;-1:-1:-1;20968:9:16;;20858:125::o;20988:258::-;21060:1;21070:113;21084:6;21081:1;21078:13;21070:113;;;21160:11;;;21154:18;21141:11;;;21134:39;21106:2;21099:10;21070:113;;;21201:6;21198:1;21195:13;21192:48;;;-1:-1:-1;;21236:1:16;21218:16;;21211:27;20988:258::o;21251:437::-;21330:1;21326:12;;;;21373;;;21394:61;;21448:4;21440:6;21436:17;21426:27;;21394:61;21501:2;21493:6;21490:14;21470:18;21467:38;21464:218;;;21538:77;21535:1;21528:88;21639:4;21636:1;21629:15;21667:4;21664:1;21657:15;21464:218;;21251:437;;;:::o;21693:195::-;21732:3;21763:66;21756:5;21753:77;21750:103;;;21833:18;;:::i;:::-;-1:-1:-1;21880:1:16;21869:13;;21693:195::o;21893:112::-;21925:1;21951;21941:35;;21956:18;;:::i;:::-;-1:-1:-1;21990:9:16;;21893:112::o;22010:184::-;22062:77;22059:1;22052:88;22159:4;22156:1;22149:15;22183:4;22180:1;22173:15;22199:184;22251:77;22248:1;22241:88;22348:4;22345:1;22338:15;22372:4;22369:1;22362:15;22388:184;22440:77;22437:1;22430:88;22537:4;22534:1;22527:15;22561:4;22558:1;22551:15;22577:184;22629:77;22626:1;22619:88;22726:4;22723:1;22716:15;22750:4;22747:1;22740:15;22766:184;22818:77;22815:1;22808:88;22915:4;22912:1;22905:15;22939:4;22936:1;22929:15;22955:154;-1:-1:-1;;;;;23034:5:16;23030:54;23023:5;23020:65;23010:93;;23099:1;23096;23089:12;23114:118;23200:5;23193:13;23186:21;23179:5;23176:32;23166:60;;23222:1;23219;23212:12;23237:177;23322:66;23315:5;23311:78;23304:5;23301:89;23291:117;;23404:1;23401;23394:12
Swarm Source
ipfs://c9d7e169541c3ea25dffbe6ad7108cbb025141d9c40291df40b65226200ed49a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,381.76 | 1.3986 | $4,729.73 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.