Overview
TokenID
23
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Tangled
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: Tangled.sol pragma solidity >=0.7.0 <0.9.0; contract Tangled is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public MetadataUri; uint256 public maxSupply = 30; constructor() ERC721("Tangled", "TGD") { setMetadataUri("ipfs://QmTTE34kTvyeZeL5cdofy3dbDHsy4d4Mbi1RtbnDqDreKH/"); } modifier mintCompliance(uint256 _mintAmount) { require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } //Airdrop function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function totalSupply() public view returns (uint256) { return supply.current(); } function setMetadataUri(string memory _MetadataUri) public onlyOwner { MetadataUri = _MetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_MetadataUri","type":"string"}],"name":"setMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052600060809081526008906200001a908262000275565b50604080518082019091526005815264173539b7b760d91b602082015260099062000046908262000275565b50601e600b553480156200005957600080fd5b506040518060400160405280600781526020016615185b99db195960ca1b815250604051806040016040528060038152602001621511d160ea1b8152508160009081620000a7919062000275565b506001620000b6828262000275565b505050620000d3620000cd620000fd60201b60201c565b62000101565b620000f760405180606001604052806036815260200162001e766036913962000153565b62000341565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015d6200016f565b600a6200016b828262000275565b5050565b6006546001600160a01b03163314620001ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fb57607f821691505b6020821081036200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027057600081815260208120601f850160051c810160208610156200024b5750805b601f850160051c820191505b818110156200026c5782815560010162000257565b5050505b505050565b81516001600160401b03811115620002915762000291620001d0565b620002a981620002a28454620001e6565b8462000222565b602080601f831160018114620002e15760008415620002c85750858301515b600019600386901b1c1916600185901b1785556200026c565b600085815260208120601f198616915b828110156200031257888601518255948401946001909101908401620002f1565b5085821015620003315787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b2580620003516000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063ae61555011610097578063d5abeb0111610071578063d5abeb0114610360578063e985e9c514610369578063efbd73f41461037c578063f2fde38b1461038f57600080fd5b8063ae61555014610332578063b88d4fde1461033a578063c87b56dd1461034d57600080fd5b80637ec4a659116100d35780637ec4a659146102f35780638da5cb5b1461030657806395d89b4114610317578063a22cb4651461031f57600080fd5b80636352211e146102c557806370a08231146102d8578063715018a6146102eb57600080fd5b806318160ddd1161016657806342842e0e1161014057806342842e0e14610282578063438b6300146102955780635503a0e8146102b557806362b99ad4146102bd57600080fd5b806318160ddd1461025157806323b872dd146102675780633ccfd60b1461027a57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780631130630c1461022b57806316ba10e01461023e575b600080fd5b6101c16101bc366004611407565b6103a2565b60405190151581526020015b60405180910390f35b6101de6103f4565b6040516101cd9190611474565b6101fe6101f9366004611487565b610486565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046114bc565b6104ad565b005b610229610239366004611572565b6105c7565b61022961024c366004611572565b6105df565b6102596105f3565b6040519081526020016101cd565b6102296102753660046115bb565b610603565b610229610634565b6102296102903660046115bb565b6106b0565b6102a86102a33660046115f7565b6106cb565b6040516101cd9190611612565b6101de6107ab565b6101de610839565b6101fe6102d3366004611487565b610846565b6102596102e63660046115f7565b6108a6565b61022961092c565b610229610301366004611572565b610940565b6006546001600160a01b03166101fe565b6101de610954565b61022961032d366004611656565b610963565b6101de61096e565b610229610348366004611692565b61097b565b6101de61035b366004611487565b6109b3565b610259600b5481565b6101c161037736600461170e565b610a91565b61022961038a366004611741565b610abf565b61022961039d3660046115f7565b610b2e565b60006001600160e01b031982166380ac58cd60e01b14806103d357506001600160e01b03198216635b5e139f60e01b145b806103ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461040390611764565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611764565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600061049182610ba4565b506000908152600460205260409020546001600160a01b031690565b60006104b882610846565b9050806001600160a01b0316836001600160a01b03160361052a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061054657506105468133610a91565b6105b85760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610521565b6105c28383610c03565b505050565b6105cf610c71565b600a6105db82826117ec565b5050565b6105e7610c71565b60096105db82826117ec565b60006105fe60075490565b905090565b61060d3382610ccb565b6106295760405162461bcd60e51b8152600401610521906118ac565b6105c2838383610d2a565b61063c610c71565b60006106506006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461069a576040519150601f19603f3d011682016040523d82523d6000602084013e61069f565b606091505b50509050806106ad57600080fd5b50565b6105c28383836040518060200160405280600081525061097b565b606060006106d8836108a6565b905060008167ffffffffffffffff8111156106f5576106f56114e6565b60405190808252806020026020018201604052801561071e578160200160208202803683370190505b509050600160005b83811080156107375750600b548211155b156107a157600061074783610846565b9050866001600160a01b0316816001600160a01b03160361078e5782848381518110610775576107756118fa565b60209081029190910101528161078a81611926565b9250505b8261079881611926565b93505050610726565b5090949350505050565b600980546107b890611764565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490611764565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b505050505081565b600880546107b890611764565b6000818152600260205260408120546001600160a01b0316806103ee5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610521565b60006001600160a01b0382166109105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610521565b506001600160a01b031660009081526003602052604090205490565b610934610c71565b61093e6000610ec6565b565b610948610c71565b60086105db82826117ec565b60606001805461040390611764565b6105db338383610f18565b600a80546107b890611764565b6109853383610ccb565b6109a15760405162461bcd60e51b8152600401610521906118ac565b6109ad84848484610fe6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610521565b6000610a3c611019565b90506000815111610a5c5760405180602001604052806000815250610a8a565b80610a6684611028565b6009604051602001610a7a9392919061193f565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b81600b5481610acd60075490565b610ad791906119df565b1115610b1c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610521565b610b24610c71565b6105c28284611129565b610b36610c71565b6001600160a01b038116610b9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b6106ad81610ec6565b6000818152600260205260409020546001600160a01b03166106ad5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610521565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c3882610846565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0316331461093e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b600080610cd783610846565b9050806001600160a01b0316846001600160a01b03161480610cfe5750610cfe8185610a91565b80610d225750836001600160a01b0316610d1784610486565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d3d82610846565b6001600160a01b031614610da15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610521565b6001600160a01b038216610e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b610e0e600082610c03565b6001600160a01b0383166000908152600360205260408120805460019290610e379084906119f2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e659084906119df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610f795760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610521565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ff1848484610d2a565b610ffd84848484611166565b6109ad5760405162461bcd60e51b815260040161052190611a05565b60606008805461040390611764565b60608160000361104f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611079578061106381611926565b91506110729050600a83611a6d565b9150611053565b60008167ffffffffffffffff811115611094576110946114e6565b6040519080825280601f01601f1916602001820160405280156110be576020820181803683370190505b5090505b8415610d22576110d36001836119f2565b91506110e0600a86611a81565b6110eb9060306119df565b60f81b818381518110611100576111006118fa565b60200101906001600160f81b031916908160001a905350611122600a86611a6d565b94506110c2565b60005b818110156105c257611142600780546001019055565b6111548361114f60075490565b611267565b8061115e81611926565b91505061112c565b60006001600160a01b0384163b1561125c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111aa903390899088908890600401611a95565b6020604051808303816000875af19250505080156111e5575060408051601f3d908101601f191682019092526111e291810190611ad2565b60015b611242573d808015611213576040519150601f19603f3d011682016040523d82523d6000602084013e611218565b606091505b50805160000361123a5760405162461bcd60e51b815260040161052190611a05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d22565b506001949350505050565b6105db82826040518060200160405280600081525061128683836112af565b6112936000848484611166565b6105c25760405162461bcd60e51b815260040161052190611a05565b6001600160a01b0382166113055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610521565b6000818152600260205260409020546001600160a01b03161561136a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610521565b6001600160a01b03821660009081526003602052604081208054600192906113939084906119df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146106ad57600080fd5b60006020828403121561141957600080fd5b8135610a8a816113f1565b60005b8381101561143f578181015183820152602001611427565b50506000910152565b60008151808452611460816020860160208601611424565b601f01601f19169290920160200192915050565b602081526000610a8a6020830184611448565b60006020828403121561149957600080fd5b5035919050565b80356001600160a01b03811681146114b757600080fd5b919050565b600080604083850312156114cf57600080fd5b6114d8836114a0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611517576115176114e6565b604051601f8501601f19908116603f0116810190828211818310171561153f5761153f6114e6565b8160405280935085815286868601111561155857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561158457600080fd5b813567ffffffffffffffff81111561159b57600080fd5b8201601f810184136115ac57600080fd5b610d22848235602084016114fc565b6000806000606084860312156115d057600080fd5b6115d9846114a0565b92506115e7602085016114a0565b9150604084013590509250925092565b60006020828403121561160957600080fd5b610a8a826114a0565b6020808252825182820181905260009190848201906040850190845b8181101561164a5783518352928401929184019160010161162e565b50909695505050505050565b6000806040838503121561166957600080fd5b611672836114a0565b91506020830135801515811461168757600080fd5b809150509250929050565b600080600080608085870312156116a857600080fd5b6116b1856114a0565b93506116bf602086016114a0565b925060408501359150606085013567ffffffffffffffff8111156116e257600080fd5b8501601f810187136116f357600080fd5b611702878235602084016114fc565b91505092959194509250565b6000806040838503121561172157600080fd5b61172a836114a0565b9150611738602084016114a0565b90509250929050565b6000806040838503121561175457600080fd5b82359150611738602084016114a0565b600181811c9082168061177857607f821691505b60208210810361179857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105c257600081815260208120601f850160051c810160208610156117c55750805b601f850160051c820191505b818110156117e4578281556001016117d1565b505050505050565b815167ffffffffffffffff811115611806576118066114e6565b61181a816118148454611764565b8461179e565b602080601f83116001811461184f57600084156118375750858301515b600019600386901b1c1916600185901b1785556117e4565b600085815260208120601f198616915b8281101561187e5788860151825594840194600190910190840161185f565b508582101561189c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161193857611938611910565b5060010190565b6000845160206119528285838a01611424565b8551918401916119658184848a01611424565b855492019160009061197681611764565b6001828116801561198e57600181146119a3576119cf565b60ff19841687528215158302870194506119cf565b896000528560002060005b848110156119c7578154898201529083019087016119ae565b505082870194505b50929a9950505050505050505050565b808201808211156103ee576103ee611910565b818103818111156103ee576103ee611910565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611a7c57611a7c611a57565b500490565b600082611a9057611a90611a57565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac890830184611448565b9695505050505050565b600060208284031215611ae457600080fd5b8151610a8a816113f156fea264697066735822122014127ff61f5fe78971830d77780e930e35072170985a200f1cb4bd0dd4eb8d2764736f6c63430008110033697066733a2f2f516d54544533346b547679655a654c3563646f6679336462444873793464344d6269315274626e44714472654b482f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063ae61555011610097578063d5abeb0111610071578063d5abeb0114610360578063e985e9c514610369578063efbd73f41461037c578063f2fde38b1461038f57600080fd5b8063ae61555014610332578063b88d4fde1461033a578063c87b56dd1461034d57600080fd5b80637ec4a659116100d35780637ec4a659146102f35780638da5cb5b1461030657806395d89b4114610317578063a22cb4651461031f57600080fd5b80636352211e146102c557806370a08231146102d8578063715018a6146102eb57600080fd5b806318160ddd1161016657806342842e0e1161014057806342842e0e14610282578063438b6300146102955780635503a0e8146102b557806362b99ad4146102bd57600080fd5b806318160ddd1461025157806323b872dd146102675780633ccfd60b1461027a57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b3146102165780631130630c1461022b57806316ba10e01461023e575b600080fd5b6101c16101bc366004611407565b6103a2565b60405190151581526020015b60405180910390f35b6101de6103f4565b6040516101cd9190611474565b6101fe6101f9366004611487565b610486565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046114bc565b6104ad565b005b610229610239366004611572565b6105c7565b61022961024c366004611572565b6105df565b6102596105f3565b6040519081526020016101cd565b6102296102753660046115bb565b610603565b610229610634565b6102296102903660046115bb565b6106b0565b6102a86102a33660046115f7565b6106cb565b6040516101cd9190611612565b6101de6107ab565b6101de610839565b6101fe6102d3366004611487565b610846565b6102596102e63660046115f7565b6108a6565b61022961092c565b610229610301366004611572565b610940565b6006546001600160a01b03166101fe565b6101de610954565b61022961032d366004611656565b610963565b6101de61096e565b610229610348366004611692565b61097b565b6101de61035b366004611487565b6109b3565b610259600b5481565b6101c161037736600461170e565b610a91565b61022961038a366004611741565b610abf565b61022961039d3660046115f7565b610b2e565b60006001600160e01b031982166380ac58cd60e01b14806103d357506001600160e01b03198216635b5e139f60e01b145b806103ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461040390611764565b80601f016020809104026020016040519081016040528092919081815260200182805461042f90611764565b801561047c5780601f106104515761010080835404028352916020019161047c565b820191906000526020600020905b81548152906001019060200180831161045f57829003601f168201915b5050505050905090565b600061049182610ba4565b506000908152600460205260409020546001600160a01b031690565b60006104b882610846565b9050806001600160a01b0316836001600160a01b03160361052a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061054657506105468133610a91565b6105b85760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610521565b6105c28383610c03565b505050565b6105cf610c71565b600a6105db82826117ec565b5050565b6105e7610c71565b60096105db82826117ec565b60006105fe60075490565b905090565b61060d3382610ccb565b6106295760405162461bcd60e51b8152600401610521906118ac565b6105c2838383610d2a565b61063c610c71565b60006106506006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461069a576040519150601f19603f3d011682016040523d82523d6000602084013e61069f565b606091505b50509050806106ad57600080fd5b50565b6105c28383836040518060200160405280600081525061097b565b606060006106d8836108a6565b905060008167ffffffffffffffff8111156106f5576106f56114e6565b60405190808252806020026020018201604052801561071e578160200160208202803683370190505b509050600160005b83811080156107375750600b548211155b156107a157600061074783610846565b9050866001600160a01b0316816001600160a01b03160361078e5782848381518110610775576107756118fa565b60209081029190910101528161078a81611926565b9250505b8261079881611926565b93505050610726565b5090949350505050565b600980546107b890611764565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490611764565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b505050505081565b600880546107b890611764565b6000818152600260205260408120546001600160a01b0316806103ee5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610521565b60006001600160a01b0382166109105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610521565b506001600160a01b031660009081526003602052604090205490565b610934610c71565b61093e6000610ec6565b565b610948610c71565b60086105db82826117ec565b60606001805461040390611764565b6105db338383610f18565b600a80546107b890611764565b6109853383610ccb565b6109a15760405162461bcd60e51b8152600401610521906118ac565b6109ad84848484610fe6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610521565b6000610a3c611019565b90506000815111610a5c5760405180602001604052806000815250610a8a565b80610a6684611028565b6009604051602001610a7a9392919061193f565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b81600b5481610acd60075490565b610ad791906119df565b1115610b1c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610521565b610b24610c71565b6105c28284611129565b610b36610c71565b6001600160a01b038116610b9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b6106ad81610ec6565b6000818152600260205260409020546001600160a01b03166106ad5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610521565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c3882610846565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0316331461093e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b600080610cd783610846565b9050806001600160a01b0316846001600160a01b03161480610cfe5750610cfe8185610a91565b80610d225750836001600160a01b0316610d1784610486565b6001600160a01b0316145b949350505050565b826001600160a01b0316610d3d82610846565b6001600160a01b031614610da15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610521565b6001600160a01b038216610e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b610e0e600082610c03565b6001600160a01b0383166000908152600360205260408120805460019290610e379084906119f2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e659084906119df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603610f795760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610521565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610ff1848484610d2a565b610ffd84848484611166565b6109ad5760405162461bcd60e51b815260040161052190611a05565b60606008805461040390611764565b60608160000361104f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611079578061106381611926565b91506110729050600a83611a6d565b9150611053565b60008167ffffffffffffffff811115611094576110946114e6565b6040519080825280601f01601f1916602001820160405280156110be576020820181803683370190505b5090505b8415610d22576110d36001836119f2565b91506110e0600a86611a81565b6110eb9060306119df565b60f81b818381518110611100576111006118fa565b60200101906001600160f81b031916908160001a905350611122600a86611a6d565b94506110c2565b60005b818110156105c257611142600780546001019055565b6111548361114f60075490565b611267565b8061115e81611926565b91505061112c565b60006001600160a01b0384163b1561125c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111aa903390899088908890600401611a95565b6020604051808303816000875af19250505080156111e5575060408051601f3d908101601f191682019092526111e291810190611ad2565b60015b611242573d808015611213576040519150601f19603f3d011682016040523d82523d6000602084013e611218565b606091505b50805160000361123a5760405162461bcd60e51b815260040161052190611a05565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d22565b506001949350505050565b6105db82826040518060200160405280600081525061128683836112af565b6112936000848484611166565b6105c25760405162461bcd60e51b815260040161052190611a05565b6001600160a01b0382166113055760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610521565b6000818152600260205260409020546001600160a01b03161561136a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610521565b6001600160a01b03821660009081526003602052604081208054600192906113939084906119df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146106ad57600080fd5b60006020828403121561141957600080fd5b8135610a8a816113f1565b60005b8381101561143f578181015183820152602001611427565b50506000910152565b60008151808452611460816020860160208601611424565b601f01601f19169290920160200192915050565b602081526000610a8a6020830184611448565b60006020828403121561149957600080fd5b5035919050565b80356001600160a01b03811681146114b757600080fd5b919050565b600080604083850312156114cf57600080fd5b6114d8836114a0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611517576115176114e6565b604051601f8501601f19908116603f0116810190828211818310171561153f5761153f6114e6565b8160405280935085815286868601111561155857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561158457600080fd5b813567ffffffffffffffff81111561159b57600080fd5b8201601f810184136115ac57600080fd5b610d22848235602084016114fc565b6000806000606084860312156115d057600080fd5b6115d9846114a0565b92506115e7602085016114a0565b9150604084013590509250925092565b60006020828403121561160957600080fd5b610a8a826114a0565b6020808252825182820181905260009190848201906040850190845b8181101561164a5783518352928401929184019160010161162e565b50909695505050505050565b6000806040838503121561166957600080fd5b611672836114a0565b91506020830135801515811461168757600080fd5b809150509250929050565b600080600080608085870312156116a857600080fd5b6116b1856114a0565b93506116bf602086016114a0565b925060408501359150606085013567ffffffffffffffff8111156116e257600080fd5b8501601f810187136116f357600080fd5b611702878235602084016114fc565b91505092959194509250565b6000806040838503121561172157600080fd5b61172a836114a0565b9150611738602084016114a0565b90509250929050565b6000806040838503121561175457600080fd5b82359150611738602084016114a0565b600181811c9082168061177857607f821691505b60208210810361179857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105c257600081815260208120601f850160051c810160208610156117c55750805b601f850160051c820191505b818110156117e4578281556001016117d1565b505050505050565b815167ffffffffffffffff811115611806576118066114e6565b61181a816118148454611764565b8461179e565b602080601f83116001811461184f57600084156118375750858301515b600019600386901b1c1916600185901b1785556117e4565b600085815260208120601f198616915b8281101561187e5788860151825594840194600190910190840161185f565b508582101561189c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161193857611938611910565b5060010190565b6000845160206119528285838a01611424565b8551918401916119658184848a01611424565b855492019160009061197681611764565b6001828116801561198e57600181146119a3576119cf565b60ff19841687528215158302870194506119cf565b896000528560002060005b848110156119c7578154898201529083019087016119ae565b505082870194505b50929a9950505050505050505050565b808201808211156103ee576103ee611910565b818103818111156103ee576103ee611910565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611a7c57611a7c611a57565b500490565b600082611a9057611a90611a57565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac890830184611448565b9695505050505050565b600060208284031215611ae457600080fd5b8151610a8a816113f156fea264697066735822122014127ff61f5fe78971830d77780e930e35072170985a200f1cb4bd0dd4eb8d2764736f6c63430008110033
Deployed Bytecode Sourcemap
39488:2706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26235:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26235:305:0;;;;;;;;27162:100;;;:::i;:::-;;;;;;;:::i;28675:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28675:171:0;1533:203:1;28192:417:0;;;;;;:::i;:::-;;:::i;:::-;;41614:108;;;;;;:::i;:::-;;:::i;41834:100::-;;;;;;:::i;:::-;;:::i;41517:89::-;;;:::i;:::-;;;3549:25:1;;;3537:2;3522:18;41517:89:0;3403:177:1;29375:336:0;;;;;;:::i;:::-;;:::i;41942:139::-;;;:::i;29782:185::-;;;;;;:::i;:::-;;:::i;40448:635::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39674:33::-;;;:::i;39641:28::-;;;:::i;26873:222::-;;;;;;:::i;:::-;;:::i;26604:207::-;;;;;;:::i;:::-;;:::i;6771:103::-;;;:::i;41728:100::-;;;;;;:::i;:::-;;:::i;6123:87::-;6196:6;;-1:-1:-1;;;;;6196:6:0;6123:87;;27331:104;;;:::i;28918:155::-;;;;;;:::i;:::-;;:::i;39712:25::-;;;:::i;30038:323::-;;;;;;:::i;:::-;;:::i;41089:422::-;;;;;;:::i;:::-;;:::i;39742:29::-;;;;;;29144:164;;;;;;:::i;:::-;;:::i;40075:155::-;;;;;;:::i;:::-;;:::i;7029:201::-;;;;;;:::i;:::-;;:::i;26235:305::-;26337:4;-1:-1:-1;;;;;;26374:40:0;;-1:-1:-1;;;26374:40:0;;:105;;-1:-1:-1;;;;;;;26431:48:0;;-1:-1:-1;;;26431:48:0;26374:105;:158;;;-1:-1:-1;;;;;;;;;;19086:40:0;;;26496:36;26354:178;26235:305;-1:-1:-1;;26235:305:0:o;27162:100::-;27216:13;27249:5;27242:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27162:100;:::o;28675:171::-;28751:7;28771:23;28786:7;28771:14;:23::i;:::-;-1:-1:-1;28814:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28814:24:0;;28675:171::o;28192:417::-;28273:13;28289:23;28304:7;28289:14;:23::i;:::-;28273:39;;28337:5;-1:-1:-1;;;;;28331:11:0;:2;-1:-1:-1;;;;;28331:11:0;;28323:57;;;;-1:-1:-1;;;28323:57:0;;6881:2:1;28323:57:0;;;6863:21:1;6920:2;6900:18;;;6893:30;6959:34;6939:18;;;6932:62;-1:-1:-1;;;7010:18:1;;;7003:31;7051:19;;28323:57:0;;;;;;;;;4754:10;-1:-1:-1;;;;;28415:21:0;;;;:62;;-1:-1:-1;28440:37:0;28457:5;4754:10;29144:164;:::i;28440:37::-;28393:174;;;;-1:-1:-1;;;28393:174:0;;7283:2:1;28393:174:0;;;7265:21:1;7322:2;7302:18;;;7295:30;7361:34;7341:18;;;7334:62;7432:32;7412:18;;;7405:60;7482:19;;28393:174:0;7081:426:1;28393:174:0;28580:21;28589:2;28593:7;28580:8;:21::i;:::-;28262:347;28192:417;;:::o;41614:108::-;6009:13;:11;:13::i;:::-;41690:11:::1;:26;41704:12:::0;41690:11;:26:::1;:::i;:::-;;41614:108:::0;:::o;41834:100::-;6009:13;:11;:13::i;:::-;41906:9:::1;:22;41918:10:::0;41906:9;:22:::1;:::i;41517:89::-:0;41561:7;41584:16;:6;997:14;;905:114;41584:16;41577:23;;41517:89;:::o;29375:336::-;29570:41;4754:10;29603:7;29570:18;:41::i;:::-;29562:100;;;;-1:-1:-1;;;29562:100:0;;;;;;;:::i;:::-;29675:28;29685:4;29691:2;29695:7;29675:9;:28::i;41942:139::-;6009:13;:11;:13::i;:::-;41989:7:::1;42010;6196:6:::0;;-1:-1:-1;;;;;6196:6:0;;6123:87;42010:7:::1;-1:-1:-1::0;;;;;42002:21:0::1;42031;42002:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41988:69;;;42072:2;42064:11;;;::::0;::::1;;41979:102;41942:139::o:0;29782:185::-;29920:39;29937:4;29943:2;29947:7;29920:39;;;;;;;;;;;;:16;:39::i;40448:635::-;40523:16;40551:23;40577:17;40587:6;40577:9;:17::i;:::-;40551:43;;40601:30;40648:15;40634:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40634:30:0;-1:-1:-1;40601:63:0;-1:-1:-1;40696:1:0;40671:22;40740:309;40765:15;40747;:33;:64;;;;;40802:9;;40784:14;:27;;40747:64;40740:309;;;40822:25;40850:23;40858:14;40850:7;:23::i;:::-;40822:51;;40909:6;-1:-1:-1;;;;;40888:27:0;:17;-1:-1:-1;;;;;40888:27:0;;40884:131;;40961:14;40928:13;40942:15;40928:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40988:17;;;;:::i;:::-;;;;40884:131;41025:16;;;;:::i;:::-;;;;40813:236;40740:309;;;-1:-1:-1;41064:13:0;;40448:635;-1:-1:-1;;;;40448:635:0:o;39674:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39641:28::-;;;;;;;:::i;26873:222::-;26945:7;26981:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26981:16:0;;27008:56;;;;-1:-1:-1;;;27008:56:0;;10947:2:1;27008:56:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:54;11069:18;;27008:56:0;10745:348:1;26604:207:0;26676:7;-1:-1:-1;;;;;26704:19:0;;26696:73;;;;-1:-1:-1;;;26696:73:0;;11300:2:1;26696:73:0;;;11282:21:1;11339:2;11319:18;;;11312:30;11378:34;11358:18;;;11351:62;-1:-1:-1;;;11429:18:1;;;11422:39;11478:19;;26696:73:0;11098:405:1;26696:73:0;-1:-1:-1;;;;;;26787:16:0;;;;;:9;:16;;;;;;;26604:207::o;6771:103::-;6009:13;:11;:13::i;:::-;6836:30:::1;6863:1;6836:18;:30::i;:::-;6771:103::o:0;41728:100::-;6009:13;:11;:13::i;:::-;41800:9:::1;:22;41812:10:::0;41800:9;:22:::1;:::i;27331:104::-:0;27387:13;27420:7;27413:14;;;;;:::i;28918:155::-;29013:52;4754:10;29046:8;29056;29013:18;:52::i;39712:25::-;;;;;;;:::i;30038:323::-;30212:41;4754:10;30245:7;30212:18;:41::i;:::-;30204:100;;;;-1:-1:-1;;;30204:100:0;;;;;;;:::i;:::-;30315:38;30329:4;30335:2;30339:7;30348:4;30315:13;:38::i;:::-;30038:323;;;;:::o;41089:422::-;31933:4;31957:16;;;:7;:16;;;;;;41188:13;;-1:-1:-1;;;;;31957:16:0;41213:98;;;;-1:-1:-1;;;41213:98:0;;11710:2:1;41213:98:0;;;11692:21:1;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:45;11894:19;;41213:98:0;11508:411:1;41213:98:0;41320:28;41351:10;:8;:10::i;:::-;41320:41;;41406:1;41381:14;41375:28;:32;:130;;;;;;;;;;;;;;;;;41443:14;41459:19;:8;:17;:19::i;:::-;41480:9;41426:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41375:130;41368:137;41089:422;-1:-1:-1;;;41089:422:0:o;29144:164::-;-1:-1:-1;;;;;29265:25:0;;;29241:4;29265:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29144:164::o;40075:155::-;40161:11;40006:9;;39991:11;39972:16;:6;997:14;;905:114;39972:16;:30;;;;:::i;:::-;:43;;39964:76;;;;-1:-1:-1;;;39964:76:0;;13517:2:1;39964:76:0;;;13499:21:1;13556:2;13536:18;;;13529:30;-1:-1:-1;;;13575:18:1;;;13568:50;13635:18;;39964:76:0;13315:344:1;39964:76:0;6009:13:::1;:11;:13::i;:::-;40191:33:::2;40201:9;40212:11;40191:9;:33::i;7029:201::-:0;6009:13;:11;:13::i;:::-;-1:-1:-1;;;;;7118:22:0;::::1;7110:73;;;::::0;-1:-1:-1;;;7110:73:0;;13866:2:1;7110:73:0::1;::::0;::::1;13848:21:1::0;13905:2;13885:18;;;13878:30;13944:34;13924:18;;;13917:62;-1:-1:-1;;;13995:18:1;;;13988:36;14041:19;;7110:73:0::1;13664:402:1::0;7110:73:0::1;7194:28;7213:8;7194:18;:28::i;36650:135::-:0;31933:4;31957:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31957:16:0;36724:53;;;;-1:-1:-1;;;36724:53:0;;10947:2:1;36724:53:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:54;11069:18;;36724:53:0;10745:348:1;35929:174:0;36004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36004:29:0;-1:-1:-1;;;;;36004:29:0;;;;;;;;:24;;36058:23;36004:24;36058:14;:23::i;:::-;-1:-1:-1;;;;;36049:46:0;;;;;;;;;;;35929:174;;:::o;6288:132::-;6196:6;;-1:-1:-1;;;;;6196:6:0;4754:10;6352:23;6344:68;;;;-1:-1:-1;;;6344:68:0;;14273:2:1;6344:68:0;;;14255:21:1;;;14292:18;;;14285:30;14351:34;14331:18;;;14324:62;14403:18;;6344:68:0;14071:356:1;32162:264:0;32255:4;32272:13;32288:23;32303:7;32288:14;:23::i;:::-;32272:39;;32341:5;-1:-1:-1;;;;;32330:16:0;:7;-1:-1:-1;;;;;32330:16:0;;:52;;;;32350:32;32367:5;32374:7;32350:16;:32::i;:::-;32330:87;;;;32410:7;-1:-1:-1;;;;;32386:31:0;:20;32398:7;32386:11;:20::i;:::-;-1:-1:-1;;;;;32386:31:0;;32330:87;32322:96;32162:264;-1:-1:-1;;;;32162:264:0:o;35185:625::-;35344:4;-1:-1:-1;;;;;35317:31:0;:23;35332:7;35317:14;:23::i;:::-;-1:-1:-1;;;;;35317:31:0;;35309:81;;;;-1:-1:-1;;;35309:81:0;;14634:2:1;35309:81:0;;;14616:21:1;14673:2;14653:18;;;14646:30;14712:34;14692:18;;;14685:62;-1:-1:-1;;;14763:18:1;;;14756:35;14808:19;;35309:81:0;14432:401:1;35309:81:0;-1:-1:-1;;;;;35409:16:0;;35401:65;;;;-1:-1:-1;;;35401:65:0;;15040:2:1;35401:65:0;;;15022:21:1;15079:2;15059:18;;;15052:30;15118:34;15098:18;;;15091:62;-1:-1:-1;;;15169:18:1;;;15162:34;15213:19;;35401:65:0;14838:400:1;35401:65:0;35583:29;35600:1;35604:7;35583:8;:29::i;:::-;-1:-1:-1;;;;;35625:15:0;;;;;;:9;:15;;;;;:20;;35644:1;;35625:15;:20;;35644:1;;35625:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35656:13:0;;;;;;:9;:13;;;;;:18;;35673:1;;35656:13;:18;;35673:1;;35656:18;:::i;:::-;;;;-1:-1:-1;;35685:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35685:21:0;-1:-1:-1;;;;;35685:21:0;;;;;;;;;35724:27;;35685:16;;35724:27;;;;;;;28262:347;28192:417;;:::o;7390:191::-;7483:6;;;-1:-1:-1;;;;;7500:17:0;;;-1:-1:-1;;;;;;7500:17:0;;;;;;;7533:40;;7483:6;;;7500:17;7483:6;;7533:40;;7464:16;;7533:40;7453:128;7390:191;:::o;36246:315::-;36401:8;-1:-1:-1;;;;;36392:17:0;:5;-1:-1:-1;;;;;36392:17:0;;36384:55;;;;-1:-1:-1;;;36384:55:0;;15578:2:1;36384:55:0;;;15560:21:1;15617:2;15597:18;;;15590:30;15656:27;15636:18;;;15629:55;15701:18;;36384:55:0;15376:349:1;36384:55:0;-1:-1:-1;;;;;36450:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36450:46:0;;;;;;;;;;36512:41;;540::1;;;36512::0;;513:18:1;36512:41:0;;;;;;;36246:315;;;:::o;31242:313::-;31398:28;31408:4;31414:2;31418:7;31398:9;:28::i;:::-;31445:47;31468:4;31474:2;31478:7;31487:4;31445:22;:47::i;:::-;31437:110;;;;-1:-1:-1;;;31437:110:0;;;;;;;:::i;42087:104::-;42147:13;42176:9;42169:16;;;;;:::i;1928:723::-;1984:13;2205:5;2214:1;2205:10;2201:53;;-1:-1:-1;;2232:10:0;;;;;;;;;;;;-1:-1:-1;;;2232:10:0;;;;;1928:723::o;2201:53::-;2279:5;2264:12;2320:78;2327:9;;2320:78;;2353:8;;;;:::i;:::-;;-1:-1:-1;2376:10:0;;-1:-1:-1;2384:2:0;2376:10;;:::i;:::-;;;2320:78;;;2408:19;2440:6;2430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2430:17:0;;2408:39;;2458:154;2465:10;;2458:154;;2492:11;2502:1;2492:11;;:::i;:::-;;-1:-1:-1;2561:10:0;2569:2;2561:5;:10;:::i;:::-;2548:24;;:2;:24;:::i;:::-;2535:39;;2518:6;2525;2518:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2518:56:0;;;;;;;;-1:-1:-1;2589:11:0;2598:2;2589:11;;:::i;:::-;;;2458:154;;40236:204;40316:9;40311:124;40335:11;40331:1;:15;40311:124;;;40362:18;:6;1116:19;;1134:1;1116:19;;;1027:127;40362:18;40389:38;40399:9;40410:16;:6;997:14;;905:114;40410:16;40389:9;:38::i;:::-;40348:3;;;;:::i;:::-;;;;40311:124;;37349:853;37503:4;-1:-1:-1;;;;;37524:13:0;;9116:19;:23;37520:675;;37560:71;;-1:-1:-1;;;37560:71:0;;-1:-1:-1;;;;;37560:36:0;;;;;:71;;4754:10;;37611:4;;37617:7;;37626:4;;37560:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37560:71:0;;;;;;;;-1:-1:-1;;37560:71:0;;;;;;;;;;;;:::i;:::-;;;37556:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37801:6;:13;37818:1;37801:18;37797:328;;37844:60;;-1:-1:-1;;;37844:60:0;;;;;;;:::i;37797:328::-;38075:6;38069:13;38060:6;38056:2;38052:15;38045:38;37556:584;-1:-1:-1;;;;;;37682:51:0;-1:-1:-1;;;37682:51:0;;-1:-1:-1;37675:58:0;;37520:675;-1:-1:-1;38179:4:0;37349:853;;;;;;:::o;32768:110::-;32844:26;32854:2;32858:7;32844:26;;;;;;;;;;;;33234:18;33240:2;33244:7;33234:5;:18::i;:::-;33285:53;33316:1;33320:2;33324:7;33333:4;33285:22;:53::i;:::-;33263:153;;;;-1:-1:-1;;;33263:153:0;;;;;;;:::i;33760:439::-;-1:-1:-1;;;;;33840:16:0;;33832:61;;;;-1:-1:-1;;;33832:61:0;;17473:2:1;33832:61:0;;;17455:21:1;;;17492:18;;;17485:30;17551:34;17531:18;;;17524:62;17603:18;;33832:61:0;17271:356:1;33832:61:0;31933:4;31957:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31957:16:0;:30;33904:58;;;;-1:-1:-1;;;33904:58:0;;17834:2:1;33904:58:0;;;17816:21:1;17873:2;17853:18;;;17846:30;17912;17892:18;;;17885:58;17960:18;;33904:58:0;17632:352:1;33904:58:0;-1:-1:-1;;;;;34033:13:0;;;;;;:9;:13;;;;;:18;;34050:1;;34033:13;:18;;34050:1;;34033:18;:::i;:::-;;;;-1:-1:-1;;34062:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34062:21:0;-1:-1:-1;;;;;34062:21:0;;;;;;;;34101:33;;34062:16;;;34101:33;;34062:16;;34101:33;41690:26:::1;41614:108:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:632;2375:5;2405:18;2446:2;2438:6;2435:14;2432:40;;;2452:18;;:::i;:::-;2527:2;2521:9;2495:2;2581:15;;-1:-1:-1;;2577:24:1;;;2603:2;2573:33;2569:42;2557:55;;;2627:18;;;2647:22;;;2624:46;2621:72;;;2673:18;;:::i;:::-;2713:10;2709:2;2702:22;2742:6;2733:15;;2772:6;2764;2757:22;2812:3;2803:6;2798:3;2794:16;2791:25;2788:45;;;2829:1;2826;2819:12;2788:45;2879:6;2874:3;2867:4;2859:6;2855:17;2842:44;2934:1;2927:4;2918:6;2910;2906:19;2902:30;2895:41;;;;2310:632;;;;;:::o;2947:451::-;3016:6;3069:2;3057:9;3048:7;3044:23;3040:32;3037:52;;;3085:1;3082;3075:12;3037:52;3125:9;3112:23;3158:18;3150:6;3147:30;3144:50;;;3190:1;3187;3180:12;3144:50;3213:22;;3266:4;3258:13;;3254:27;-1:-1:-1;3244:55:1;;3295:1;3292;3285:12;3244:55;3318:74;3384:7;3379:2;3366:16;3361:2;3357;3353:11;3318:74;:::i;3585:328::-;3662:6;3670;3678;3731:2;3719:9;3710:7;3706:23;3702:32;3699:52;;;3747:1;3744;3737:12;3699:52;3770:29;3789:9;3770:29;:::i;:::-;3760:39;;3818:38;3852:2;3841:9;3837:18;3818:38;:::i;:::-;3808:48;;3903:2;3892:9;3888:18;3875:32;3865:42;;3585:328;;;;;:::o;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:632::-;4280:2;4332:21;;;4402:13;;4305:18;;;4424:22;;;4251:4;;4280:2;4503:15;;;;4477:2;4462:18;;;4251:4;4546:169;4560:6;4557:1;4554:13;4546:169;;;4621:13;;4609:26;;4690:15;;;;4655:12;;;;4582:1;4575:9;4546:169;;;-1:-1:-1;4732:3:1;;4109:632;-1:-1:-1;;;;;;4109:632:1:o;4746:347::-;4811:6;4819;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;4911:29;4930:9;4911:29;:::i;:::-;4901:39;;4990:2;4979:9;4975:18;4962:32;5037:5;5030:13;5023:21;5016:5;5013:32;5003:60;;5059:1;5056;5049:12;5003:60;5082:5;5072:15;;;4746:347;;;;;:::o;5098:667::-;5193:6;5201;5209;5217;5270:3;5258:9;5249:7;5245:23;5241:33;5238:53;;;5287:1;5284;5277:12;5238:53;5310:29;5329:9;5310:29;:::i;:::-;5300:39;;5358:38;5392:2;5381:9;5377:18;5358:38;:::i;:::-;5348:48;;5443:2;5432:9;5428:18;5415:32;5405:42;;5498:2;5487:9;5483:18;5470:32;5525:18;5517:6;5514:30;5511:50;;;5557:1;5554;5547:12;5511:50;5580:22;;5633:4;5625:13;;5621:27;-1:-1:-1;5611:55:1;;5662:1;5659;5652:12;5611:55;5685:74;5751:7;5746:2;5733:16;5728:2;5724;5720:11;5685:74;:::i;:::-;5675:84;;;5098:667;;;;;;;:::o;5770:260::-;5838:6;5846;5899:2;5887:9;5878:7;5874:23;5870:32;5867:52;;;5915:1;5912;5905:12;5867:52;5938:29;5957:9;5938:29;:::i;:::-;5928:39;;5986:38;6020:2;6009:9;6005:18;5986:38;:::i;:::-;5976:48;;5770:260;;;;;:::o;6035:254::-;6103:6;6111;6164:2;6152:9;6143:7;6139:23;6135:32;6132:52;;;6180:1;6177;6170:12;6132:52;6216:9;6203:23;6193:33;;6245:38;6279:2;6268:9;6264:18;6245:38;:::i;6294:380::-;6373:1;6369:12;;;;6416;;;6437:61;;6491:4;6483:6;6479:17;6469:27;;6437:61;6544:2;6536:6;6533:14;6513:18;6510:38;6507:161;;6590:10;6585:3;6581:20;6578:1;6571:31;6625:4;6622:1;6615:15;6653:4;6650:1;6643:15;6507:161;;6294:380;;;:::o;7638:545::-;7740:2;7735:3;7732:11;7729:448;;;7776:1;7801:5;7797:2;7790:17;7846:4;7842:2;7832:19;7916:2;7904:10;7900:19;7897:1;7893:27;7887:4;7883:38;7952:4;7940:10;7937:20;7934:47;;;-1:-1:-1;7975:4:1;7934:47;8030:2;8025:3;8021:12;8018:1;8014:20;8008:4;8004:31;7994:41;;8085:82;8103:2;8096:5;8093:13;8085:82;;;8148:17;;;8129:1;8118:13;8085:82;;;8089:3;;;7638:545;;;:::o;8359:1352::-;8485:3;8479:10;8512:18;8504:6;8501:30;8498:56;;;8534:18;;:::i;:::-;8563:97;8653:6;8613:38;8645:4;8639:11;8613:38;:::i;:::-;8607:4;8563:97;:::i;:::-;8715:4;;8779:2;8768:14;;8796:1;8791:663;;;;9498:1;9515:6;9512:89;;;-1:-1:-1;9567:19:1;;;9561:26;9512:89;-1:-1:-1;;8316:1:1;8312:11;;;8308:24;8304:29;8294:40;8340:1;8336:11;;;8291:57;9614:81;;8761:944;;8791:663;7585:1;7578:14;;;7622:4;7609:18;;-1:-1:-1;;8827:20:1;;;8945:236;8959:7;8956:1;8953:14;8945:236;;;9048:19;;;9042:26;9027:42;;9140:27;;;;9108:1;9096:14;;;;8975:19;;8945:236;;;8949:3;9209:6;9200:7;9197:19;9194:201;;;9270:19;;;9264:26;-1:-1:-1;;9353:1:1;9349:14;;;9365:3;9345:24;9341:37;9337:42;9322:58;9307:74;;9194:201;-1:-1:-1;;;;;9441:1:1;9425:14;;;9421:22;9408:36;;-1:-1:-1;8359:1352:1:o;9716:410::-;9918:2;9900:21;;;9957:2;9937:18;;;9930:30;9996:34;9991:2;9976:18;;9969:62;-1:-1:-1;;;10062:2:1;10047:18;;10040:44;10116:3;10101:19;;9716:410::o;10341:127::-;10402:10;10397:3;10393:20;10390:1;10383:31;10433:4;10430:1;10423:15;10457:4;10454:1;10447:15;10473:127;10534:10;10529:3;10525:20;10522:1;10515:31;10565:4;10562:1;10555:15;10589:4;10586:1;10579:15;10605:135;10644:3;10665:17;;;10662:43;;10685:18;;:::i;:::-;-1:-1:-1;10732:1:1;10721:13;;10605:135::o;11924:1256::-;12148:3;12186:6;12180:13;12212:4;12225:64;12282:6;12277:3;12272:2;12264:6;12260:15;12225:64;:::i;:::-;12352:13;;12311:16;;;;12374:68;12352:13;12311:16;12409:15;;;12374:68;:::i;:::-;12531:13;;12464:20;;;12504:1;;12569:36;12531:13;12569:36;:::i;:::-;12624:1;12641:18;;;12668:141;;;;12823:1;12818:337;;;;12634:521;;12668:141;-1:-1:-1;;12703:24:1;;12689:39;;12780:16;;12773:24;12759:39;;12748:51;;;-1:-1:-1;12668:141:1;;12818:337;12849:6;12846:1;12839:17;12897:2;12894:1;12884:16;12922:1;12936:169;12950:8;12947:1;12944:15;12936:169;;;13032:14;;13017:13;;;13010:37;13075:16;;;;12967:10;;12936:169;;;12940:3;;13136:8;13129:5;13125:20;13118:27;;12634:521;-1:-1:-1;13171:3:1;;11924:1256;-1:-1:-1;;;;;;;;;;11924:1256:1:o;13185:125::-;13250:9;;;13271:10;;;13268:36;;;13284:18;;:::i;15243:128::-;15310:9;;;15331:11;;;15328:37;;;15345:18;;:::i;15730:414::-;15932:2;15914:21;;;15971:2;15951:18;;;15944:30;16010:34;16005:2;15990:18;;15983:62;-1:-1:-1;;;16076:2:1;16061:18;;16054:48;16134:3;16119:19;;15730:414::o;16149:127::-;16210:10;16205:3;16201:20;16198:1;16191:31;16241:4;16238:1;16231:15;16265:4;16262:1;16255:15;16281:120;16321:1;16347;16337:35;;16352:18;;:::i;:::-;-1:-1:-1;16386:9:1;;16281:120::o;16406:112::-;16438:1;16464;16454:35;;16469:18;;:::i;:::-;-1:-1:-1;16503:9:1;;16406:112::o;16523:489::-;-1:-1:-1;;;;;16792:15:1;;;16774:34;;16844:15;;16839:2;16824:18;;16817:43;16891:2;16876:18;;16869:34;;;16939:3;16934:2;16919:18;;16912:31;;;16717:4;;16960:46;;16986:19;;16978:6;16960:46;:::i;:::-;16952:54;16523:489;-1:-1:-1;;;;;;16523:489:1:o;17017:249::-;17086:6;17139:2;17127:9;17118:7;17114:23;17110:32;17107:52;;;17155:1;17152;17145:12;17107:52;17187:9;17181:16;17206:30;17230:5;17206:30;:::i
Swarm Source
ipfs://14127ff61f5fe78971830d77780e930e35072170985a200f1cb4bd0dd4eb8d27
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.