Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
600 ShiryoinuPack
Holders
130
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 ShiryoinuPackLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShiryoinuPack
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-08 */ // Sources flattened with hardhat v2.4.1 https://hardhat.org // File contracts/@openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File contracts/@openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File contracts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File contracts/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File contracts/@openzeppelin/contracts/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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/@openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File contracts/@openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/@openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts/@openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } // File contracts/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File contracts/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File contracts/@openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } // File contracts/@openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/final.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { 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); } interface IShiryoinuPack { function isFounder(uint256 tokenId) external returns (bool); function burn(uint256 tokenId) external; } contract ShiryoinuPack is IShiryoinuPack,ERC721Enumerable, Ownable{ using SafeMath for uint256; using Counters for Counters.Counter; modifier onlyClevel() { require(msg.sender == walletA || msg.sender == walletB || msg.sender == owner()); _; } Counters.Counter private _tokenIds; address walletA; address walletB; uint256 walletBPercentage = 15; IERC20 public founderToken; uint256 public minimumFounderAmount = 25000000000000; struct Pack{ bool founder; } mapping(uint256=>Pack) public packs; mapping(uint256=>uint256) public mintAmountToPrice; string private _baseTokenURI; event minting(uint256 id, address indexed customer); constructor(IERC20 _founderToken, address _walletA, address _walletB) ERC721("ShiryoinuPack", "ShiryoinuPack") { _baseTokenURI = "https://app.shiryoinu.com/packs/"; walletA = _walletA; walletB = _walletB; founderToken = _founderToken; mintAmountToPrice[1]= 0.05 ether; mintAmountToPrice[5]= 0.25 ether; mintAmountToPrice[10]= 0.45 ether; mintAmountToPrice[20]= 0.85 ether; } function isFounder(uint256 tokenId) view public override returns (bool){ return packs[tokenId].founder; } function burn(uint256 tokenId) public override{ require(_isApprovedOrOwner(msg.sender, tokenId)); _burn(tokenId); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function mint_pack(uint256 _amount) public payable returns (uint256[] memory minted) { require(_amount>0 && mintAmountToPrice[_amount]>0, "NFT: Invalid amount to mint."); require(msg.value>0 && msg.value==mintAmountToPrice[_amount] , "NFT: Invalid value."); uint256[] memory tokensMinted; for (uint256 i = 0; i < _amount; i++) { _tokenIds.increment(); uint256 newPack = _tokenIds.current(); _mint(msg.sender, newPack); bool founder = founderToken.balanceOf(msg.sender)>=minimumFounderAmount; packs[newPack] = Pack({ founder: founder }); emit minting(newPack, msg.sender); } return tokensMinted; } // admin and clevel functions function setMinimumFounderTokenAmount(uint256 _amount) public onlyOwner { minimumFounderAmount = _amount; } function setMintPrice(uint256 _amount, uint256 _price) public onlyOwner { mintAmountToPrice[_amount]=_price; } function withdraw_all() public onlyClevel { require (address(this).balance > 0); uint256 amountB = SafeMath.div(address(this).balance,100).mul(walletBPercentage); uint256 amountA = address(this).balance.sub(amountB); payable(walletA).transfer(amountA); payable(walletB).transfer(amountB); } function setWalletA(address _walletA) public { require (msg.sender == walletA, "Who are you?"); require (_walletA != address(0x0), "Invalid wallet"); walletA = _walletA; } function setWalletB(address _walletB) public { require (msg.sender == walletB, "Who are you?"); require (_walletB != address(0x0), "Invalid wallet."); walletB = _walletB; } function setWalletBPercentage(uint256 _percentage) public onlyOwner{ require (_percentage>walletBPercentage && _percentage<=100, "Invalid new slice."); walletBPercentage = _percentage; } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_founderToken","type":"address"},{"internalType":"address","name":"_walletA","type":"address"},{"internalType":"address","name":"_walletB","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"customer","type":"address"}],"name":"minting","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"founderToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"isFounder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumFounderAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintAmountToPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint_pack","outputs":[{"internalType":"uint256[]","name":"minted","type":"uint256[]"}],"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":"","type":"uint256"}],"name":"packs","outputs":[{"internalType":"bool","name":"founder","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMinimumFounderTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletA","type":"address"}],"name":"setWalletA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletB","type":"address"}],"name":"setWalletB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setWalletBPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_all","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600f600e556516bcc41e90006010553480156200002057600080fd5b506040516200289a3803806200289a8339810160408190526200004391620002ee565b604080518082018252600d8082526c53686972796f696e755061636b60981b6020808401828152855180870190965292855284015281519192916200008b9160009162000248565b508051620000a190600190602084019062000248565b5050506000620000b66200024460201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260208082527f68747470733a2f2f6170702e73686972796f696e752e636f6d2f7061636b732f918101918252620001489160139162000248565b50600c80546001600160a01b039384166001600160a01b031991821617909155600d805492841692821692909217909155600f8054939092169216919091179055601260205266b1a2bc2ec500007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a3556703782dace9d900007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f267465567063eb89da4ed00007f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e4e556014600052670bcbce7f1b1500007f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f205562000398565b3390565b828054620002569062000342565b90600052602060002090601f0160209004810192826200027a5760008555620002c5565b82601f106200029557805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c5578251825591602001919060010190620002a8565b50620002d3929150620002d7565b5090565b5b80821115620002d35760008155600101620002d8565b6000806000606084860312156200030457600080fd5b835162000311816200037f565b602085015190935062000324816200037f565b604085015190925062000337816200037f565b809150509250925092565b600181811c908216806200035757607f821691505b602082108114156200037957634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03811681146200039557600080fd5b50565b6124f280620003a86000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a1578063ca68705f146105c1578063dd473d2b146105ee578063e985e9c514610603578063f2fde38b1461064c57600080fd5b8063a22cb46514610501578063a303cf8e14610521578063b84c139214610551578063b88d4fde1461058157600080fd5b80638462151c116100dc5780638462151c1461048e5780638da5cb5b146104ae57806395d89b41146104cc57806396cbf2e9146104e157600080fd5b806370a0823114610419578063715018a61461043957806371dbd5b91461044e5780637479b9ac1461046e57600080fd5b80632a983a041161018557806342de73b01161015457806342de73b0146103a35780634c89b86c146103b95780634f6ccce7146103d95780636352211e146103f957600080fd5b80632a983a04146103235780632f745c591461034357806342842e0e1461036357806342966c681461038357600080fd5b80630936ed1b116101c15780630936ed1b146102a4578063095ea7b3146102c457806318160ddd146102e457806323b872dd1461030357600080fd5b806301ffc9a7146101f35780630442bfa81461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046120db565b61066c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004612147565b610697565b005b34801561025657600080fd5b5061025f6106dc565b60405161021f9190612245565b34801561027857600080fd5b5061028c610287366004612115565b61076e565b6040516001600160a01b03909116815260200161021f565b6102b76102b2366004612115565b610803565b60405161021f9190612201565b3480156102d057600080fd5b506102486102df3660046120b1565b6109fd565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b5061024861031e366004611f5d565b610b13565b34801561032f57600080fd5b5061024861033e366004612115565b610b44565b34801561034f57600080fd5b506102f561035e3660046120b1565b610bc6565b34801561036f57600080fd5b5061024861037e366004611f5d565b610c5c565b34801561038f57600080fd5b5061024861039e366004612115565b610c77565b3480156103af57600080fd5b506102f560105481565b3480156103c557600080fd5b506102486103d4366004611f0f565b610c96565b3480156103e557600080fd5b506102f56103f4366004612115565b610d48565b34801561040557600080fd5b5061028c610414366004612115565b610ddb565b34801561042557600080fd5b506102f5610434366004611f0f565b610e52565b34801561044557600080fd5b50610248610ed9565b34801561045a57600080fd5b50610248610469366004612115565b610f4d565b34801561047a57600080fd5b50600f5461028c906001600160a01b031681565b34801561049a57600080fd5b506102b76104a9366004611f0f565b610f7c565b3480156104ba57600080fd5b50600a546001600160a01b031661028c565b3480156104d857600080fd5b5061025f61103b565b3480156104ed57600080fd5b506102486104fc366004611f0f565b61104a565b34801561050d57600080fd5b5061024861051c366004612075565b6110fd565b34801561052d57600080fd5b5061021361053c366004612115565b60009081526011602052604090205460ff1690565b34801561055d57600080fd5b5061021361056c366004612115565b60116020526000908152604090205460ff1681565b34801561058d57600080fd5b5061024861059c366004611f99565b6111c2565b3480156105ad57600080fd5b5061025f6105bc366004612115565b6111fa565b3480156105cd57600080fd5b506102f56105dc366004612115565b60126020526000908152604090205481565b3480156105fa57600080fd5b506102486112d5565b34801561060f57600080fd5b5061021361061e366004611f2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065857600080fd5b50610248610667366004611f0f565b6113c0565b60006001600160e01b0319821663780e9d6360e01b14806106915750610691826114ab565b92915050565b600a546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c1906122aa565b60405180910390fd5b60009182526012602052604090912055565b6060600080546106eb906123be565b80601f0160208091040260200160405190810160405280929190818152602001828054610717906123be565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b506000908152600460205260409020546001600160a01b031690565b6060600082118015610822575060008281526012602052604090205415155b61086e5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a20496e76616c696420616d6f756e7420746f206d696e742e0000000060448201526064016106c1565b60003411801561088b575060008281526012602052604090205434145b6108cd5760405162461bcd60e51b815260206004820152601360248201527227232a1d1024b73b30b634b2103b30b63ab29760691b60448201526064016106c1565b606060005b838110156109f6576108e8600b80546001019055565b60006108f3600b5490565b90506108ff33826114fb565b601054600f546040516370a0823160e01b8152336004820152600092916001600160a01b0316906370a082319060240160206040518083038186803b15801561094757600080fd5b505afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f919061212e565b604080516020808201835293909210158083526000868152601185528290209251835460ff1916901515179092555184815290925033917f54855a9fb433368921efe4d763fbb5327f14a84ed1e1a450367bd6811d96636f910160405180910390a2505080806109ee906123f3565b9150506108d2565b5092915050565b6000610a0882610ddb565b9050806001600160a01b0316836001600160a01b03161415610a765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b0382161480610a925750610a92813361061e565b610b045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b610b0e8383611649565b505050565b610b1d33826116b7565b610b395760405162461bcd60e51b81526004016106c1906122df565b610b0e8383836117ae565b600a546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016106c1906122aa565b600e5481118015610b80575060648111155b610bc15760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b2103732bb9039b634b1b29760711b60448201526064016106c1565b600e55565b6000610bd183610e52565b8210610c335760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b0e838383604051806020016040528060008152506111c2565b610c8133826116b7565b610c8a57600080fd5b610c9381611959565b50565b600c546001600160a01b03163314610cdf5760405162461bcd60e51b815260206004820152600c60248201526b57686f2061726520796f753f60a01b60448201526064016106c1565b6001600160a01b038116610d265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b60448201526064016106c1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d5360085490565b8210610db65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c1565b60088281548110610dc957610dc961247a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b81526004016106c1906122aa565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610f775760405162461bcd60e51b81526004016106c1906122aa565b601055565b60606000610f8983610e52565b905080610faa5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610fc557610fc5612490565b604051908082528060200260200182016040528015610fee578160200160208202803683370190505b50905060005b82811015610fa2576110068582610bc6565b8282815181106110185761101861247a565b60209081029190910101528061102d816123f3565b915050610ff4565b50919050565b6060600180546106eb906123be565b600d546001600160a01b031633146110935760405162461bcd60e51b815260206004820152600c60248201526b57686f2061726520796f753f60a01b60448201526064016106c1565b6001600160a01b0381166110db5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b2103bb0b63632ba1760891b60448201526064016106c1565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156111565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111cc33836116b7565b6111e85760405162461bcd60e51b81526004016106c1906122df565b6111f484848484611a00565b50505050565b6000818152600260205260409020546060906001600160a01b03166112795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000611283611a33565b905060008151116112a357604051806020016040528060008152506112ce565b806112ad84611a42565b6040516020016112be929190612195565b6040516020818303038152906040525b9392505050565b600c546001600160a01b03163314806112f85750600d546001600160a01b031633145b8061130d5750600a546001600160a01b031633145b61131657600080fd5b6000471161132357600080fd5b600061133c600e54611336476064611b40565b90611b4d565b9050600061134a4783611b82565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611385573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610b0e573d6000803e3d6000fd5b600a546001600160a01b031633146113ea5760405162461bcd60e51b81526004016106c1906122aa565b6001600160a01b03811661144f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114dc57506001600160e01b03198216635b5e139f60e01b145b8061069157506301ffc9a760e01b6001600160e01b0319831614610691565b6001600160a01b0382166115515760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b0316156115b65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b6115c260008383611b9e565b6001600160a01b03821660009081526003602052604081208054600192906115eb908490612330565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167e82610ddb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b600061173b83610ddb565b9050806001600160a01b0316846001600160a01b031614806117765750836001600160a01b031661176b8461076e565b6001600160a01b0316145b806117a657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c182610ddb565b6001600160a01b0316146118295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b03821661188b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b611896838383611b9e565b6118a1600082611649565b6001600160a01b03831660009081526003602052604081208054600192906118ca90849061237b565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f8908490612330565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061196482610ddb565b905061197281600084611b9e565b61197d600083611649565b6001600160a01b03811660009081526003602052604081208054600192906119a690849061237b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611a0b8484846117ae565b611a1784848484611c56565b6111f45760405162461bcd60e51b81526004016106c190612258565b6060601380546106eb906123be565b606081611a665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a905780611a7a816123f3565b9150611a899050600a83612348565b9150611a6a565b60008167ffffffffffffffff811115611aab57611aab612490565b6040519080825280601f01601f191660200182016040528015611ad5576020820181803683370190505b5090505b84156117a657611aea60018361237b565b9150611af7600a8661240e565b611b02906030612330565b60f81b818381518110611b1757611b1761247a565b60200101906001600160f81b031916908160001a905350611b39600a86612348565b9450611ad9565b6000806117a68385612348565b600082611b5c57506000610691565b6000611b68838561235c565b905082611b758583612348565b146112ce576112ce612422565b600082821115611b9457611b94612422565b6112ce828461237b565b6001600160a01b038316611bf957611bf481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c1c565b816001600160a01b0316836001600160a01b031614611c1c57611c1c8382611d63565b6001600160a01b038216611c3357610b0e81611e00565b826001600160a01b0316826001600160a01b031614610b0e57610b0e8282611eaf565b60006001600160a01b0384163b15611d5857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9a9033908990889088906004016121c4565b602060405180830381600087803b158015611cb457600080fd5b505af1925050508015611ce4575060408051601f3d908101601f19168201909252611ce1918101906120f8565b60015b611d3e573d808015611d12576040519150601f19603f3d011682016040523d82523d6000602084013e611d17565b606091505b508051611d365760405162461bcd60e51b81526004016106c190612258565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a6565b506001949350505050565b60006001611d7084610e52565b611d7a919061237b565b600083815260076020526040902054909150808214611dcd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e129060019061237b565b60008381526009602052604081205460088054939450909284908110611e3a57611e3a61247a565b906000526020600020015490508060088381548110611e5b57611e5b61247a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9357611e93612464565b6001900381819060005260206000200160009055905550505050565b6000611eba83610e52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b0381168114611f0a57600080fd5b919050565b600060208284031215611f2157600080fd5b6112ce82611ef3565b60008060408385031215611f3d57600080fd5b611f4683611ef3565b9150611f5460208401611ef3565b90509250929050565b600080600060608486031215611f7257600080fd5b611f7b84611ef3565b9250611f8960208501611ef3565b9150604084013590509250925092565b60008060008060808587031215611faf57600080fd5b611fb885611ef3565b9350611fc660208601611ef3565b925060408501359150606085013567ffffffffffffffff80821115611fea57600080fd5b818701915087601f830112611ffe57600080fd5b81358181111561201057612010612490565b604051601f8201601f19908116603f0116810190838211818310171561203857612038612490565b816040528281528a602084870101111561205157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561208857600080fd5b61209183611ef3565b9150602083013580151581146120a657600080fd5b809150509250929050565b600080604083850312156120c457600080fd5b6120cd83611ef3565b946020939093013593505050565b6000602082840312156120ed57600080fd5b81356112ce816124a6565b60006020828403121561210a57600080fd5b81516112ce816124a6565b60006020828403121561212757600080fd5b5035919050565b60006020828403121561214057600080fd5b5051919050565b6000806040838503121561215a57600080fd5b50508035926020909101359150565b60008151808452612181816020860160208601612392565b601f01601f19169290920160200192915050565b600083516121a7818460208801612392565b8351908301906121bb818360208801612392565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f790830184612169565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122395783518352928401929184019160010161221d565b50909695505050505050565b6020815260006112ce6020830184612169565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561234357612343612438565b500190565b6000826123575761235761244e565b500490565b600081600019048311821515161561237657612376612438565b500290565b60008282101561238d5761238d612438565b500390565b60005b838110156123ad578181015183820152602001612395565b838111156111f45750506000910152565b600181811c908216806123d257607f821691505b6020821081141561103557634e487b7160e01b600052602260045260246000fd5b600060001982141561240757612407612438565b5060010190565b60008261241d5761241d61244e565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9357600080fdfea26469706673582212200309feb42887b3a3233505810fa73fab30049a7e468e6b842da8e22f2247ab2d64736f6c634300080600330000000000000000000000001e2f15302b90edde696593607b6bd444b64e8f02000000000000000000000000bc3e416a2dfb162153c50b2601353cbe3dffaab90000000000000000000000006df08c7b0ce433e29a77281b6e776487730ee900
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a1578063ca68705f146105c1578063dd473d2b146105ee578063e985e9c514610603578063f2fde38b1461064c57600080fd5b8063a22cb46514610501578063a303cf8e14610521578063b84c139214610551578063b88d4fde1461058157600080fd5b80638462151c116100dc5780638462151c1461048e5780638da5cb5b146104ae57806395d89b41146104cc57806396cbf2e9146104e157600080fd5b806370a0823114610419578063715018a61461043957806371dbd5b91461044e5780637479b9ac1461046e57600080fd5b80632a983a041161018557806342de73b01161015457806342de73b0146103a35780634c89b86c146103b95780634f6ccce7146103d95780636352211e146103f957600080fd5b80632a983a04146103235780632f745c591461034357806342842e0e1461036357806342966c681461038357600080fd5b80630936ed1b116101c15780630936ed1b146102a4578063095ea7b3146102c457806318160ddd146102e457806323b872dd1461030357600080fd5b806301ffc9a7146101f35780630442bfa81461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046120db565b61066c565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004612147565b610697565b005b34801561025657600080fd5b5061025f6106dc565b60405161021f9190612245565b34801561027857600080fd5b5061028c610287366004612115565b61076e565b6040516001600160a01b03909116815260200161021f565b6102b76102b2366004612115565b610803565b60405161021f9190612201565b3480156102d057600080fd5b506102486102df3660046120b1565b6109fd565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b5061024861031e366004611f5d565b610b13565b34801561032f57600080fd5b5061024861033e366004612115565b610b44565b34801561034f57600080fd5b506102f561035e3660046120b1565b610bc6565b34801561036f57600080fd5b5061024861037e366004611f5d565b610c5c565b34801561038f57600080fd5b5061024861039e366004612115565b610c77565b3480156103af57600080fd5b506102f560105481565b3480156103c557600080fd5b506102486103d4366004611f0f565b610c96565b3480156103e557600080fd5b506102f56103f4366004612115565b610d48565b34801561040557600080fd5b5061028c610414366004612115565b610ddb565b34801561042557600080fd5b506102f5610434366004611f0f565b610e52565b34801561044557600080fd5b50610248610ed9565b34801561045a57600080fd5b50610248610469366004612115565b610f4d565b34801561047a57600080fd5b50600f5461028c906001600160a01b031681565b34801561049a57600080fd5b506102b76104a9366004611f0f565b610f7c565b3480156104ba57600080fd5b50600a546001600160a01b031661028c565b3480156104d857600080fd5b5061025f61103b565b3480156104ed57600080fd5b506102486104fc366004611f0f565b61104a565b34801561050d57600080fd5b5061024861051c366004612075565b6110fd565b34801561052d57600080fd5b5061021361053c366004612115565b60009081526011602052604090205460ff1690565b34801561055d57600080fd5b5061021361056c366004612115565b60116020526000908152604090205460ff1681565b34801561058d57600080fd5b5061024861059c366004611f99565b6111c2565b3480156105ad57600080fd5b5061025f6105bc366004612115565b6111fa565b3480156105cd57600080fd5b506102f56105dc366004612115565b60126020526000908152604090205481565b3480156105fa57600080fd5b506102486112d5565b34801561060f57600080fd5b5061021361061e366004611f2a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065857600080fd5b50610248610667366004611f0f565b6113c0565b60006001600160e01b0319821663780e9d6360e01b14806106915750610691826114ab565b92915050565b600a546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c1906122aa565b60405180910390fd5b60009182526012602052604090912055565b6060600080546106eb906123be565b80601f0160208091040260200160405190810160405280929190818152602001828054610717906123be565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107e75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b506000908152600460205260409020546001600160a01b031690565b6060600082118015610822575060008281526012602052604090205415155b61086e5760405162461bcd60e51b815260206004820152601c60248201527f4e46543a20496e76616c696420616d6f756e7420746f206d696e742e0000000060448201526064016106c1565b60003411801561088b575060008281526012602052604090205434145b6108cd5760405162461bcd60e51b815260206004820152601360248201527227232a1d1024b73b30b634b2103b30b63ab29760691b60448201526064016106c1565b606060005b838110156109f6576108e8600b80546001019055565b60006108f3600b5490565b90506108ff33826114fb565b601054600f546040516370a0823160e01b8152336004820152600092916001600160a01b0316906370a082319060240160206040518083038186803b15801561094757600080fd5b505afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f919061212e565b604080516020808201835293909210158083526000868152601185528290209251835460ff1916901515179092555184815290925033917f54855a9fb433368921efe4d763fbb5327f14a84ed1e1a450367bd6811d96636f910160405180910390a2505080806109ee906123f3565b9150506108d2565b5092915050565b6000610a0882610ddb565b9050806001600160a01b0316836001600160a01b03161415610a765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b0382161480610a925750610a92813361061e565b610b045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b610b0e8383611649565b505050565b610b1d33826116b7565b610b395760405162461bcd60e51b81526004016106c1906122df565b610b0e8383836117ae565b600a546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016106c1906122aa565b600e5481118015610b80575060648111155b610bc15760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b2103732bb9039b634b1b29760711b60448201526064016106c1565b600e55565b6000610bd183610e52565b8210610c335760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b0e838383604051806020016040528060008152506111c2565b610c8133826116b7565b610c8a57600080fd5b610c9381611959565b50565b600c546001600160a01b03163314610cdf5760405162461bcd60e51b815260206004820152600c60248201526b57686f2061726520796f753f60a01b60448201526064016106c1565b6001600160a01b038116610d265760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b60448201526064016106c1565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d5360085490565b8210610db65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106c1565b60088281548110610dc957610dc961247a565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60006001600160a01b038216610ebd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f035760405162461bcd60e51b81526004016106c1906122aa565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610f775760405162461bcd60e51b81526004016106c1906122aa565b601055565b60606000610f8983610e52565b905080610faa5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610fc557610fc5612490565b604051908082528060200260200182016040528015610fee578160200160208202803683370190505b50905060005b82811015610fa2576110068582610bc6565b8282815181106110185761101861247a565b60209081029190910101528061102d816123f3565b915050610ff4565b50919050565b6060600180546106eb906123be565b600d546001600160a01b031633146110935760405162461bcd60e51b815260206004820152600c60248201526b57686f2061726520796f753f60a01b60448201526064016106c1565b6001600160a01b0381166110db5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b2103bb0b63632ba1760891b60448201526064016106c1565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156111565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111cc33836116b7565b6111e85760405162461bcd60e51b81526004016106c1906122df565b6111f484848484611a00565b50505050565b6000818152600260205260409020546060906001600160a01b03166112795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000611283611a33565b905060008151116112a357604051806020016040528060008152506112ce565b806112ad84611a42565b6040516020016112be929190612195565b6040516020818303038152906040525b9392505050565b600c546001600160a01b03163314806112f85750600d546001600160a01b031633145b8061130d5750600a546001600160a01b031633145b61131657600080fd5b6000471161132357600080fd5b600061133c600e54611336476064611b40565b90611b4d565b9050600061134a4783611b82565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611385573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610b0e573d6000803e3d6000fd5b600a546001600160a01b031633146113ea5760405162461bcd60e51b81526004016106c1906122aa565b6001600160a01b03811661144f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806114dc57506001600160e01b03198216635b5e139f60e01b145b8061069157506301ffc9a760e01b6001600160e01b0319831614610691565b6001600160a01b0382166115515760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b0316156115b65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b6115c260008383611b9e565b6001600160a01b03821660009081526003602052604081208054600192906115eb908490612330565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167e82610ddb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117305760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b600061173b83610ddb565b9050806001600160a01b0316846001600160a01b031614806117765750836001600160a01b031661176b8461076e565b6001600160a01b0316145b806117a657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c182610ddb565b6001600160a01b0316146118295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b03821661188b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b611896838383611b9e565b6118a1600082611649565b6001600160a01b03831660009081526003602052604081208054600192906118ca90849061237b565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f8908490612330565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061196482610ddb565b905061197281600084611b9e565b61197d600083611649565b6001600160a01b03811660009081526003602052604081208054600192906119a690849061237b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611a0b8484846117ae565b611a1784848484611c56565b6111f45760405162461bcd60e51b81526004016106c190612258565b6060601380546106eb906123be565b606081611a665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a905780611a7a816123f3565b9150611a899050600a83612348565b9150611a6a565b60008167ffffffffffffffff811115611aab57611aab612490565b6040519080825280601f01601f191660200182016040528015611ad5576020820181803683370190505b5090505b84156117a657611aea60018361237b565b9150611af7600a8661240e565b611b02906030612330565b60f81b818381518110611b1757611b1761247a565b60200101906001600160f81b031916908160001a905350611b39600a86612348565b9450611ad9565b6000806117a68385612348565b600082611b5c57506000610691565b6000611b68838561235c565b905082611b758583612348565b146112ce576112ce612422565b600082821115611b9457611b94612422565b6112ce828461237b565b6001600160a01b038316611bf957611bf481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c1c565b816001600160a01b0316836001600160a01b031614611c1c57611c1c8382611d63565b6001600160a01b038216611c3357610b0e81611e00565b826001600160a01b0316826001600160a01b031614610b0e57610b0e8282611eaf565b60006001600160a01b0384163b15611d5857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9a9033908990889088906004016121c4565b602060405180830381600087803b158015611cb457600080fd5b505af1925050508015611ce4575060408051601f3d908101601f19168201909252611ce1918101906120f8565b60015b611d3e573d808015611d12576040519150601f19603f3d011682016040523d82523d6000602084013e611d17565b606091505b508051611d365760405162461bcd60e51b81526004016106c190612258565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a6565b506001949350505050565b60006001611d7084610e52565b611d7a919061237b565b600083815260076020526040902054909150808214611dcd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e129060019061237b565b60008381526009602052604081205460088054939450909284908110611e3a57611e3a61247a565b906000526020600020015490508060088381548110611e5b57611e5b61247a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9357611e93612464565b6001900381819060005260206000200160009055905550505050565b6000611eba83610e52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b0381168114611f0a57600080fd5b919050565b600060208284031215611f2157600080fd5b6112ce82611ef3565b60008060408385031215611f3d57600080fd5b611f4683611ef3565b9150611f5460208401611ef3565b90509250929050565b600080600060608486031215611f7257600080fd5b611f7b84611ef3565b9250611f8960208501611ef3565b9150604084013590509250925092565b60008060008060808587031215611faf57600080fd5b611fb885611ef3565b9350611fc660208601611ef3565b925060408501359150606085013567ffffffffffffffff80821115611fea57600080fd5b818701915087601f830112611ffe57600080fd5b81358181111561201057612010612490565b604051601f8201601f19908116603f0116810190838211818310171561203857612038612490565b816040528281528a602084870101111561205157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561208857600080fd5b61209183611ef3565b9150602083013580151581146120a657600080fd5b809150509250929050565b600080604083850312156120c457600080fd5b6120cd83611ef3565b946020939093013593505050565b6000602082840312156120ed57600080fd5b81356112ce816124a6565b60006020828403121561210a57600080fd5b81516112ce816124a6565b60006020828403121561212757600080fd5b5035919050565b60006020828403121561214057600080fd5b5051919050565b6000806040838503121561215a57600080fd5b50508035926020909101359150565b60008151808452612181816020860160208601612392565b601f01601f19169290920160200192915050565b600083516121a7818460208801612392565b8351908301906121bb818360208801612392565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121f790830184612169565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122395783518352928401929184019160010161221d565b50909695505050505050565b6020815260006112ce6020830184612169565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561234357612343612438565b500190565b6000826123575761235761244e565b500490565b600081600019048311821515161561237657612376612438565b500290565b60008282101561238d5761238d612438565b500390565b60005b838110156123ad578181015183820152602001612395565b838111156111f45750506000910152565b600181811c908216806123d257607f821691505b6020821081141561103557634e487b7160e01b600052602260045260246000fd5b600060001982141561240757612407612438565b5060010190565b60008261241d5761241d61244e565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9357600080fdfea26469706673582212200309feb42887b3a3233505810fa73fab30049a7e468e6b842da8e22f2247ab2d64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001e2f15302b90edde696593607b6bd444b64e8f02000000000000000000000000bc3e416a2dfb162153c50b2601353cbe3dffaab90000000000000000000000006df08c7b0ce433e29a77281b6e776487730ee900
-----Decoded View---------------
Arg [0] : _founderToken (address): 0x1E2F15302B90EddE696593607b6bD444B64e8F02
Arg [1] : _walletA (address): 0xBc3e416a2DfB162153C50B2601353cbE3dfFAAB9
Arg [2] : _walletB (address): 0x6Df08c7B0CE433e29A77281b6E776487730ee900
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001e2f15302b90edde696593607b6bd444b64e8f02
Arg [1] : 000000000000000000000000bc3e416a2dfb162153c50b2601353cbe3dffaab9
Arg [2] : 0000000000000000000000006df08c7b0ce433e29a77281b6e776487730ee900
Deployed Bytecode Sourcemap
47163:4241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34464:237;;;;;;;;;;-1:-1:-1;34464:237:0;;;;;:::i;:::-;;:::i;:::-;;;6106:14:1;;6099:22;6081:41;;6069:2;6054:18;34464:237:0;;;;;;;;50282:129;;;;;;;;;;-1:-1:-1;50282:129:0;;;;;:::i;:::-;;:::i;:::-;;21651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23111:221::-;;;;;;;;;;-1:-1:-1;23111:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4767:32:1;;;4749:51;;4737:2;4722:18;23111:221:0;4704:102:1;49332:771:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22648:397::-;;;;;;;;;;-1:-1:-1;22648:397:0;;;;;:::i;:::-;;:::i;35117:113::-;;;;;;;;;;-1:-1:-1;35205:10:0;:17;35117:113;;;16013:25:1;;;16001:2;15986:18;35117:113:0;15968:76:1;24001:305:0;;;;;;;;;;-1:-1:-1;24001:305:0;;;;;:::i;:::-;;:::i;51190:209::-;;;;;;;;;;-1:-1:-1;51190:209:0;;;;;:::i;:::-;;:::i;34785:256::-;;;;;;;;;;-1:-1:-1;34785:256:0;;;;;:::i;:::-;;:::i;24377:151::-;;;;;;;;;;-1:-1:-1;24377:151:0;;;;;:::i;:::-;;:::i;48516:138::-;;;;;;;;;;-1:-1:-1;48516:138:0;;;;;:::i;:::-;;:::i;47609:52::-;;;;;;;;;;;;;;;;50767:203;;;;;;;;;;-1:-1:-1;50767:203:0;;;;;:::i;:::-;;:::i;35307:233::-;;;;;;;;;;-1:-1:-1;35307:233:0;;;;;:::i;:::-;;:::i;21345:239::-;;;;;;;;;;-1:-1:-1;21345:239:0;;;;;:::i;:::-;;:::i;21075:208::-;;;;;;;;;;-1:-1:-1;21075:208:0;;;;;:::i;:::-;;:::i;43674:148::-;;;;;;;;;;;;;:::i;50148:126::-;;;;;;;;;;-1:-1:-1;50148:126:0;;;;;:::i;:::-;;:::i;47576:26::-;;;;;;;;;;-1:-1:-1;47576:26:0;;;;-1:-1:-1;;;;;47576:26:0;;;48784:540;;;;;;;;;;-1:-1:-1;48784:540:0;;;;;:::i;:::-;;:::i;43023:87::-;;;;;;;;;;-1:-1:-1;43096:6:0;;-1:-1:-1;;;;;43096:6:0;43023:87;;21820:104;;;;;;;;;;;;;:::i;50978:204::-;;;;;;;;;;-1:-1:-1;50978:204:0;;;;;:::i;:::-;;:::i;23404:295::-;;;;;;;;;;-1:-1:-1;23404:295:0;;;;;:::i;:::-;;:::i;48385:119::-;;;;;;;;;;-1:-1:-1;48385:119:0;;;;;:::i;:::-;48452:4;48474:14;;;:5;:14;;;;;:22;;;;48385:119;47718:35;;;;;;;;;;-1:-1:-1;47718:35:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24599:285;;;;;;;;;;-1:-1:-1;24599:285:0;;;;;:::i;:::-;;:::i;21995:360::-;;;;;;;;;;-1:-1:-1;21995:360:0;;;;;:::i;:::-;;:::i;47760:50::-;;;;;;;;;;-1:-1:-1;47760:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;50419:340;;;;;;;;;;;;;:::i;23770:164::-;;;;;;;;;;-1:-1:-1;23770:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23891:25:0;;;23867:4;23891:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23770:164;43977:244;;;;;;;;;;-1:-1:-1;43977:244:0;;;;;:::i;:::-;;:::i;34464:237::-;34566:4;-1:-1:-1;;;;;;34590:50:0;;-1:-1:-1;;;34590:50:0;;:103;;;34657:36;34681:11;34657:23;:36::i;:::-;34583:110;34464:237;-1:-1:-1;;34464:237:0:o;50282:129::-;43096:6;;-1:-1:-1;;;;;43096:6:0;16058:10;43243:23;43235:68;;;;-1:-1:-1;;;43235:68:0;;;;;;;:::i;:::-;;;;;;;;;50370:26:::1;::::0;;;:17:::1;:26;::::0;;;;;:33;50282:129::o;21651:100::-;21705:13;21738:5;21731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:100;:::o;23111:221::-;23187:7;26440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26440:16:0;23207:73;;;;-1:-1:-1;;;23207:73:0;;12893:2:1;23207:73:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:34;12951:18;;;12944:62;-1:-1:-1;;;13022:18:1;;;13015:42;13074:19;;23207:73:0;12865:234:1;23207:73:0;-1:-1:-1;23300:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23300:24:0;;23111:221::o;49332:771::-;49392:23;49444:1;49436:7;:9;:42;;;;-1:-1:-1;49477:1:0;49450:26;;;:17;:26;;;;;;:28;;49436:42;49428:83;;;;-1:-1:-1;;;49428:83:0;;12175:2:1;49428:83:0;;;12157:21:1;12214:2;12194:18;;;12187:30;12253;12233:18;;;12226:58;12301:18;;49428:83:0;12147:178:1;49428:83:0;49540:1;49530:9;:11;:52;;;;-1:-1:-1;49556:26:0;;;;:17;:26;;;;;;49545:9;:37;49530:52;49522:85;;;;-1:-1:-1;;;49522:85:0;;8020:2:1;49522:85:0;;;8002:21:1;8059:2;8039:18;;;8032:30;-1:-1:-1;;;8078:18:1;;;8071:49;8137:18;;49522:85:0;7992:169:1;49522:85:0;49620:29;49667:9;49662:402;49686:7;49682:1;:11;49662:402;;;49715:21;:9;41630:19;;41648:1;41630:19;;;41541:127;49715:21;49751:15;49769:19;:9;41511:14;;41419:114;49769:19;49751:37;;49803:26;49809:10;49821:7;49803:5;:26::i;:::-;49895:20;;49859:12;;:34;;-1:-1:-1;;;49859:34:0;;49882:10;49859:34;;;4749:51:1;49844:12:0;;49895:20;-1:-1:-1;;;;;49859:12:0;;:22;;4722:18:1;;49859:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49948:56;;;;;;;;;49859;;;;;49948;;;-1:-1:-1;49931:14:0;;;:5;:14;;;;;:73;;;;-1:-1:-1;;49931:73:0;;;;;;;;50024:28;16013:25:1;;;49859:56:0;;-1:-1:-1;50041:10:0;;50024:28;;15986:18:1;50024:28:0;;;;;;;49700:364;;49695:3;;;;;:::i;:::-;;;;49662:402;;;-1:-1:-1;50083:12:0;49332:771;-1:-1:-1;;49332:771:0:o;22648:397::-;22729:13;22745:23;22760:7;22745:14;:23::i;:::-;22729:39;;22793:5;-1:-1:-1;;;;;22787:11:0;:2;-1:-1:-1;;;;;22787:11:0;;;22779:57;;;;-1:-1:-1;;;22779:57:0;;14493:2:1;22779:57:0;;;14475:21:1;14532:2;14512:18;;;14505:30;14571:34;14551:18;;;14544:62;-1:-1:-1;;;14622:18:1;;;14615:31;14663:19;;22779:57:0;14465:223:1;22779:57:0;16058:10;-1:-1:-1;;;;;22857:21:0;;;;:62;;-1:-1:-1;22882:37:0;22899:5;16058:10;23770:164;:::i;22882:37::-;22849:154;;;;-1:-1:-1;;;22849:154:0;;10585:2:1;22849:154:0;;;10567:21:1;10624:2;10604:18;;;10597:30;10663:34;10643:18;;;10636:62;10734:26;10714:18;;;10707:54;10778:19;;22849:154:0;10557:246:1;22849:154:0;23016:21;23025:2;23029:7;23016:8;:21::i;:::-;22718:327;22648:397;;:::o;24001:305::-;24162:41;16058:10;24195:7;24162:18;:41::i;:::-;24154:103;;;;-1:-1:-1;;;24154:103:0;;;;;;;:::i;:::-;24270:28;24280:4;24286:2;24290:7;24270:9;:28::i;51190:209::-;43096:6;;-1:-1:-1;;;;;43096:6:0;16058:10;43243:23;43235:68;;;;-1:-1:-1;;;43235:68:0;;;;;;;:::i;:::-;51289:17:::1;;51277:11;:29;:49;;;;;51323:3;51310:11;:16;;51277:49;51268:81;;;::::0;-1:-1:-1;;;51268:81:0;;10238:2:1;51268:81:0::1;::::0;::::1;10220:21:1::0;10277:2;10257:18;;;10250:30;-1:-1:-1;;;10296:18:1;;;10289:48;10354:18;;51268:81:0::1;10210:168:1::0;51268:81:0::1;51360:17;:31:::0;51190:209::o;34785:256::-;34882:7;34918:23;34935:5;34918:16;:23::i;:::-;34910:5;:31;34902:87;;;;-1:-1:-1;;;34902:87:0;;6782:2:1;34902:87:0;;;6764:21:1;6821:2;6801:18;;;6794:30;6860:34;6840:18;;;6833:62;-1:-1:-1;;;6911:18:1;;;6904:41;6962:19;;34902:87:0;6754:233:1;34902:87:0;-1:-1:-1;;;;;;35007:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34785:256::o;24377:151::-;24481:39;24498:4;24504:2;24508:7;24481:39;;;;;;;;;;;;:16;:39::i;48516:138::-;48581:39;48600:10;48612:7;48581:18;:39::i;:::-;48573:48;;;;;;48632:14;48638:7;48632:5;:14::i;:::-;48516:138;:::o;50767:203::-;50846:7;;-1:-1:-1;;;;;50846:7:0;50832:10;:21;50823:47;;;;-1:-1:-1;;;50823:47:0;;8725:2:1;50823:47:0;;;8707:21:1;8764:2;8744:18;;;8737:30;-1:-1:-1;;;8783:18:1;;;8776:42;8835:18;;50823:47:0;8697:162:1;50823:47:0;-1:-1:-1;;;;;50890:24:0;;50881:52;;;;-1:-1:-1;;;50881:52:0;;15726:2:1;50881:52:0;;;15708:21:1;15765:2;15745:18;;;15738:30;-1:-1:-1;;;15784:18:1;;;15777:44;15838:18;;50881:52:0;15698:164:1;50881:52:0;50944:7;:18;;-1:-1:-1;;;;;;50944:18:0;-1:-1:-1;;;;;50944:18:0;;;;;;;;;;50767:203::o;35307:233::-;35382:7;35418:30;35205:10;:17;;35117:113;35418:30;35410:5;:38;35402:95;;;;-1:-1:-1;;;35402:95:0;;15313:2:1;35402:95:0;;;15295:21:1;15352:2;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;-1:-1:-1;;;15442:18:1;;;15435:42;15494:19;;35402:95:0;15285:234:1;35402:95:0;35515:10;35526:5;35515:17;;;;;;;;:::i;:::-;;;;;;;;;35508:24;;35307:233;;;:::o;21345:239::-;21417:7;21453:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21453:16:0;21488:19;21480:73;;;;-1:-1:-1;;;21480:73:0;;11421:2:1;21480:73:0;;;11403:21:1;11460:2;11440:18;;;11433:30;11499:34;11479:18;;;11472:62;-1:-1:-1;;;11550:18:1;;;11543:39;11599:19;;21480:73:0;11393:231:1;21075:208:0;21147:7;-1:-1:-1;;;;;21175:19:0;;21167:74;;;;-1:-1:-1;;;21167:74:0;;11010:2:1;21167:74:0;;;10992:21:1;11049:2;11029:18;;;11022:30;11088:34;11068:18;;;11061:62;-1:-1:-1;;;11139:18:1;;;11132:40;11189:19;;21167:74:0;10982:232:1;21167:74:0;-1:-1:-1;;;;;;21259:16:0;;;;;:9;:16;;;;;;;21075:208::o;43674:148::-;43096:6;;-1:-1:-1;;;;;43096:6:0;16058:10;43243:23;43235:68;;;;-1:-1:-1;;;43235:68:0;;;;;;;:::i;:::-;43765:6:::1;::::0;43744:40:::1;::::0;43781:1:::1;::::0;-1:-1:-1;;;;;43765:6:0::1;::::0;43744:40:::1;::::0;43781:1;;43744:40:::1;43795:6;:19:::0;;-1:-1:-1;;;;;;43795:19:0::1;::::0;;43674:148::o;50148:126::-;43096:6;;-1:-1:-1;;;;;43096:6:0;16058:10;43243:23;43235:68;;;;-1:-1:-1;;;43235:68:0;;;;;;;:::i;:::-;50236:20:::1;:30:::0;50148:126::o;48784:540::-;48845:16;48875:18;48896:17;48906:6;48896:9;:17::i;:::-;48875:38;-1:-1:-1;48928:15:0;48924:393;;49005:16;;;49019:1;49005:16;;;;;;;;;;;-1:-1:-1;48998:23:0;48784:540;-1:-1:-1;;;48784:540:0:o;48924:393::-;49054:23;49094:10;49080:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49080:25:0;;49054:51;;49120:13;49148:130;49172:10;49164:5;:18;49148:130;;;49228:34;49248:6;49256:5;49228:19;:34::i;:::-;49212:6;49219:5;49212:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;49184:7;;;;:::i;:::-;;;;49148:130;;48924:393;48864:460;48784:540;;;:::o;21820:104::-;21876:13;21909:7;21902:14;;;;;:::i;50978:204::-;51057:7;;-1:-1:-1;;;;;51057:7:0;51043:10;:21;51034:47;;;;-1:-1:-1;;;51034:47:0;;8725:2:1;51034:47:0;;;8707:21:1;8764:2;8744:18;;;8737:30;-1:-1:-1;;;8783:18:1;;;8776:42;8835:18;;51034:47:0;8697:162:1;51034:47:0;-1:-1:-1;;;;;51101:24:0;;51092:53;;;;-1:-1:-1;;;51092:53:0;;11831:2:1;51092:53:0;;;11813:21:1;11870:2;11850:18;;;11843:30;-1:-1:-1;;;11889:18:1;;;11882:45;11944:18;;51092:53:0;11803:165:1;51092:53:0;51156:7;:18;;-1:-1:-1;;;;;;51156:18:0;-1:-1:-1;;;;;51156:18:0;;;;;;;;;;50978:204::o;23404:295::-;-1:-1:-1;;;;;23507:24:0;;16058:10;23507:24;;23499:62;;;;-1:-1:-1;;;23499:62:0;;9471:2:1;23499:62:0;;;9453:21:1;9510:2;9490:18;;;9483:30;9549:27;9529:18;;;9522:55;9594:18;;23499:62:0;9443:175:1;23499:62:0;16058:10;23574:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23574:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23574:53:0;;;;;;;;;;23643:48;;6081:41:1;;;23574:42:0;;16058:10;23643:48;;6054:18:1;23643:48:0;;;;;;;23404:295;;:::o;24599:285::-;24731:41;16058:10;24764:7;24731:18;:41::i;:::-;24723:103;;;;-1:-1:-1;;;24723:103:0;;;;;;;:::i;:::-;24837:39;24851:4;24857:2;24861:7;24870:5;24837:13;:39::i;:::-;24599:285;;;;:::o;21995:360::-;26416:4;26440:16;;;:7;:16;;;;;;22068:13;;-1:-1:-1;;;;;26440:16:0;22094:76;;;;-1:-1:-1;;;22094:76:0;;14077:2:1;22094:76:0;;;14059:21:1;14116:2;14096:18;;;14089:30;14155:34;14135:18;;;14128:62;-1:-1:-1;;;14206:18:1;;;14199:45;14261:19;;22094:76:0;14049:237:1;22094:76:0;22183:21;22207:10;:8;:10::i;:::-;22183:34;;22259:1;22241:7;22235:21;:25;:112;;;;;;;;;;;;;;;;;22300:7;22309:18;:7;:16;:18::i;:::-;22283:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22235:112;22228:119;21995:360;-1:-1:-1;;;21995:360:0:o;50419:340::-;47368:7;;-1:-1:-1;;;;;47368:7:0;47354:10;:21;;:46;;-1:-1:-1;47393:7:0;;-1:-1:-1;;;;;47393:7:0;47379:10;:21;47354:46;:71;;;-1:-1:-1;43096:6:0;;-1:-1:-1;;;;;43096:6:0;47404:10;:21;47354:71;47346:80;;;;;;50505:1:::1;50481:21;:25;50472:35;;;::::0;::::1;;50518:15;50536:62;50580:17;;50536:39;50549:21;50571:3;50536:12;:39::i;:::-;:43:::0;::::1;:62::i;:::-;50518:80:::0;-1:-1:-1;50609:15:0::1;50627:34;:21;50518:80:::0;50627:25:::1;:34::i;:::-;50680:7;::::0;50672:34:::1;::::0;50609:52;;-1:-1:-1;;;;;;50680:7:0::1;::::0;50672:34;::::1;;;::::0;50609:52;;50680:7:::1;50672:34:::0;50680:7;50672:34;50609:52;50680:7;50672:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50725:7:0::1;::::0;50717:34:::1;::::0;-1:-1:-1;;;;;50725:7:0;;::::1;::::0;50717:34;::::1;;;::::0;50743:7;;50725::::1;50717:34:::0;50725:7;50717:34;50743:7;50725;50717:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;43977:244:::0;43096:6;;-1:-1:-1;;;;;43096:6:0;16058:10;43243:23;43235:68;;;;-1:-1:-1;;;43235:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44066:22:0;::::1;44058:73;;;::::0;-1:-1:-1;;;44058:73:0;;7613:2:1;44058:73:0::1;::::0;::::1;7595:21:1::0;7652:2;7632:18;;;7625:30;7691:34;7671:18;;;7664:62;-1:-1:-1;;;7742:18:1;;;7735:36;7788:19;;44058:73:0::1;7585:228:1::0;44058:73:0::1;44168:6;::::0;44147:38:::1;::::0;-1:-1:-1;;;;;44147:38:0;;::::1;::::0;44168:6:::1;::::0;44147:38:::1;::::0;44168:6:::1;::::0;44147:38:::1;44196:6;:17:::0;;-1:-1:-1;;;;;;44196:17:0::1;-1:-1:-1::0;;;;;44196:17:0;;;::::1;::::0;;;::::1;::::0;;43977:244::o;20719:292::-;20821:4;-1:-1:-1;;;;;;20845:40:0;;-1:-1:-1;;;20845:40:0;;:105;;-1:-1:-1;;;;;;;20902:48:0;;-1:-1:-1;;;20902:48:0;20845:105;:158;;;-1:-1:-1;;;;;;;;;;19317:40:0;;;20967:36;19208:157;28258:382;-1:-1:-1;;;;;28338:16:0;;28330:61;;;;-1:-1:-1;;;28330:61:0;;12532:2:1;28330:61:0;;;12514:21:1;;;12551:18;;;12544:30;12610:34;12590:18;;;12583:62;12662:18;;28330:61:0;12504:182:1;28330:61:0;26416:4;26440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26440:16:0;:30;28402:58;;;;-1:-1:-1;;;28402:58:0;;8368:2:1;28402:58:0;;;8350:21:1;8407:2;8387:18;;;8380:30;8446;8426:18;;;8419:58;8494:18;;28402:58:0;8340:178:1;28402:58:0;28473:45;28502:1;28506:2;28510:7;28473:20;:45::i;:::-;-1:-1:-1;;;;;28531:13:0;;;;;;:9;:13;;;;;:18;;28548:1;;28531:13;:18;;28548:1;;28531:18;:::i;:::-;;;;-1:-1:-1;;28560:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28560:21:0;-1:-1:-1;;;;;28560:21:0;;;;;;;;28599:33;;28560:16;;;28599:33;;28560:16;;28599:33;28258:382;;:::o;30228:174::-;30303:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30303:29:0;-1:-1:-1;;;;;30303:29:0;;;;;;;;:24;;30357:23;30303:24;30357:14;:23::i;:::-;-1:-1:-1;;;;;30348:46:0;;;;;;;;;;;30228:174;;:::o;26645:348::-;26738:4;26440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26440:16:0;26755:73;;;;-1:-1:-1;;;26755:73:0;;9825:2:1;26755:73:0;;;9807:21:1;9864:2;9844:18;;;9837:30;9903:34;9883:18;;;9876:62;-1:-1:-1;;;9954:18:1;;;9947:42;10006:19;;26755:73:0;9797:234:1;26755:73:0;26839:13;26855:23;26870:7;26855:14;:23::i;:::-;26839:39;;26908:5;-1:-1:-1;;;;;26897:16:0;:7;-1:-1:-1;;;;;26897:16:0;;:51;;;;26941:7;-1:-1:-1;;;;;26917:31:0;:20;26929:7;26917:11;:20::i;:::-;-1:-1:-1;;;;;26917:31:0;;26897:51;:87;;;-1:-1:-1;;;;;;23891:25:0;;;23867:4;23891:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26952:32;26889:96;26645:348;-1:-1:-1;;;;26645:348:0:o;29566:544::-;29691:4;-1:-1:-1;;;;;29664:31:0;:23;29679:7;29664:14;:23::i;:::-;-1:-1:-1;;;;;29664:31:0;;29656:85;;;;-1:-1:-1;;;29656:85:0;;13667:2:1;29656:85:0;;;13649:21:1;13706:2;13686:18;;;13679:30;13745:34;13725:18;;;13718:62;-1:-1:-1;;;13796:18:1;;;13789:39;13845:19;;29656:85:0;13639:231:1;29656:85:0;-1:-1:-1;;;;;29760:16:0;;29752:65;;;;-1:-1:-1;;;29752:65:0;;9066:2:1;29752:65:0;;;9048:21:1;9105:2;9085:18;;;9078:30;9144:34;9124:18;;;9117:62;-1:-1:-1;;;9195:18:1;;;9188:34;9239:19;;29752:65:0;9038:226:1;29752:65:0;29830:39;29851:4;29857:2;29861:7;29830:20;:39::i;:::-;29934:29;29951:1;29955:7;29934:8;:29::i;:::-;-1:-1:-1;;;;;29976:15:0;;;;;;:9;:15;;;;;:20;;29995:1;;29976:15;:20;;29995:1;;29976:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30007:13:0;;;;;;:9;:13;;;;;:18;;30024:1;;30007:13;:18;;30024:1;;30007:18;:::i;:::-;;;;-1:-1:-1;;30036:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30036:21:0;-1:-1:-1;;;;;30036:21:0;;;;;;;;;30075:27;;30036:16;;30075:27;;;;;;;29566:544;;;:::o;28869:360::-;28929:13;28945:23;28960:7;28945:14;:23::i;:::-;28929:39;;28981:48;29002:5;29017:1;29021:7;28981:20;:48::i;:::-;29070:29;29087:1;29091:7;29070:8;:29::i;:::-;-1:-1:-1;;;;;29112:16:0;;;;;;:9;:16;;;;;:21;;29132:1;;29112:16;:21;;29132:1;;29112:21;:::i;:::-;;;;-1:-1:-1;;29151:16:0;;;;:7;:16;;;;;;29144:23;;-1:-1:-1;;;;;;29144:23:0;;;29185:36;29159:7;;29151:16;-1:-1:-1;;;;;29185:36:0;;;;;29151:16;;29185:36;28918:311;28869:360;:::o;25766:272::-;25880:28;25890:4;25896:2;25900:7;25880:9;:28::i;:::-;25927:48;25950:4;25956:2;25960:7;25969:5;25927:22;:48::i;:::-;25919:111;;;;-1:-1:-1;;;25919:111:0;;;;;;;:::i;48662:114::-;48722:13;48755;48748:20;;;;;:::i;16644:723::-;16700:13;16921:10;16917:53;;-1:-1:-1;;16948:10:0;;;;;;;;;;;;-1:-1:-1;;;16948:10:0;;;;;16644:723::o;16917:53::-;16995:5;16980:12;17036:78;17043:9;;17036:78;;17069:8;;;;:::i;:::-;;-1:-1:-1;17092:10:0;;-1:-1:-1;17100:2:0;17092:10;;:::i;:::-;;;17036:78;;;17124:19;17156:6;17146:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17146:17:0;;17124:39;;17174:154;17181:10;;17174:154;;17208:11;17218:1;17208:11;;:::i;:::-;;-1:-1:-1;17277:10:0;17285:2;17277:5;:10;:::i;:::-;17264:24;;:2;:24;:::i;:::-;17251:39;;17234:6;17241;17234:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17234:56:0;;;;;;;;-1:-1:-1;17305:11:0;17314:2;17305:11;;:::i;:::-;;;17174:154;;51812:288;51870:7;;51981:5;51985:1;51981;:5;:::i;51509:208::-;51567:7;51591:6;51587:47;;-1:-1:-1;51621:1:0;51614:8;;51587:47;51644:9;51656:5;51660:1;51656;:5;:::i;:::-;51644:17;-1:-1:-1;51688:1:0;51679:5;51683:1;51644:17;51679:5;:::i;:::-;:10;51672:18;;;;:::i;52226:123::-;52284:7;52316:1;52311;:6;;52304:14;;;;:::i;:::-;52336:5;52340:1;52336;:5;:::i;36153:555::-;-1:-1:-1;;;;;36325:18:0;;36321:187;;36360:40;36392:7;37535:10;:17;;37508:24;;;;:15;:24;;;;;:44;;;37563:24;;;;;;;;;;;;37431:164;36360:40;36321:187;;;36430:2;-1:-1:-1;;;;;36422:10:0;:4;-1:-1:-1;;;;;36422:10:0;;36418:90;;36449:47;36482:4;36488:7;36449:32;:47::i;:::-;-1:-1:-1;;;;;36522:16:0;;36518:183;;36555:45;36592:7;36555:36;:45::i;36518:183::-;36628:4;-1:-1:-1;;;;;36622:10:0;:2;-1:-1:-1;;;;;36622:10:0;;36618:83;;36649:40;36677:2;36681:7;36649:27;:40::i;30967:843::-;31088:4;-1:-1:-1;;;;;31114:13:0;;8451:20;8490:8;31110:693;;31150:72;;-1:-1:-1;;;31150:72:0;;-1:-1:-1;;;;;31150:36:0;;;;;:72;;16058:10;;31201:4;;31207:7;;31216:5;;31150:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31150:72:0;;;;;;;;-1:-1:-1;;31150:72:0;;;;;;;;;;;;:::i;:::-;;;31146:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31396:13:0;;31392:341;;31439:60;;-1:-1:-1;;;31439:60:0;;;;;;;:::i;31392:341::-;31683:6;31677:13;31668:6;31664:2;31660:15;31653:38;31146:602;-1:-1:-1;;;;;;31273:55:0;-1:-1:-1;;;31273:55:0;;-1:-1:-1;31266:62:0;;31110:693;-1:-1:-1;31787:4:0;30967:843;;;;;;:::o;38222:988::-;38488:22;38538:1;38513:22;38530:4;38513:16;:22::i;:::-;:26;;;;:::i;:::-;38550:18;38571:26;;;:17;:26;;;;;;38488:51;;-1:-1:-1;38704:28:0;;;38700:328;;-1:-1:-1;;;;;38771:18:0;;38749:19;38771:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38822:30;;;;;;:44;;;38939:30;;:17;:30;;;;;:43;;;38700:328;-1:-1:-1;39124:26:0;;;;:17;:26;;;;;;;;39117:33;;;-1:-1:-1;;;;;39168:18:0;;;;;:12;:18;;;;;:34;;;;;;;39161:41;38222:988::o;39505:1079::-;39783:10;:17;39758:22;;39783:21;;39803:1;;39783:21;:::i;:::-;39815:18;39836:24;;;:15;:24;;;;;;40209:10;:26;;39758:46;;-1:-1:-1;39836:24:0;;39758:46;;40209:26;;;;;;:::i;:::-;;;;;;;;;40187:48;;40273:11;40248:10;40259;40248:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40353:28;;;:15;:28;;;;;;;:41;;;40525:24;;;;;40518:31;40560:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39576:1008;;;39505:1079;:::o;37009:221::-;37094:14;37111:20;37128:2;37111:16;:20::i;:::-;-1:-1:-1;;;;;37142:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37187:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37009:221:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:2;;;1170:1;1167;1160:12;1121:2;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:2;;;1461:1;1458;1451:12;1431:2;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:2;;1566:1;1563;1556:12;1515:2;1602;1589:16;1624:2;1620;1617:10;1614:2;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:2;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:2;;;1985:1;1982;1975:12;1936:2;2041;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;1111:1008;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:2;;;2266:1;2263;2256:12;2218:2;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:2;;2437:1;2434;2427:12;2381:2;2460:5;2450:15;;;2208:263;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:2;;;2621:1;2618;2611:12;2573:2;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2563:167:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:2;;;2862:1;2859;2852:12;2814:2;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:2;;;3123:1;3120;3113:12;3075:2;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:2;;;3367:1;3364;3357:12;3319:2;-1:-1:-1;3390:23:1;;3309:110;-1:-1:-1;3309:110:1:o;3424:184::-;3494:6;3547:2;3535:9;3526:7;3522:23;3518:32;3515:2;;;3563:1;3560;3553:12;3515:2;-1:-1:-1;3586:16:1;;3505:103;-1:-1:-1;3505:103:1:o;3613:248::-;3681:6;3689;3742:2;3730:9;3721:7;3717:23;3713:32;3710:2;;;3758:1;3755;3748:12;3710:2;-1:-1:-1;;3781:23:1;;;3851:2;3836:18;;;3823:32;;-1:-1:-1;3700:161:1:o;3866:257::-;3907:3;3945:5;3939:12;3972:6;3967:3;3960:19;3988:63;4044:6;4037:4;4032:3;4028:14;4021:4;4014:5;4010:16;3988:63;:::i;:::-;4105:2;4084:15;-1:-1:-1;;4080:29:1;4071:39;;;;4112:4;4067:50;;3915:208;-1:-1:-1;;3915:208:1:o;4128:470::-;4307:3;4345:6;4339:13;4361:53;4407:6;4402:3;4395:4;4387:6;4383:17;4361:53;:::i;:::-;4477:13;;4436:16;;;;4499:57;4477:13;4436:16;4533:4;4521:17;;4499:57;:::i;:::-;4572:20;;4315:283;-1:-1:-1;;;;4315:283:1:o;4811:488::-;-1:-1:-1;;;;;5080:15:1;;;5062:34;;5132:15;;5127:2;5112:18;;5105:43;5179:2;5164:18;;5157:34;;;5227:3;5222:2;5207:18;;5200:31;;;5005:4;;5248:45;;5273:19;;5265:6;5248:45;:::i;:::-;5240:53;5014:285;-1:-1:-1;;;;;;5014:285:1:o;5304:632::-;5475:2;5527:21;;;5597:13;;5500:18;;;5619:22;;;5446:4;;5475:2;5698:15;;;;5672:2;5657:18;;;5446:4;5741:169;5755:6;5752:1;5749:13;5741:169;;;5816:13;;5804:26;;5885:15;;;;5850:12;;;;5777:1;5770:9;5741:169;;;-1:-1:-1;5927:3:1;;5455:481;-1:-1:-1;;;;;;5455:481:1:o;6356:219::-;6505:2;6494:9;6487:21;6468:4;6525:44;6565:2;6554:9;6550:18;6542:6;6525:44;:::i;6992:414::-;7194:2;7176:21;;;7233:2;7213:18;;;7206:30;7272:34;7267:2;7252:18;;7245:62;-1:-1:-1;;;7338:2:1;7323:18;;7316:48;7396:3;7381:19;;7166:240::o;13104:356::-;13306:2;13288:21;;;13325:18;;;13318:30;13384:34;13379:2;13364:18;;13357:62;13451:2;13436:18;;13278:182::o;14693:413::-;14895:2;14877:21;;;14934:2;14914:18;;;14907:30;14973:34;14968:2;14953:18;;14946:62;-1:-1:-1;;;15039:2:1;15024:18;;15017:47;15096:3;15081:19;;14867:239::o;16049:128::-;16089:3;16120:1;16116:6;16113:1;16110:13;16107:2;;;16126:18;;:::i;:::-;-1:-1:-1;16162:9:1;;16097:80::o;16182:120::-;16222:1;16248;16238:2;;16253:18;;:::i;:::-;-1:-1:-1;16287:9:1;;16228:74::o;16307:168::-;16347:7;16413:1;16409;16405:6;16401:14;16398:1;16395:21;16390:1;16383:9;16376:17;16372:45;16369:2;;;16420:18;;:::i;:::-;-1:-1:-1;16460:9:1;;16359:116::o;16480:125::-;16520:4;16548:1;16545;16542:8;16539:2;;;16553:18;;:::i;:::-;-1:-1:-1;16590:9:1;;16529:76::o;16610:258::-;16682:1;16692:113;16706:6;16703:1;16700:13;16692:113;;;16782:11;;;16776:18;16763:11;;;16756:39;16728:2;16721:10;16692:113;;;16823:6;16820:1;16817:13;16814:2;;;-1:-1:-1;;16858:1:1;16840:16;;16833:27;16663:205::o;16873:380::-;16952:1;16948:12;;;;16995;;;17016:2;;17070:4;17062:6;17058:17;17048:27;;17016:2;17123;17115:6;17112:14;17092:18;17089:38;17086:2;;;17169:10;17164:3;17160:20;17157:1;17150:31;17204:4;17201:1;17194:15;17232:4;17229:1;17222:15;17258:135;17297:3;-1:-1:-1;;17318:17:1;;17315:2;;;17338:18;;:::i;:::-;-1:-1:-1;17385:1:1;17374:13;;17305:88::o;17398:112::-;17430:1;17456;17446:2;;17461:18;;:::i;:::-;-1:-1:-1;17495:9:1;;17436:74::o;17515:127::-;17576:10;17571:3;17567:20;17564:1;17557:31;17607:4;17604:1;17597:15;17631:4;17628:1;17621:15;17647:127;17708:10;17703:3;17699:20;17696:1;17689:31;17739:4;17736:1;17729:15;17763:4;17760:1;17753:15;17779:127;17840:10;17835:3;17831:20;17828:1;17821:31;17871:4;17868:1;17861:15;17895:4;17892:1;17885:15;17911:127;17972:10;17967:3;17963:20;17960:1;17953:31;18003:4;18000:1;17993:15;18027:4;18024:1;18017:15;18043:127;18104:10;18099:3;18095:20;18092:1;18085:31;18135:4;18132:1;18125:15;18159:4;18156:1;18149:15;18175:127;18236:10;18231:3;18227:20;18224:1;18217:31;18267:4;18264:1;18257:15;18291:4;18288:1;18281:15;18307:131;-1:-1:-1;;;;;;18381:32:1;;18371:43;;18361:2;;18428:1;18425;18418:12
Swarm Source
ipfs://0309feb42887b3a3233505810fa73fab30049a7e468e6b842da8e22f2247ab2d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.