Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 22 from a total of 22 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 14300588 | 997 days ago | IN | 0 ETH | 0.00276084 | ||||
Set Approval For... | 14078344 | 1032 days ago | IN | 0 ETH | 0.00458005 | ||||
Set Approval For... | 13996737 | 1044 days ago | IN | 0 ETH | 0.00574672 | ||||
Set Approval For... | 13978349 | 1047 days ago | IN | 0 ETH | 0.01357009 | ||||
Set Approval For... | 13803525 | 1074 days ago | IN | 0 ETH | 0.0030249 | ||||
Set Approval For... | 13763357 | 1081 days ago | IN | 0 ETH | 0.00357476 | ||||
Set Approval For... | 13713153 | 1089 days ago | IN | 0 ETH | 0.00404076 | ||||
Set Base URI | 13703605 | 1090 days ago | IN | 0 ETH | 0.00525081 | ||||
Mint Tokens | 13703458 | 1090 days ago | IN | 0 ETH | 0.0183906 | ||||
Mint Tokens | 13703458 | 1090 days ago | IN | 0 ETH | 0.0183906 | ||||
Mint Tokens | 13703451 | 1090 days ago | IN | 0 ETH | 0.01822896 | ||||
Mint Tokens | 13703444 | 1090 days ago | IN | 0 ETH | 0.01992315 | ||||
Mint Tokens | 13703437 | 1090 days ago | IN | 0 ETH | 0.02153162 | ||||
Mint Tokens | 13703432 | 1090 days ago | IN | 0 ETH | 0.0214557 | ||||
Mint Tokens | 13703417 | 1090 days ago | IN | 0 ETH | 0.02365323 | ||||
Set Base URI | 13703377 | 1090 days ago | IN | 0 ETH | 0.00724353 | ||||
Transfer Ownersh... | 13664885 | 1096 days ago | IN | 0 ETH | 0.00428865 | ||||
Set Approval For... | 13454841 | 1129 days ago | IN | 0 ETH | 0.00284233 | ||||
Transfer From | 13454475 | 1129 days ago | IN | 0 ETH | 0.00367505 | ||||
Set Base URI | 13416023 | 1135 days ago | IN | 0 ETH | 0.00843372 | ||||
Mint Tokens | 13408799 | 1136 days ago | IN | 0 ETH | 0.0102204 | ||||
0x60806040 | 13408743 | 1137 days ago | IN | 0 ETH | 0.21534359 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TheSevensCollabs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-13 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File contracts/TheSevensCollabs.sol pragma solidity =0.8.7; contract TheSevensCollabs is ERC721Enumerable, Ownable { event IsBurnEnabledChanged(bool newIsBurnEnabled); event BaseURIChanged(string newBaseURI); uint256 public nextTokenId; bool public isBurnEnabled; string public baseURI; constructor() ERC721("Sevens Collabs", "SEVENS-COL") {} function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner { isBurnEnabled = _isBurnEnabled; emit IsBurnEnabledChanged(_isBurnEnabled); } function setBaseURI(string calldata newbaseURI) external onlyOwner { baseURI = newbaseURI; emit BaseURIChanged(newbaseURI); } function mintTokens(address recipient, uint256 count) external onlyOwner { require(recipient != address(0), "TheSevensCollabs: zero address"); // Gas optimization uint256 _nextTokenId = nextTokenId; require(count > 0, "TheSevensCollabs: invalid count"); for (uint256 ind = 0; ind < count; ind++) { _safeMint(recipient, _nextTokenId + ind); } nextTokenId += count; } function burn(uint256 tokenId) external { require(isBurnEnabled, "TheSevensCollabs: burning disabled"); require(_isApprovedOrOwner(msg.sender, tokenId), "TheSevensCollabs: burn caller is not owner nor approved"); _burn(tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"newIsBurnEnabled","type":"bool"}],"name":"IsBurnEnabledChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600e81526d536576656e7320436f6c6c61627360901b60208083019182528351808501909452600a84526914d155915394cb50d3d360b21b9084015281519192916200006a91600091620000f9565b50805162000080906001906020840190620000f9565b5050506200009d62000097620000a360201b60201c565b620000a7565b620001dc565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000107906200019f565b90600052602060002090601f0160209004810192826200012b576000855562000176565b82601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b5b8082111562000184576000815560010162000189565b600181811c90821680620001b457607f821691505b60208210811415620001d657634e487b7160e01b600052602260045260246000fd5b50919050565b612bde80620001ec6000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636c0360eb116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461036c578063e985e9c51461037f578063f0dda65c146103c8578063f2fde38b146103db57600080fd5b806395d89b411461033e578063a22cb46514610346578063b88d4fde1461035957600080fd5b8063715018a6116100c8578063715018a61461030f57806375794a3c146103175780638da5cb5b1461032057600080fd5b80636c0360eb146102e15780636e0e5b19146102e957806370a08231146102fc57600080fd5b806323b872dd1161015b57806342966c681161013557806342966c68146102955780634f6ccce7146102a857806355f804b3146102bb5780636352211e146102ce57600080fd5b806323b872dd1461025c5780632f745c591461026f57806342842e0e1461028257600080fd5b8063081812fc1161018c578063081812fc146101fd578063095ea7b31461023557806318160ddd1461024a57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307ebec27146101f0575b600080fd5b6101c66101c1366004612798565b6103ee565b60405190151581526020015b60405180910390f35b6101e361044a565b6040516101d2919061296c565b600c546101c69060ff1681565b61021061020b366004612844565b6104dc565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b610248610243366004612753565b6105bb565b005b6008545b6040519081526020016101d2565b61024861026a3660046125f3565b610748565b61024e61027d366004612753565b6107e9565b6102486102903660046125f3565b6108b8565b6102486102a3366004612844565b6108d3565b61024e6102b6366004612844565b610a07565b6102486102c93660046127d2565b610ac5565b6102106102dc366004612844565b610b90565b6101e3610c42565b6102486102f736600461277d565b610cd0565b61024e61030a3660046125a5565b610db6565b610248610e84565b61024e600b5481565b600a5473ffffffffffffffffffffffffffffffffffffffff16610210565b6101e3610f11565b610248610354366004612729565b610f20565b61024861036736600461262f565b611037565b6101e361037a366004612844565b6110df565b6101c661038d3660046125c0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102486103d6366004612753565b6111ef565b6102486103e93660046125a5565b6113a4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104445750610444826114d1565b92915050565b606060008054610459906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906129ee565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105c682610b90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610589565b3373ffffffffffffffffffffffffffffffffffffffff821614806106ad57506106ad813361038d565b610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610589565b61074383836115b4565b505050565b6107523382611654565b6107de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6107438383836117c4565b60006107f483610db6565b8210610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b61074383838360405180602001604052806000815250611037565b600c5460ff16610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f546865536576656e73436f6c6c6162733a206275726e696e672064697361626c60448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610589565b61096f3382611654565b6109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f546865536576656e73436f6c6c6162733a206275726e2063616c6c657220697360448201527f206e6f74206f776e6572206e6f7220617070726f7665640000000000000000006064820152608401610589565b610a0481611a36565b50565b6000610a1260085490565b8210610aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610589565b60088281548110610ab357610ab3612b1c565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610b52600d83836124b5565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610b8492919061291f565b60405180910390a15050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610589565b600d8054610c4f906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7b906129ee565b8015610cc85780601f10610c9d57610100808354040283529160200191610cc8565b820191906000526020600020905b815481529060010190602001808311610cab57829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff39060200160405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff8216610e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610f0f6000611b0f565b565b606060018054610459906129ee565b73ffffffffffffffffffffffffffffffffffffffff8216331415610fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610589565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110413383611654565b6110cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6110d984848484611b86565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610589565b600061119d611c29565b905060008151116111bd57604051806020016040528060008152506111e8565b806111c784611c38565b6040516020016111d89291906128a7565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff82166112ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546865536576656e73436f6c6c6162733a207a65726f206164647265737300006044820152606401610589565b600b5481611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f546865536576656e73436f6c6c6162733a20696e76616c696420636f756e74006044820152606401610589565b60005b828110156113875761137584611370838561297f565b611d6a565b8061137f81612a42565b91505061135a565b5081600b600082825461139a919061297f565b9091555050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff81166114c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610589565b610a0481611b0f565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061156457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610444565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061160e82610b90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610589565b600061171083610b90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177f57508373ffffffffffffffffffffffffffffffffffffffff16611767846104dc565b73ffffffffffffffffffffffffffffffffffffffff16145b806117bc575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166117e482610b90565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610589565b73ffffffffffffffffffffffffffffffffffffffff8216611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610589565b611934838383611d88565b61193f6000826115b4565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906119759084906129ab565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906119b090849061297f565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a4182610b90565b9050611a4f81600084611d88565b611a5a6000836115b4565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290611a909084906129ab565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b918484846117c4565b611b9d84848484611e8e565b6110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6060600d8054610459906129ee565b606081611c7857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ca25780611c8c81612a42565b9150611c9b9050600a83612997565b9150611c7c565b60008167ffffffffffffffff811115611cbd57611cbd612b4b565b6040519080825280601f01601f191660200182016040528015611ce7576020820181803683370190505b5090505b84156117bc57611cfc6001836129ab565b9150611d09600a86612a7b565b611d1490603061297f565b60f81b818381518110611d2957611d29612b1c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d63600a86612997565b9450611ceb565b611d8482826040518060200160405280600081525061208d565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611df057611deb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e2d57611e2d8382612130565b73ffffffffffffffffffffffffffffffffffffffff8216611e5157610743816121e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610743576107438282612296565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612082576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611f059033908990889088906004016128d6565b602060405180830381600087803b158015611f1f57600080fd5b505af1925050508015611f6d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f6a918101906127b5565b60015b612037573d808015611f9b576040519150601f19603f3d011682016040523d82523d6000602084013e611fa0565b606091505b50805161202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506117bc565b506001949350505050565b61209783836122e7565b6120a46000848484611e8e565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6000600161213d84610db6565b61214791906129ab565b6000838152600760205260409020549091508082146121a75773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906121f9906001906129ab565b6000838152600960205260408120546008805493945090928490811061222157612221612b1c565b90600052602060002001549050806008838154811061224257612242612b1c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061227a5761227a612aed565b6001900381819060005260206000200160009055905550505050565b60006122a183610db6565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610589565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156123f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610589565b6123fc60008383611d88565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061243290849061297f565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124c1906129ee565b90600052602060002090601f0160209004810192826124e35760008555612547565b82601f1061251a578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612547565b82800160010185558215612547579182015b8281111561254757823582559160200191906001019061252c565b50612553929150612557565b5090565b5b808211156125535760008155600101612558565b803573ffffffffffffffffffffffffffffffffffffffff8116811461259057600080fd5b919050565b8035801515811461259057600080fd5b6000602082840312156125b757600080fd5b6111e88261256c565b600080604083850312156125d357600080fd5b6125dc8361256c565b91506125ea6020840161256c565b90509250929050565b60008060006060848603121561260857600080fd5b6126118461256c565b925061261f6020850161256c565b9150604084013590509250925092565b6000806000806080858703121561264557600080fd5b61264e8561256c565b935061265c6020860161256c565b925060408501359150606085013567ffffffffffffffff8082111561268057600080fd5b818701915087601f83011261269457600080fd5b8135818111156126a6576126a6612b4b565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126ec576126ec612b4b565b816040528281528a602084870101111561270557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561273c57600080fd5b6127458361256c565b91506125ea60208401612595565b6000806040838503121561276657600080fd5b61276f8361256c565b946020939093013593505050565b60006020828403121561278f57600080fd5b6111e882612595565b6000602082840312156127aa57600080fd5b81356111e881612b7a565b6000602082840312156127c757600080fd5b81516111e881612b7a565b600080602083850312156127e557600080fd5b823567ffffffffffffffff808211156127fd57600080fd5b818501915085601f83011261281157600080fd5b81358181111561282057600080fd5b86602082850101111561283257600080fd5b60209290920196919550909350505050565b60006020828403121561285657600080fd5b5035919050565b600081518084526128758160208601602086016129c2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516128b98184602088016129c2565b8351908301906128cd8183602088016129c2565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612915608083018461285d565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6020815260006111e8602083018461285d565b6000821982111561299257612992612a8f565b500190565b6000826129a6576129a6612abe565b500490565b6000828210156129bd576129bd612a8f565b500390565b60005b838110156129dd5781810151838201526020016129c5565b838111156110d95750506000910152565b600181811c90821680612a0257607f821691505b60208210811415612a3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7457612a74612a8f565b5060010190565b600082612a8a57612a8a612abe565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a0457600080fdfea26469706673582212203b9e2106dcc8ea1f6034c77155821113752f44c978e0eb0d5ab0b23be808496a64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c80636c0360eb116100ee57806395d89b4111610097578063c87b56dd11610071578063c87b56dd1461036c578063e985e9c51461037f578063f0dda65c146103c8578063f2fde38b146103db57600080fd5b806395d89b411461033e578063a22cb46514610346578063b88d4fde1461035957600080fd5b8063715018a6116100c8578063715018a61461030f57806375794a3c146103175780638da5cb5b1461032057600080fd5b80636c0360eb146102e15780636e0e5b19146102e957806370a08231146102fc57600080fd5b806323b872dd1161015b57806342966c681161013557806342966c68146102955780634f6ccce7146102a857806355f804b3146102bb5780636352211e146102ce57600080fd5b806323b872dd1461025c5780632f745c591461026f57806342842e0e1461028257600080fd5b8063081812fc1161018c578063081812fc146101fd578063095ea7b31461023557806318160ddd1461024a57600080fd5b806301ffc9a7146101b357806306fdde03146101db57806307ebec27146101f0575b600080fd5b6101c66101c1366004612798565b6103ee565b60405190151581526020015b60405180910390f35b6101e361044a565b6040516101d2919061296c565b600c546101c69060ff1681565b61021061020b366004612844565b6104dc565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b610248610243366004612753565b6105bb565b005b6008545b6040519081526020016101d2565b61024861026a3660046125f3565b610748565b61024e61027d366004612753565b6107e9565b6102486102903660046125f3565b6108b8565b6102486102a3366004612844565b6108d3565b61024e6102b6366004612844565b610a07565b6102486102c93660046127d2565b610ac5565b6102106102dc366004612844565b610b90565b6101e3610c42565b6102486102f736600461277d565b610cd0565b61024e61030a3660046125a5565b610db6565b610248610e84565b61024e600b5481565b600a5473ffffffffffffffffffffffffffffffffffffffff16610210565b6101e3610f11565b610248610354366004612729565b610f20565b61024861036736600461262f565b611037565b6101e361037a366004612844565b6110df565b6101c661038d3660046125c0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102486103d6366004612753565b6111ef565b6102486103e93660046125a5565b6113a4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806104445750610444826114d1565b92915050565b606060008054610459906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610485906129ee565b80156104d25780601f106104a7576101008083540402835291602001916104d2565b820191906000526020600020905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006105c682610b90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610589565b3373ffffffffffffffffffffffffffffffffffffffff821614806106ad57506106ad813361038d565b610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610589565b61074383836115b4565b505050565b6107523382611654565b6107de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6107438383836117c4565b60006107f483610db6565b8210610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b61074383838360405180602001604052806000815250611037565b600c5460ff16610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f546865536576656e73436f6c6c6162733a206275726e696e672064697361626c60448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610589565b61096f3382611654565b6109fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f546865536576656e73436f6c6c6162733a206275726e2063616c6c657220697360448201527f206e6f74206f776e6572206e6f7220617070726f7665640000000000000000006064820152608401610589565b610a0481611a36565b50565b6000610a1260085490565b8210610aa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610589565b60088281548110610ab357610ab3612b1c565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610b52600d83836124b5565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610b8492919061291f565b60405180910390a15050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610589565b600d8054610c4f906129ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7b906129ee565b8015610cc85780601f10610c9d57610100808354040283529160200191610cc8565b820191906000526020600020905b815481529060010190602001808311610cab57829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f430864ad215aa849052adf33b0cae7eb033aa8a4f9cf45fb3973699038505ff39060200160405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff8216610e5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610589565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b610f0f6000611b0f565b565b606060018054610459906129ee565b73ffffffffffffffffffffffffffffffffffffffff8216331415610fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610589565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110413383611654565b6110cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610589565b6110d984848484611b86565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610589565b600061119d611c29565b905060008151116111bd57604051806020016040528060008152506111e8565b806111c784611c38565b6040516020016111d89291906128a7565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff82166112ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546865536576656e73436f6c6c6162733a207a65726f206164647265737300006044820152606401610589565b600b5481611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f546865536576656e73436f6c6c6162733a20696e76616c696420636f756e74006044820152606401610589565b60005b828110156113875761137584611370838561297f565b611d6a565b8061137f81612a42565b91505061135a565b5081600b600082825461139a919061297f565b9091555050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610589565b73ffffffffffffffffffffffffffffffffffffffff81166114c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610589565b610a0481611b0f565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061156457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061044457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610444565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061160e82610b90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611705576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610589565b600061171083610b90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061177f57508373ffffffffffffffffffffffffffffffffffffffff16611767846104dc565b73ffffffffffffffffffffffffffffffffffffffff16145b806117bc575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166117e482610b90565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610589565b73ffffffffffffffffffffffffffffffffffffffff8216611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610589565b611934838383611d88565b61193f6000826115b4565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906119759084906129ab565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906119b090849061297f565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611a4182610b90565b9050611a4f81600084611d88565b611a5a6000836115b4565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600360205260408120805460019290611a909084906129ab565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b918484846117c4565b611b9d84848484611e8e565b6110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6060600d8054610459906129ee565b606081611c7857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ca25780611c8c81612a42565b9150611c9b9050600a83612997565b9150611c7c565b60008167ffffffffffffffff811115611cbd57611cbd612b4b565b6040519080825280601f01601f191660200182016040528015611ce7576020820181803683370190505b5090505b84156117bc57611cfc6001836129ab565b9150611d09600a86612a7b565b611d1490603061297f565b60f81b818381518110611d2957611d29612b1c565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d63600a86612997565b9450611ceb565b611d8482826040518060200160405280600081525061208d565b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611df057611deb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e2d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e2d57611e2d8382612130565b73ffffffffffffffffffffffffffffffffffffffff8216611e5157610743816121e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610743576107438282612296565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612082576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611f059033908990889088906004016128d6565b602060405180830381600087803b158015611f1f57600080fd5b505af1925050508015611f6d575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611f6a918101906127b5565b60015b612037573d808015611f9b576040519150601f19603f3d011682016040523d82523d6000602084013e611fa0565b606091505b50805161202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506117bc565b506001949350505050565b61209783836122e7565b6120a46000848484611e8e565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610589565b6000600161213d84610db6565b61214791906129ab565b6000838152600760205260409020549091508082146121a75773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906121f9906001906129ab565b6000838152600960205260408120546008805493945090928490811061222157612221612b1c565b90600052602060002001549050806008838154811061224257612242612b1c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061227a5761227a612aed565b6001900381819060005260206000200160009055905550505050565b60006122a183610db6565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610589565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff16156123f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610589565b6123fc60008383611d88565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061243290849061297f565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124c1906129ee565b90600052602060002090601f0160209004810192826124e35760008555612547565b82601f1061251a578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612547565b82800160010185558215612547579182015b8281111561254757823582559160200191906001019061252c565b50612553929150612557565b5090565b5b808211156125535760008155600101612558565b803573ffffffffffffffffffffffffffffffffffffffff8116811461259057600080fd5b919050565b8035801515811461259057600080fd5b6000602082840312156125b757600080fd5b6111e88261256c565b600080604083850312156125d357600080fd5b6125dc8361256c565b91506125ea6020840161256c565b90509250929050565b60008060006060848603121561260857600080fd5b6126118461256c565b925061261f6020850161256c565b9150604084013590509250925092565b6000806000806080858703121561264557600080fd5b61264e8561256c565b935061265c6020860161256c565b925060408501359150606085013567ffffffffffffffff8082111561268057600080fd5b818701915087601f83011261269457600080fd5b8135818111156126a6576126a6612b4b565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156126ec576126ec612b4b565b816040528281528a602084870101111561270557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561273c57600080fd5b6127458361256c565b91506125ea60208401612595565b6000806040838503121561276657600080fd5b61276f8361256c565b946020939093013593505050565b60006020828403121561278f57600080fd5b6111e882612595565b6000602082840312156127aa57600080fd5b81356111e881612b7a565b6000602082840312156127c757600080fd5b81516111e881612b7a565b600080602083850312156127e557600080fd5b823567ffffffffffffffff808211156127fd57600080fd5b818501915085601f83011261281157600080fd5b81358181111561282057600080fd5b86602082850101111561283257600080fd5b60209290920196919550909350505050565b60006020828403121561285657600080fd5b5035919050565b600081518084526128758160208601602086016129c2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516128b98184602088016129c2565b8351908301906128cd8183602088016129c2565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612915608083018461285d565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6020815260006111e8602083018461285d565b6000821982111561299257612992612a8f565b500190565b6000826129a6576129a6612abe565b500490565b6000828210156129bd576129bd612a8f565b500390565b60005b838110156129dd5781810151838201526020016129c5565b838111156110d95750506000910152565b600181811c90821680612a0257607f821691505b60208210811415612a3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a7457612a74612a8f565b5060010190565b600082612a8a57612a8a612abe565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a0457600080fdfea26469706673582212203b9e2106dcc8ea1f6034c77155821113752f44c978e0eb0d5ab0b23be808496a64736f6c63430008070033
Deployed Bytecode Sourcemap
43001:1490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36784:224;;;;;;:::i;:::-;;:::i;:::-;;;6068:14:1;;6061:22;6043:41;;6031:2;6016:18;36784:224:0;;;;;;;;23683:100;;;:::i;:::-;;;;;;;:::i;43200:25::-;;;;;;;;;25242:221;;;;;;:::i;:::-;;:::i;:::-;;;5332:42:1;5320:55;;;5302:74;;5290:2;5275:18;25242:221:0;5156:226:1;24765:411:0;;;;;;:::i;:::-;;:::i;:::-;;37424:113;37512:10;:17;37424:113;;;15672:25:1;;;15660:2;15645:18;37424:113:0;15526:177:1;26132:339:0;;;;;;:::i;:::-;;:::i;37092:256::-;;;;;;:::i;:::-;;:::i;26542:185::-;;;;;;:::i;:::-;;:::i;44118:262::-;;;;;;:::i;:::-;;:::i;37614:233::-;;;;;;:::i;:::-;;:::i;43502:148::-;;;;;;:::i;:::-;;:::i;23377:239::-;;;;;;:::i;:::-;;:::i;43234:21::-;;;:::i;43327:167::-;;;;;;:::i;:::-;;:::i;23107:208::-;;;;;;:::i;:::-;;:::i;2524:94::-;;;:::i;43167:26::-;;;;;;1873:87;1946:6;;;;1873:87;;23852:104;;;:::i;25535:295::-;;;;;;:::i;:::-;;:::i;26798:328::-;;;;;;:::i;:::-;;:::i;24027:334::-;;;;;;:::i;:::-;;:::i;25901:164::-;;;;;;:::i;:::-;26022:25;;;;25998:4;26022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25901:164;43658:452;;;;;;:::i;:::-;;:::i;2773:192::-;;;;;;:::i;:::-;;:::i;36784:224::-;36886:4;36910:50;;;36925:35;36910:50;;:90;;;36964:36;36988:11;36964:23;:36::i;:::-;36903:97;36784:224;-1:-1:-1;;36784:224:0:o;23683:100::-;23737:13;23770:5;23763:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23683:100;:::o;25242:221::-;25318:7;28725:16;;;:7;:16;;;;;;:30;:16;25338:73;;;;;;;12895:2:1;25338:73:0;;;12877:21:1;12934:2;12914:18;;;12907:30;12973:34;12953:18;;;12946:62;13044:14;13024:18;;;13017:42;13076:19;;25338:73:0;;;;;;;;;-1:-1:-1;25431:24:0;;;;:15;:24;;;;;;;;;25242:221::o;24765:411::-;24846:13;24862:23;24877:7;24862:14;:23::i;:::-;24846:39;;24910:5;24904:11;;:2;:11;;;;24896:57;;;;;;;14495:2:1;24896:57:0;;;14477:21:1;14534:2;14514:18;;;14507:30;14573:34;14553:18;;;14546:62;14644:3;14624:18;;;14617:31;14665:19;;24896:57:0;14293:397:1;24896:57:0;741:10;24988:21;;;;;:62;;-1:-1:-1;25013:37:0;25030:5;741:10;25901:164;:::i;25013:37::-;24966:168;;;;;;;10569:2:1;24966:168:0;;;10551:21:1;10608:2;10588:18;;;10581:30;10647:34;10627:18;;;10620:62;10718:26;10698:18;;;10691:54;10762:19;;24966:168:0;10367:420:1;24966:168:0;25147:21;25156:2;25160:7;25147:8;:21::i;:::-;24835:341;24765:411;;:::o;26132:339::-;26327:41;741:10;26360:7;26327:18;:41::i;:::-;26319:103;;;;;;;14897:2:1;26319:103:0;;;14879:21:1;14936:2;14916:18;;;14909:30;14975:34;14955:18;;;14948:62;15046:19;15026:18;;;15019:47;15083:19;;26319:103:0;14695:413:1;26319:103:0;26435:28;26445:4;26451:2;26455:7;26435:9;:28::i;37092:256::-;37189:7;37225:23;37242:5;37225:16;:23::i;:::-;37217:5;:31;37209:87;;;;;;;7378:2:1;37209:87:0;;;7360:21:1;7417:2;7397:18;;;7390:30;7456:34;7436:18;;;7429:62;7527:13;7507:18;;;7500:41;7558:19;;37209:87:0;7176:407:1;37209:87:0;-1:-1:-1;37314:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37092:256::o;26542:185::-;26680:39;26697:4;26703:2;26707:7;26680:39;;;;;;;;;;;;:16;:39::i;44118:262::-;44177:13;;;;44169:60;;;;;;;6975:2:1;44169:60:0;;;6957:21:1;7014:2;6994:18;;;6987:30;7053:34;7033:18;;;7026:62;7124:4;7104:18;;;7097:32;7146:19;;44169:60:0;6773:398:1;44169:60:0;44248:39;44267:10;44279:7;44248:18;:39::i;:::-;44240:107;;;;;;;10145:2:1;44240:107:0;;;10127:21:1;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;10294:25;10274:18;;;10267:53;10337:19;;44240:107:0;9943:419:1;44240:107:0;44358:14;44364:7;44358:5;:14::i;:::-;44118:262;:::o;37614:233::-;37689:7;37725:30;37512:10;:17;;37424:113;37725:30;37717:5;:38;37709:95;;;;;;;15315:2:1;37709:95:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:34;15373:18;;;15366:62;15464:14;15444:18;;;15437:42;15496:19;;37709:95:0;15113:408:1;37709:95:0;37822:10;37833:5;37822:17;;;;;;;;:::i;:::-;;;;;;;;;37815:24;;37614:233;;;:::o;43502:148::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;13308:2:1;2085:68:0;;;13290:21:1;;;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13438:18;;2085:68:0;13106:356:1;2085:68:0;43580:20:::1;:7;43590:10:::0;;43580:20:::1;:::i;:::-;;43616:26;43631:10;;43616:26;;;;;;;:::i;:::-;;;;;;;;43502:148:::0;;:::o;23377:239::-;23449:7;23485:16;;;:7;:16;;;;;;;;23520:19;23512:73;;;;;;;11405:2:1;23512:73:0;;;11387:21:1;11444:2;11424:18;;;11417:30;11483:34;11463:18;;;11456:62;11554:11;11534:18;;;11527:39;11583:19;;23512:73:0;11203:405:1;43234:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43327:167::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;13308:2:1;2085:68:0;;;13290:21:1;;;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13438:18;;2085:68:0;13106:356:1;2085:68:0;43404:13:::1;:30:::0;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;43450:36:::1;::::0;6043:41:1;;;43450:36:0::1;::::0;6031:2:1;6016:18;43450:36:0::1;;;;;;;43327:167:::0;:::o;23107:208::-;23179:7;23207:19;;;23199:74;;;;;;;10994:2:1;23199:74:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:34;11052:18;;;11045:62;11143:12;11123:18;;;11116:40;11173:19;;23199:74:0;10792:406:1;23199:74:0;-1:-1:-1;23291:16:0;;;;;;:9;:16;;;;;;;23107:208::o;2524:94::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;13308:2:1;2085:68:0;;;13290:21:1;;;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13438:18;;2085:68:0;13106:356:1;2085:68:0;2589:21:::1;2607:1;2589:9;:21::i;:::-;2524:94::o:0;23852:104::-;23908:13;23941:7;23934:14;;;;;:::i;25535:295::-;25638:24;;;741:10;25638:24;;25630:62;;;;;;;9378:2:1;25630:62:0;;;9360:21:1;9417:2;9397:18;;;9390:30;9456:27;9436:18;;;9429:55;9501:18;;25630:62:0;9176:349:1;25630:62:0;741:10;25705:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;25774:48;;6043:41:1;;;25705:42:0;;741:10;25774:48;;6016:18:1;25774:48:0;;;;;;;25535:295;;:::o;26798:328::-;26973:41;741:10;27006:7;26973:18;:41::i;:::-;26965:103;;;;;;;14897:2:1;26965:103:0;;;14879:21:1;14936:2;14916:18;;;14909:30;14975:34;14955:18;;;14948:62;15046:19;15026:18;;;15019:47;15083:19;;26965:103:0;14695:413:1;26965:103:0;27079:39;27093:4;27099:2;27103:7;27112:5;27079:13;:39::i;:::-;26798:328;;;;:::o;24027:334::-;28701:4;28725:16;;;:7;:16;;;;;;24100:13;;28725:30;:16;24126:76;;;;;;;14079:2:1;24126:76:0;;;14061:21:1;14118:2;14098:18;;;14091:30;14157:34;14137:18;;;14130:62;14228:17;14208:18;;;14201:45;14263:19;;24126:76:0;13877:411:1;24126:76:0;24215:21;24239:10;:8;:10::i;:::-;24215:34;;24291:1;24273:7;24267:21;:25;:86;;;;;;;;;;;;;;;;;24319:7;24328:18;:7;:16;:18::i;:::-;24302:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24267:86;24260:93;24027:334;-1:-1:-1;;;24027:334:0:o;43658:452::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;13308:2:1;2085:68:0;;;13290:21:1;;;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13438:18;;2085:68:0;13106:356:1;2085:68:0;43750:23:::1;::::0;::::1;43742:66;;;::::0;::::1;::::0;;12175:2:1;43742:66:0::1;::::0;::::1;12157:21:1::0;12214:2;12194:18;;;12187:30;12253:32;12233:18;;;12226:60;12303:18;;43742:66:0::1;11973:354:1::0;43742:66:0::1;43873:11;::::0;43905:9;43897:53:::1;;;::::0;::::1;::::0;;11815:2:1;43897:53:0::1;::::0;::::1;11797:21:1::0;11854:2;11834:18;;;11827:30;11893:33;11873:18;;;11866:61;11944:18;;43897:53:0::1;11613:355:1::0;43897:53:0::1;43968:11;43963:109;43991:5;43985:3;:11;43963:109;;;44020:40;44030:9:::0;44041:18:::1;44056:3:::0;44041:12;:18:::1;:::i;:::-;44020:9;:40::i;:::-;43998:5:::0;::::1;::::0;::::1;:::i;:::-;;;;43963:109;;;;44097:5;44082:11;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;43658:452:0:o;2773:192::-;1946:6;;2093:23;1946:6;741:10;2093:23;2085:68;;;;;;;13308:2:1;2085:68:0;;;13290:21:1;;;13327:18;;;13320:30;13386:34;13366:18;;;13359:62;13438:18;;2085:68:0;13106:356:1;2085:68:0;2862:22:::1;::::0;::::1;2854:73;;;::::0;::::1;::::0;;8209:2:1;2854:73:0::1;::::0;::::1;8191:21:1::0;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;8358:8;8338:18;;;8331:36;8384:19;;2854:73:0::1;8007:402:1::0;2854:73:0::1;2938:19;2948:8;2938:9;:19::i;22738:305::-:0;22840:4;22877:40;;;22892:25;22877:40;;:105;;-1:-1:-1;22934:48:0;;;22949:33;22934:48;22877:105;:158;;;-1:-1:-1;21378:25:0;21363:40;;;;22999:36;21254:157;32618:174;32693:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;32747:23;32693:24;32747:14;:23::i;:::-;32738:46;;;;;;;;;;;;32618:174;;:::o;28930:348::-;29023:4;28725:16;;;:7;:16;;;;;;:30;:16;29040:73;;;;;;;9732:2:1;29040:73:0;;;9714:21:1;9771:2;9751:18;;;9744:30;9810:34;9790:18;;;9783:62;9881:14;9861:18;;;9854:42;9913:19;;29040:73:0;9530:408:1;29040:73:0;29124:13;29140:23;29155:7;29140:14;:23::i;:::-;29124:39;;29193:5;29182:16;;:7;:16;;;:51;;;;29226:7;29202:31;;:20;29214:7;29202:11;:20::i;:::-;:31;;;29182:51;:87;;;-1:-1:-1;26022:25:0;;;;25998:4;26022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29237:32;29174:96;28930:348;-1:-1:-1;;;;28930:348:0:o;31922:578::-;32081:4;32054:31;;:23;32069:7;32054:14;:23::i;:::-;:31;;;32046:85;;;;;;;13669:2:1;32046:85:0;;;13651:21:1;13708:2;13688:18;;;13681:30;13747:34;13727:18;;;13720:62;13818:11;13798:18;;;13791:39;13847:19;;32046:85:0;13467:405:1;32046:85:0;32150:16;;;32142:65;;;;;;;8973:2:1;32142:65:0;;;8955:21:1;9012:2;8992:18;;;8985:30;9051:34;9031:18;;;9024:62;9122:6;9102:18;;;9095:34;9146:19;;32142:65:0;8771:400:1;32142:65:0;32220:39;32241:4;32247:2;32251:7;32220:20;:39::i;:::-;32324:29;32341:1;32345:7;32324:8;:29::i;:::-;32366:15;;;;;;;:9;:15;;;;;:20;;32385:1;;32366:15;:20;;32385:1;;32366:20;:::i;:::-;;;;-1:-1:-1;;32397:13:0;;;;;;;:9;:13;;;;;:18;;32414:1;;32397:13;:18;;32414:1;;32397:18;:::i;:::-;;;;-1:-1:-1;;32426:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;32465:27;;32426:16;;32465:27;;;;;;;31922:578;;;:::o;31225:360::-;31285:13;31301:23;31316:7;31301:14;:23::i;:::-;31285:39;;31337:48;31358:5;31373:1;31377:7;31337:20;:48::i;:::-;31426:29;31443:1;31447:7;31426:8;:29::i;:::-;31468:16;;;;;;;:9;:16;;;;;:21;;31488:1;;31468:16;:21;;31488:1;;31468:21;:::i;:::-;;;;-1:-1:-1;;31507:16:0;;;;:7;:16;;;;;;31500:23;;;;;;31541:36;31515:7;;31507:16;31500:23;31541:36;;;;;31507:16;;31541:36;31274:311;31225:360;:::o;2973:173::-;3048:6;;;;3065:17;;;;;;;;;;;3098:40;;3048:6;;;3065:17;3048:6;;3098:40;;3029:16;;3098:40;3018:128;2973:173;:::o;28008:315::-;28165:28;28175:4;28181:2;28185:7;28165:9;:28::i;:::-;28212:48;28235:4;28241:2;28245:7;28254:5;28212:22;:48::i;:::-;28204:111;;;;;;;7790:2:1;28204:111:0;;;7772:21:1;7829:2;7809:18;;;7802:30;7868:34;7848:18;;;7841:62;7939:20;7919:18;;;7912:48;7977:19;;28204:111:0;7588:414:1;44388:100:0;44440:13;44473:7;44466:14;;;;;:::i;18697:723::-;18753:13;18974:10;18970:53;;-1:-1:-1;;19001:10:0;;;;;;;;;;;;;;;;;;18697:723::o;18970:53::-;19048:5;19033:12;19089:78;19096:9;;19089:78;;19122:8;;;;:::i;:::-;;-1:-1:-1;19145:10:0;;-1:-1:-1;19153:2:0;19145:10;;:::i;:::-;;;19089:78;;;19177:19;19209:6;19199:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19199:17:0;;19177:39;;19227:154;19234:10;;19227:154;;19261:11;19271:1;19261:11;;:::i;:::-;;-1:-1:-1;19330:10:0;19338:2;19330:5;:10;:::i;:::-;19317:24;;:2;:24;:::i;:::-;19304:39;;19287:6;19294;19287:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;19358:11:0;19367:2;19358:11;;:::i;:::-;;;19227:154;;29620:110;29696:26;29706:2;29710:7;29696:26;;;;;;;;;;;;:9;:26::i;:::-;29620:110;;:::o;38460:589::-;38666:18;;;38662:187;;38701:40;38733:7;39876:10;:17;;39849:24;;;;:15;:24;;;;;:44;;;39904:24;;;;;;;;;;;;39772:164;38701:40;38662:187;;;38771:2;38763:10;;:4;:10;;;38759:90;;38790:47;38823:4;38829:7;38790:32;:47::i;:::-;38863:16;;;38859:183;;38896:45;38933:7;38896:36;:45::i;38859:183::-;38969:4;38963:10;;:2;:10;;;38959:83;;38990:40;39018:2;39022:7;38990:27;:40::i;33357:803::-;33512:4;33533:13;;;11593:20;11641:8;33529:624;;33569:72;;;;;:36;;;;;;:72;;741:10;;33620:4;;33626:7;;33635:5;;33569:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33569:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33565:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33815:13:0;;33811:272;;33858:60;;;;;7790:2:1;33858:60:0;;;7772:21:1;7829:2;7809:18;;;7802:30;7868:34;7848:18;;;7841:62;7939:20;7919:18;;;7912:48;7977:19;;33858:60:0;7588:414:1;33811:272:0;34033:6;34027:13;34018:6;34014:2;34010:15;34003:38;33565:533;33692:55;;33702:45;33692:55;;-1:-1:-1;33685:62:0;;33529:624;-1:-1:-1;34137:4:0;33357:803;;;;;;:::o;29957:321::-;30087:18;30093:2;30097:7;30087:5;:18::i;:::-;30138:54;30169:1;30173:2;30177:7;30186:5;30138:22;:54::i;:::-;30116:154;;;;;;;7790:2:1;30116:154:0;;;7772:21:1;7829:2;7809:18;;;7802:30;7868:34;7848:18;;;7841:62;7939:20;7919:18;;;7912:48;7977:19;;30116:154:0;7588:414:1;40563:988:0;40829:22;40879:1;40854:22;40871:4;40854:16;:22::i;:::-;:26;;;;:::i;:::-;40891:18;40912:26;;;:17;:26;;;;;;40829:51;;-1:-1:-1;41045:28:0;;;41041:328;;41112:18;;;41090:19;41112:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41163:30;;;;;;:44;;;41280:30;;:17;:30;;;;;:43;;;41041:328;-1:-1:-1;41465:26:0;;;;:17;:26;;;;;;;;41458:33;;;41509:18;;;;;;:12;:18;;;;;:34;;;;;;;41502:41;40563:988::o;41846:1079::-;42124:10;:17;42099:22;;42124:21;;42144:1;;42124:21;:::i;:::-;42156:18;42177:24;;;:15;:24;;;;;;42550:10;:26;;42099:46;;-1:-1:-1;42177:24:0;;42099:46;;42550:26;;;;;;:::i;:::-;;;;;;;;;42528:48;;42614:11;42589:10;42600;42589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42694:28;;;:15;:28;;;;;;;:41;;;42866:24;;;;;42859:31;42901:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41917:1008;;;41846:1079;:::o;39350:221::-;39435:14;39452:20;39469:2;39452:16;:20::i;:::-;39483:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39528:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39350:221:0:o;30614:382::-;30694:16;;;30686:61;;;;;;;12534:2:1;30686:61:0;;;12516:21:1;;;12553:18;;;12546:30;12612:34;12592:18;;;12585:62;12664:18;;30686:61:0;12332:356:1;30686:61:0;28701:4;28725:16;;;:7;:16;;;;;;:30;:16;:30;30758:58;;;;;;;8616:2:1;30758:58:0;;;8598:21:1;8655:2;8635:18;;;8628:30;8694;8674:18;;;8667:58;8742:18;;30758:58:0;8414:352:1;30758:58:0;30829:45;30858:1;30862:2;30866:7;30829:20;:45::i;:::-;30887:13;;;;;;;:9;:13;;;;;:18;;30904:1;;30887:13;:18;;30904:1;;30887:18;:::i;:::-;;;;-1:-1:-1;;30916:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;30955:33;;30916:16;;;30955:33;;30916:16;;30955:33;30614:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1197::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1952:2;1946:9;2014:4;2006:13;;1857:66;2002:22;;;2026:2;1998:31;1994:40;1982:53;;;2050:18;;;2070:22;;;2047:46;2044:72;;;2096:18;;:::i;:::-;2136:10;2132:2;2125:22;2171:2;2163:6;2156:18;2211:7;2206:2;2201;2197;2193:11;2189:20;2186:33;2183:53;;;2232:1;2229;2222:12;2183:53;2288:2;2283;2279;2275:11;2270:2;2262:6;2258:15;2245:46;2333:1;2328:2;2323;2315:6;2311:15;2307:24;2300:35;2354:6;2344:16;;;;;;;1169:1197;;;;;;;:::o;2371:254::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:52;;;2513:1;2510;2503:12;2465:52;2536:29;2555:9;2536:29;:::i;:::-;2526:39;;2584:35;2615:2;2604:9;2600:18;2584:35;:::i;2630:254::-;2698:6;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2798:29;2817:9;2798:29;:::i;:::-;2788:39;2874:2;2859:18;;;;2846:32;;-1:-1:-1;;;2630:254:1:o;2889:180::-;2945:6;2998:2;2986:9;2977:7;2973:23;2969:32;2966:52;;;3014:1;3011;3004:12;2966:52;3037:26;3053:9;3037:26;:::i;3074:245::-;3132:6;3185:2;3173:9;3164:7;3160:23;3156:32;3153:52;;;3201:1;3198;3191:12;3153:52;3240:9;3227:23;3259:30;3283:5;3259:30;:::i;3324:249::-;3393:6;3446:2;3434:9;3425:7;3421:23;3417:32;3414:52;;;3462:1;3459;3452:12;3414:52;3494:9;3488:16;3513:30;3537:5;3513:30;:::i;3578:592::-;3649:6;3657;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3795:18;3836:2;3828:6;3825:14;3822:34;;;3852:1;3849;3842:12;3822:34;3890:6;3879:9;3875:22;3865:32;;3935:7;3928:4;3924:2;3920:13;3916:27;3906:55;;3957:1;3954;3947:12;3906:55;3997:2;3984:16;4023:2;4015:6;4012:14;4009:34;;;4039:1;4036;4029:12;4009:34;4084:7;4079:2;4070:6;4066:2;4062:15;4058:24;4055:37;4052:57;;;4105:1;4102;4095:12;4052:57;4136:2;4128:11;;;;;4158:6;;-1:-1:-1;3578:592:1;;-1:-1:-1;;;;3578:592:1:o;4175:180::-;4234:6;4287:2;4275:9;4266:7;4262:23;4258:32;4255:52;;;4303:1;4300;4293:12;4255:52;-1:-1:-1;4326:23:1;;4175:180;-1:-1:-1;4175:180:1:o;4360:316::-;4401:3;4439:5;4433:12;4466:6;4461:3;4454:19;4482:63;4538:6;4531:4;4526:3;4522:14;4515:4;4508:5;4504:16;4482:63;:::i;:::-;4590:2;4578:15;4595:66;4574:88;4565:98;;;;4665:4;4561:109;;4360:316;-1:-1:-1;;4360:316:1:o;4681:470::-;4860:3;4898:6;4892:13;4914:53;4960:6;4955:3;4948:4;4940:6;4936:17;4914:53;:::i;:::-;5030:13;;4989:16;;;;5052:57;5030:13;4989:16;5086:4;5074:17;;5052:57;:::i;:::-;5125:20;;4681:470;-1:-1:-1;;;;4681:470:1:o;5387:511::-;5581:4;5610:42;5691:2;5683:6;5679:15;5668:9;5661:34;5743:2;5735:6;5731:15;5726:2;5715:9;5711:18;5704:43;;5783:6;5778:2;5767:9;5763:18;5756:34;5826:3;5821:2;5810:9;5806:18;5799:31;5847:45;5887:3;5876:9;5872:19;5864:6;5847:45;:::i;:::-;5839:53;5387:511;-1:-1:-1;;;;;;5387:511:1:o;6095:449::-;6254:2;6243:9;6236:21;6293:6;6288:2;6277:9;6273:18;6266:34;6350:6;6342;6337:2;6326:9;6322:18;6309:48;6406:1;6377:22;;;6401:2;6373:31;;;6366:42;;;;6460:2;6448:15;;;6465:66;6444:88;6429:104;6425:113;;6095:449;-1:-1:-1;6095:449:1:o;6549:219::-;6698:2;6687:9;6680:21;6661:4;6718:44;6758:2;6747:9;6743:18;6735:6;6718:44;:::i;15708:128::-;15748:3;15779:1;15775:6;15772:1;15769:13;15766:39;;;15785:18;;:::i;:::-;-1:-1:-1;15821:9:1;;15708:128::o;15841:120::-;15881:1;15907;15897:35;;15912:18;;:::i;:::-;-1:-1:-1;15946:9:1;;15841:120::o;15966:125::-;16006:4;16034:1;16031;16028:8;16025:34;;;16039:18;;:::i;:::-;-1:-1:-1;16076:9:1;;15966:125::o;16096:258::-;16168:1;16178:113;16192:6;16189:1;16186:13;16178:113;;;16268:11;;;16262:18;16249:11;;;16242:39;16214:2;16207:10;16178:113;;;16309:6;16306:1;16303:13;16300:48;;;-1:-1:-1;;16344:1:1;16326:16;;16319:27;16096:258::o;16359:437::-;16438:1;16434:12;;;;16481;;;16502:61;;16556:4;16548:6;16544:17;16534:27;;16502:61;16609:2;16601:6;16598:14;16578:18;16575:38;16572:218;;;16646:77;16643:1;16636:88;16747:4;16744:1;16737:15;16775:4;16772:1;16765:15;16572:218;;16359:437;;;:::o;16801:195::-;16840:3;16871:66;16864:5;16861:77;16858:103;;;16941:18;;:::i;:::-;-1:-1:-1;16988:1:1;16977:13;;16801:195::o;17001:112::-;17033:1;17059;17049:35;;17064:18;;:::i;:::-;-1:-1:-1;17098:9:1;;17001:112::o;17118:184::-;17170:77;17167:1;17160:88;17267:4;17264:1;17257:15;17291:4;17288:1;17281:15;17307:184;17359:77;17356:1;17349:88;17456:4;17453:1;17446:15;17480:4;17477:1;17470:15;17496:184;17548:77;17545:1;17538:88;17645:4;17642:1;17635:15;17669:4;17666:1;17659:15;17685:184;17737:77;17734:1;17727:88;17834:4;17831:1;17824:15;17858:4;17855:1;17848:15;17874:184;17926:77;17923:1;17916:88;18023:4;18020:1;18013:15;18047:4;18044:1;18037:15;18063:177;18148:66;18141:5;18137:78;18130:5;18127:89;18117:117;;18230:1;18227;18220:12
Swarm Source
ipfs://3b9e2106dcc8ea1f6034c77155821113752f44c978e0eb0d5ab0b23be808496a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.