ERC-721
Overview
Max Total Supply
723 DID
Holders
600
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DIDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BaseRegistrarImplementation
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "../registry/DID.sol"; import "./IBaseRegistrar.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract BaseRegistrarImplementation is ERC721, IERC721Enumerable, IBaseRegistrar, Ownable { // A map of expiry times mapping(uint256=>uint) expiries; // The DID registry DID public did; // The namehash of the TLD this registrar owns (eg, .eth) bytes32 public baseNode; // A map of addresses that are authorised to register and renew names. mapping(address => bool) public controllers; uint256 public constant GRACE_PERIOD = 90 days; bytes4 constant private INTERFACE_META_ID = bytes4(keccak256("supportsInterface(bytes4)")); bytes4 constant private ERC721_ID = bytes4( keccak256("balanceOf(address)") ^ keccak256("ownerOf(uint256)") ^ keccak256("approve(address,uint256)") ^ keccak256("getApproved(uint256)") ^ keccak256("setApprovalForAll(address,bool)") ^ keccak256("isApprovedForAll(address,address)") ^ keccak256("transferFrom(address,address,uint256)") ^ keccak256("safeTransferFrom(address,address,uint256)") ^ keccak256("safeTransferFrom(address,address,uint256,bytes)") ); bytes4 constant private RECLAIM_ID = bytes4(keccak256("reclaim(uint256,address)")); string public baseUri; string constant INVALID_INDEX = "005007"; uint256[] internal tokens; mapping(uint256 => uint256) internal idToIndex; mapping(address => uint256[]) internal ownerToIds; /** * v2.1.3 version of _isApprovedOrOwner which calls ownerOf(tokenId) and takes grace period into condideration instead of ERC721.ownerOf(tokenId); * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.1.3/contracts/token/ERC721/ERC721.sol#L187 * @dev Returns whether the given spender can transfer a given token ID * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view override returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } constructor(DID _did, bytes32 _baseNode) ERC721("DEGEN ID","DID") { did = _did; baseNode = _baseNode; } modifier live { require(did.owner(baseNode) == address(this)); _; } modifier onlyController { require(controllers[msg.sender]); _; } function totalSupply() external override view returns (uint256) { return tokens.length; } function tokenByIndex( uint256 _index ) external override view returns (uint256) { require(_index < tokens.length, INVALID_INDEX); return tokens[_index]; } function tokenOfOwnerByIndex( address _owner, uint256 _index ) external override view returns (uint256) { require(_index < ownerToIds[_owner].length, INVALID_INDEX); return ownerToIds[_owner][_index]; } function _mint( address _to, uint256 _tokenId ) internal override virtual { super._mint(_to, _tokenId); tokens.push(_tokenId); idToIndex[_tokenId] = tokens.length - 1; } function _burn( uint256 _tokenId ) internal override virtual { super._burn(_tokenId); uint256 tokenIndex = idToIndex[_tokenId]; uint256 lastTokenIndex = tokens.length - 1; uint256 lastToken = tokens[lastTokenIndex]; tokens[tokenIndex] = lastToken; tokens.pop(); // This wastes gas if you are burning the last token but saves a little gas if you are not. idToIndex[lastToken] = tokenIndex; idToIndex[_tokenId] = 0; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override(ERC721, IERC721) { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not approved or owner" ); _transfer(from, to, tokenId); did.setSubnodeOwner(baseNode, bytes32(tokenId), to); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override(ERC721, IERC721) { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not approved or owner" ); _safeTransfer(from, to, tokenId, _data); did.setSubnodeOwner(baseNode, bytes32(tokenId), to); } /** * @dev Gets the owner of the specified token ID. Names become unowned * when their registration expires. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view override(IERC721, ERC721) returns (address) { require(expiries[tokenId] > block.timestamp); return super.ownerOf(tokenId); } // Authorises a controller, who can register and renew domains. function addController(address controller) external override onlyOwner { require(controller != address(0), "address can not be zero!"); controllers[controller] = true; emit ControllerAdded(controller); } // Revoke controller permission for an address. function removeController(address controller) external override onlyOwner { require(controller != address(0), "address can not be zero!"); controllers[controller] = false; emit ControllerRemoved(controller); } // Set the resolver for the TLD this registrar manages. function setResolver(address resolver) external override onlyOwner { did.setResolver(baseNode, resolver); } // Returns the expiration timestamp of the specified id. function nameExpires(uint256 id) public view override returns(uint) { return expiries[id]; } // Returns true iff the specified name is available for registration. function available(uint256 id) public view override returns(bool) { return expiries[id] + GRACE_PERIOD < block.timestamp; } /** * @dev Register a name. * @param id The token ID (keccak256 of the label). * @param owner The address that should own the registration. * @param duration Duration in seconds for the registration. */ function register(uint256 id, address owner, uint duration) external override returns(uint) { return _register(id, owner, duration, true); } /** * @dev Register a name, without modifying the registry. * @param id The token ID (keccak256 of the label). * @param owner The address that should own the registration. * @param duration Duration in seconds for the registration. */ function registerOnly(uint256 id, address owner, uint duration) external returns(uint) { return _register(id, owner, duration, false); } function _register(uint256 id, address owner, uint duration, bool updateRegistry) internal live onlyController returns(uint) { require(available(id)); require(block.timestamp + duration + GRACE_PERIOD > block.timestamp + GRACE_PERIOD); // Prevent future overflow expiries[id] = block.timestamp + duration; if(_exists(id)) { // Name was previously owned, and expired _burn(id); } _mint(owner, id); if(updateRegistry) { did.setSubnodeOwner(baseNode, bytes32(id), owner); } emit NameRegistered(id, owner, block.timestamp + duration); return block.timestamp + duration; } function renew(uint256 id, uint duration) external override live onlyController returns(uint) { require(expiries[id] + GRACE_PERIOD >= block.timestamp); // Name must be registered here or in grace period require(expiries[id] + duration + GRACE_PERIOD > duration + GRACE_PERIOD); // Prevent future overflow expiries[id] += duration; emit NameRenewed(id, expiries[id]); return expiries[id]; } /** * @dev Reclaim ownership of a name in DID, if you own it in the registrar. */ function reclaim(uint256 id, address owner) external override live { require(_isApprovedOrOwner(msg.sender, id)); did.setSubnodeOwner(baseNode, bytes32(id), owner); } function supportsInterface(bytes4 interfaceID) public override(ERC721, IERC165) pure returns (bool) { return interfaceID == INTERFACE_META_ID || interfaceID == ERC721_ID || interfaceID == RECLAIM_ID; } /** * PRIVILEGED MODULE FUNCTION. Sets a new baseURI for all token types. */ function setURI(string memory newURI) external onlyOwner { baseUri = newURI; } function tokenURI(uint256 tokenId) public view 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, Strings.toString(tokenId))) : ""; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface DID { // Logged when the owner of a node assigns a new owner to a subnode. event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner); // Logged when the owner of a node transfers ownership to a new account. event Transfer(bytes32 indexed node, address owner); // Logged when the resolver for a node changes. event NewResolver(bytes32 indexed node, address resolver); // Logged when the TTL of a node changes event NewTTL(bytes32 indexed node, uint64 ttl); // Logged when an operator is added or removed. event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); function setRecord( bytes32 node, address owner, address resolver, uint64 ttl ) external; function setSubnodeRecord( bytes32 node, bytes32 label, address owner, address resolver, uint64 ttl ) external; function setSubnodeOwner( bytes32 node, bytes32 label, address owner ) external returns (bytes32); function setResolver(bytes32 node, address resolver) external; function setOwner(bytes32 node, address owner) external; function setTTL(bytes32 node, uint64 ttl) external; function setApprovalForAll(address operator, bool approved) external; function owner(bytes32 node) external view returns (address); function resolver(bytes32 node) external view returns (address); function ttl(bytes32 node) external view returns (uint64); function recordExists(bytes32 node) external view returns (bool); function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "../registry/DID.sol"; import "./IBaseRegistrar.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IBaseRegistrar is IERC721 { event ControllerAdded(address indexed controller); event ControllerRemoved(address indexed controller); event NameMigrated( uint256 indexed id, address indexed owner, uint256 expires ); event NameRegistered( uint256 indexed id, address indexed owner, uint256 expires ); event NameRenewed(uint256 indexed id, uint256 expires); // Authorises a controller, who can register and renew domains. function addController(address controller) external; // Revoke controller permission for an address. function removeController(address controller) external; // Set the resolver for the TLD this registrar manages. function setResolver(address resolver) external; // Returns the expiration timestamp of the specified label hash. function nameExpires(uint256 id) external view returns (uint256); // Returns true iff the specified name is available for registration. function available(uint256 id) external view returns (bool); /** * @dev Register a name. */ function register( uint256 id, address owner, uint256 duration ) external returns (uint256); function renew(uint256 id, uint256 duration) external returns (uint256); /** * @dev Reclaim ownership of a name in DID, if you own it in the registrar. */ function reclaim(uint256 id, address owner) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract DID","name":"_did","type":"address"},{"internalType":"bytes32","name":"_baseNode","type":"bytes32"}],"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":"controller","type":"address"}],"name":"ControllerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"controller","type":"address"}],"name":"ControllerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameRenewed","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":"GRACE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"available","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseNode","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"controllers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"did","outputs":[{"internalType":"contract DID","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"nameExpires","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":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"reclaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"register","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"registerOnly","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"renew","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"address","name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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
60806040523480156200001157600080fd5b506040516200268d3803806200268d8339810160408190526200003491620001d8565b6040805180820182526008815267111151d15388125160c21b60208083019182528351808501909452600384526211125160ea1b9084015281519192916200007f9160009162000132565b5080516200009590600190602084019062000132565b505050620000b2620000ac620000dc60201b60201c565b620000e0565b600880546001600160a01b0319166001600160a01b03939093169290921790915560095562000251565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001409062000214565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b60008060408385031215620001ec57600080fd5b82516001600160a01b03811681146200020457600080fd5b6020939093015192949293505050565b600181811c908216806200022957607f821691505b602082108114156200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b61242c80620002616000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806395d89b411161011a578063c87b56dd116100ad578063e6fcc84b1161007c578063e6fcc84b1461044d578063e985e9c514610460578063f2fde38b1461049c578063f6a74ed7146104af578063fca247ac146104c257600080fd5b8063c87b56dd146103ee578063d6e4fa8614610401578063da8c229e14610421578063ddf7fcb01461044457600080fd5b8063a7fc7a07116100e9578063a7fc7a07146103ab578063b88d4fde146103be578063c1a287e2146103d1578063c475abff146103db57600080fd5b806395d89b411461037557806396e494e81461037d5780639abc832014610390578063a22cb4651461039857600080fd5b806328ed4f6c1161019d5780634f6ccce71161016c5780634f6ccce7146103235780636352211e1461033657806370a0823114610349578063715018a61461035c5780638da5cb5b1461036457600080fd5b806328ed4f6c146102d75780632f745c59146102ea57806342842e0e146102fd5780634e543b261461031057600080fd5b8063095ea7b3116101d9578063095ea7b3146102885780630e297b451461029b57806318160ddd146102bc57806323b872dd146102c457600080fd5b806301ffc9a71461020b57806302fe53051461023357806306fdde0314610248578063081812fc1461025d575b600080fd5b61021e610219366004611e2a565b6104d5565b60405190151581526020015b60405180910390f35b610246610241366004611ed3565b610527565b005b610250610546565b60405161022a9190611f74565b61027061026b366004611f87565b6105d8565b6040516001600160a01b03909116815260200161022a565b610246610296366004611fb5565b6105ff565b6102ae6102a9366004611fe1565b61071a565b60405190815260200161022a565b600c546102ae565b6102466102d2366004612019565b610731565b6102466102e5366004612049565b6107ea565b6102ae6102f8366004611fb5565b610903565b61024661030b366004612019565b61099a565b61024661031e366004612079565b6109b5565b6102ae610331366004611f87565b610a2a565b610270610344366004611f87565b610a92565b6102ae610357366004612079565b610ab5565b610246610b3b565b6006546001600160a01b0316610270565b610250610b4f565b61021e61038b366004611f87565b610b5e565b610250610b84565b6102466103a6366004612096565b610c12565b6102466103b9366004612079565b610c1d565b6102466103cc3660046120c9565b610cc2565b6102ae6276a70081565b6102ae6103e9366004612149565b610d76565b6102506103fc366004611f87565b610f07565b6102ae61040f366004611f87565b60009081526007602052604090205490565b61021e61042f366004612079565b600a6020526000908152604090205460ff1681565b6102ae60095481565b600854610270906001600160a01b031681565b61021e61046e36600461216b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102466104aa366004612079565b611065565b6102466104bd366004612079565b6110de565b6102ae6104d0366004611fe1565b611180565b60006001600160e01b031982166301ffc9a760e01b148061050657506001600160e01b031982166380ac58cd60e01b145b8061052157506001600160e01b03198216630a3b53db60e21b145b92915050565b61052f61118f565b805161054290600b906020840190611d7b565b5050565b60606000805461055590612199565b80601f016020809104026020016040519081016040528092919081815260200182805461058190612199565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e3826111e9565b506000908152600460205260409020546001600160a01b031690565b600061060a82611248565b9050806001600160a01b0316836001600160a01b0316141561067d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106995750610699813361046e565b61070b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610674565b61071583836112a8565b505050565b60006107298484846000611316565b949350505050565b61073b3382611526565b6107575760405162461bcd60e51b8152600401610674906121d4565b6107628383836115a1565b6008546009546040516306ab592360e01b81526004810191909152602481018390526001600160a01b038481166044830152909116906306ab5923906064016020604051808303816000875af11580156107c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e4919061221b565b50505050565b6008546009546040516302571be360e01b8152600481019190915230916001600160a01b0316906302571be390602401602060405180830381865afa158015610837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085b9190612234565b6001600160a01b03161461086e57600080fd5b6108783383611526565b61088157600080fd5b6008546009546040516306ab592360e01b81526004810191909152602481018490526001600160a01b038381166044830152909116906306ab5923906064016020604051808303816000875af11580156108df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610715919061221b565b6001600160a01b0382166000908152600e60209081526040808320548151808301909252600682526530303530303760d01b9282019290925290831061095c5760405162461bcd60e51b81526004016106749190611f74565b506001600160a01b0383166000908152600e6020526040902080548390811061098757610987612251565b9060005260206000200154905092915050565b61071583838360405180602001604052806000815250610cc2565b6109bd61118f565b600854600954604051630c4b7b8560e11b815260048101919091526001600160a01b03838116602483015290911690631896f70a90604401600060405180830381600087803b158015610a0f57600080fd5b505af1158015610a23573d6000803e3d6000fd5b5050505050565b600c5460408051808201909152600681526530303530303760d01b60208201526000918310610a6c5760405162461bcd60e51b81526004016106749190611f74565b50600c8281548110610a8057610a80612251565b90600052602060002001549050919050565b6000818152600760205260408120544210610aac57600080fd5b61052182611248565b60006001600160a01b038216610b1f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610674565b506001600160a01b031660009081526003602052604090205490565b610b4361118f565b610b4d600061173d565b565b60606001805461055590612199565b6000818152600760205260408120544290610b7d906276a7009061227d565b1092915050565b600b8054610b9190612199565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90612199565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b61054233838361178f565b610c2561118f565b6001600160a01b038116610c765760405162461bcd60e51b8152602060048201526018602482015277616464726573732063616e206e6f74206265207a65726f2160401b6044820152606401610674565b6001600160a01b0381166000818152600a6020526040808220805460ff19166001179055517f0a8bb31534c0ed46f380cb867bd5c803a189ced9a764e30b3a4991a9901d74749190a250565b610ccc3383611526565b610ce85760405162461bcd60e51b8152600401610674906121d4565b610cf48484848461185e565b6008546009546040516306ab592360e01b81526004810191909152602481018490526001600160a01b038581166044830152909116906306ab5923906064016020604051808303816000875af1158015610d52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a23919061221b565b6008546009546040516302571be360e01b8152600481019190915260009130916001600160a01b03909116906302571be390602401602060405180830381865afa158015610dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dec9190612234565b6001600160a01b031614610dff57600080fd5b336000908152600a602052604090205460ff16610e1b57600080fd5b6000838152600760205260409020544290610e3a906276a7009061227d565b1015610e4557600080fd5b610e526276a7008361227d565b6000848152600760205260409020546276a70090610e7190859061227d565b610e7b919061227d565b11610e8557600080fd5b60008381526007602052604081208054849290610ea390849061227d565b90915550506000838152600760205260409081902054905184917f9b87a00e30f1ac65d898f070f8a3488fe60517182d0a2098e1b4b93a54aa9bd691610eeb91815260200190565b60405180910390a2505060009081526007602052604090205490565b6000818152600260205260409020546060906001600160a01b0316610f865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610674565b6000600b8054610f9590612199565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc190612199565b801561100e5780601f10610fe35761010080835404028352916020019161100e565b820191906000526020600020905b815481529060010190602001808311610ff157829003601f168201915b505050505090506000815111611033576040518060200160405280600081525061105e565b8061103d84611891565b60405160200161104e929190612295565b6040516020818303038152906040525b9392505050565b61106d61118f565b6001600160a01b0381166110d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6110db8161173d565b50565b6110e661118f565b6001600160a01b0381166111375760405162461bcd60e51b8152602060048201526018602482015277616464726573732063616e206e6f74206265207a65726f2160401b6044820152606401610674565b6001600160a01b0381166000818152600a6020526040808220805460ff19169055517f33d83959be2573f5453b12eb9d43b3499bc57d96bd2f067ba44803c859e811139190a250565b60006107298484846001611316565b6006546001600160a01b03163314610b4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610674565b6000818152600260205260409020546001600160a01b03166110db5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610674565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610674565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112dd82611248565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546009546040516302571be360e01b8152600481019190915260009130916001600160a01b03909116906302571be390602401602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c9190612234565b6001600160a01b03161461139f57600080fd5b336000908152600a602052604090205460ff166113bb57600080fd5b6113c485610b5e565b6113cd57600080fd5b6113da6276a7004261227d565b6276a7006113e8854261227d565b6113f2919061227d565b116113fc57600080fd5b611406834261227d565b6000868152600760209081526040808320939093556002905220546001600160a01b031615611438576114388561198f565b6114428486611a43565b81156114cc576008546009546040516306ab592360e01b81526004810191909152602481018790526001600160a01b038681166044830152909116906306ab5923906064016020604051808303816000875af11580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca919061221b565b505b6001600160a01b038416857fb3d987963d01b2f68493b4bdb130988f157ea43070d4ad840fee0466ed9370d9611502864261227d565b60405190815260200160405180910390a361151d834261227d565b95945050505050565b60008061153283610a92565b9050806001600160a01b0316846001600160a01b0316148061156d5750836001600160a01b0316611562846105d8565b6001600160a01b0316145b8061072957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610729565b826001600160a01b03166115b482611248565b6001600160a01b0316146116185760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610674565b6001600160a01b03821661167a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610674565b6116856000826112a8565b6001600160a01b03831660009081526003602052604081208054600192906116ae9084906122c4565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dc90849061227d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610674565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118698484846115a1565b61187584848484611aa3565b6107e45760405162461bcd60e51b8152600401610674906122db565b6060816118b55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118df57806118c98161232d565b91506118d89050600a8361235e565b91506118b9565b60008167ffffffffffffffff8111156118fa576118fa611e47565b6040519080825280601f01601f191660200182016040528015611924576020820181803683370190505b5090505b8415610729576119396001836122c4565b9150611946600a86612372565b61195190603061227d565b60f81b81838151811061196657611966612251565b60200101906001600160f81b031916908160001a905350611988600a8661235e565b9450611928565b61199881611b9e565b6000818152600d6020526040812054600c549091906119b9906001906122c4565b90506000600c82815481106119d0576119d0612251565b9060005260206000200154905080600c84815481106119f1576119f1612251565b600091825260209091200155600c805480611a0e57611a0e612386565b600082815260208082208301600019908101839055909201909255918152600d90915260408082209390935592835250812055565b611a4d8282611c39565b600c80546001818101835560008390527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c79091018390559054611a9091906122c4565b6000918252600d60205260409091205550565b60006001600160a01b0384163b15611b9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ae790339089908890889060040161239c565b6020604051808303816000875af1925050508015611b22575060408051601f3d908101601f19168201909252611b1f918101906123d9565b60015b611b7c573d808015611b50576040519150601f19603f3d011682016040523d82523d6000602084013e611b55565b606091505b508051611b745760405162461bcd60e51b8152600401610674906122db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610729565b506001610729565b6000611ba982611248565b9050611bb66000836112a8565b6001600160a01b0381166000908152600360205260408120805460019290611bdf9084906122c4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611c8f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610674565b6000818152600260205260409020546001600160a01b031615611cf45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610674565b6001600160a01b0382166000908152600360205260408120805460019290611d1d90849061227d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d8790612199565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50611dfb929150611dff565b5090565b5b80821115611dfb5760008155600101611e00565b6001600160e01b0319811681146110db57600080fd5b600060208284031215611e3c57600080fd5b813561105e81611e14565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7857611e78611e47565b604051601f8501601f19908116603f01168101908282118183101715611ea057611ea0611e47565b81604052809350858152868686011115611eb957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee557600080fd5b813567ffffffffffffffff811115611efc57600080fd5b8201601f81018413611f0d57600080fd5b61072984823560208401611e5d565b60005b83811015611f37578181015183820152602001611f1f565b838111156107e45750506000910152565b60008151808452611f60816020860160208601611f1c565b601f01601f19169290920160200192915050565b60208152600061105e6020830184611f48565b600060208284031215611f9957600080fd5b5035919050565b6001600160a01b03811681146110db57600080fd5b60008060408385031215611fc857600080fd5b8235611fd381611fa0565b946020939093013593505050565b600080600060608486031215611ff657600080fd5b83359250602084013561200881611fa0565b929592945050506040919091013590565b60008060006060848603121561202e57600080fd5b833561203981611fa0565b9250602084013561200881611fa0565b6000806040838503121561205c57600080fd5b82359150602083013561206e81611fa0565b809150509250929050565b60006020828403121561208b57600080fd5b813561105e81611fa0565b600080604083850312156120a957600080fd5b82356120b481611fa0565b91506020830135801515811461206e57600080fd5b600080600080608085870312156120df57600080fd5b84356120ea81611fa0565b935060208501356120fa81611fa0565b925060408501359150606085013567ffffffffffffffff81111561211d57600080fd5b8501601f8101871361212e57600080fd5b61213d87823560208401611e5d565b91505092959194509250565b6000806040838503121561215c57600080fd5b50508035926020909101359150565b6000806040838503121561217e57600080fd5b823561218981611fa0565b9150602083013561206e81611fa0565b600181811c908216806121ad57607f821691505b602082108114156121ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526027908201527f4552433732313a2063616c6c6572206973206e6f7420617070726f766564206f604082015266391037bbb732b960c91b606082015260800190565b60006020828403121561222d57600080fd5b5051919050565b60006020828403121561224657600080fd5b815161105e81611fa0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561229057612290612267565b500190565b600083516122a7818460208801611f1c565b8351908301906122bb818360208801611f1c565b01949350505050565b6000828210156122d6576122d6612267565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561234157612341612267565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261236d5761236d612348565b500490565b60008261238157612381612348565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123cf90830184611f48565b9695505050505050565b6000602082840312156123eb57600080fd5b815161105e81611e1456fea26469706673582212203f288ddd3d4000959f4e9db0762f72389bb8a365867bf2980c13391a044bab5b64736f6c634300080c0033000000000000000000000000a6f818a6ff029ea2724d1a09718393c5b9c384eb8a74fc6994ef0554dd9cc95c3391f9cd66152031a0c1feacb835e3890805af5f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c806395d89b411161011a578063c87b56dd116100ad578063e6fcc84b1161007c578063e6fcc84b1461044d578063e985e9c514610460578063f2fde38b1461049c578063f6a74ed7146104af578063fca247ac146104c257600080fd5b8063c87b56dd146103ee578063d6e4fa8614610401578063da8c229e14610421578063ddf7fcb01461044457600080fd5b8063a7fc7a07116100e9578063a7fc7a07146103ab578063b88d4fde146103be578063c1a287e2146103d1578063c475abff146103db57600080fd5b806395d89b411461037557806396e494e81461037d5780639abc832014610390578063a22cb4651461039857600080fd5b806328ed4f6c1161019d5780634f6ccce71161016c5780634f6ccce7146103235780636352211e1461033657806370a0823114610349578063715018a61461035c5780638da5cb5b1461036457600080fd5b806328ed4f6c146102d75780632f745c59146102ea57806342842e0e146102fd5780634e543b261461031057600080fd5b8063095ea7b3116101d9578063095ea7b3146102885780630e297b451461029b57806318160ddd146102bc57806323b872dd146102c457600080fd5b806301ffc9a71461020b57806302fe53051461023357806306fdde0314610248578063081812fc1461025d575b600080fd5b61021e610219366004611e2a565b6104d5565b60405190151581526020015b60405180910390f35b610246610241366004611ed3565b610527565b005b610250610546565b60405161022a9190611f74565b61027061026b366004611f87565b6105d8565b6040516001600160a01b03909116815260200161022a565b610246610296366004611fb5565b6105ff565b6102ae6102a9366004611fe1565b61071a565b60405190815260200161022a565b600c546102ae565b6102466102d2366004612019565b610731565b6102466102e5366004612049565b6107ea565b6102ae6102f8366004611fb5565b610903565b61024661030b366004612019565b61099a565b61024661031e366004612079565b6109b5565b6102ae610331366004611f87565b610a2a565b610270610344366004611f87565b610a92565b6102ae610357366004612079565b610ab5565b610246610b3b565b6006546001600160a01b0316610270565b610250610b4f565b61021e61038b366004611f87565b610b5e565b610250610b84565b6102466103a6366004612096565b610c12565b6102466103b9366004612079565b610c1d565b6102466103cc3660046120c9565b610cc2565b6102ae6276a70081565b6102ae6103e9366004612149565b610d76565b6102506103fc366004611f87565b610f07565b6102ae61040f366004611f87565b60009081526007602052604090205490565b61021e61042f366004612079565b600a6020526000908152604090205460ff1681565b6102ae60095481565b600854610270906001600160a01b031681565b61021e61046e36600461216b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102466104aa366004612079565b611065565b6102466104bd366004612079565b6110de565b6102ae6104d0366004611fe1565b611180565b60006001600160e01b031982166301ffc9a760e01b148061050657506001600160e01b031982166380ac58cd60e01b145b8061052157506001600160e01b03198216630a3b53db60e21b145b92915050565b61052f61118f565b805161054290600b906020840190611d7b565b5050565b60606000805461055590612199565b80601f016020809104026020016040519081016040528092919081815260200182805461058190612199565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e3826111e9565b506000908152600460205260409020546001600160a01b031690565b600061060a82611248565b9050806001600160a01b0316836001600160a01b0316141561067d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106995750610699813361046e565b61070b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610674565b61071583836112a8565b505050565b60006107298484846000611316565b949350505050565b61073b3382611526565b6107575760405162461bcd60e51b8152600401610674906121d4565b6107628383836115a1565b6008546009546040516306ab592360e01b81526004810191909152602481018390526001600160a01b038481166044830152909116906306ab5923906064016020604051808303816000875af11580156107c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e4919061221b565b50505050565b6008546009546040516302571be360e01b8152600481019190915230916001600160a01b0316906302571be390602401602060405180830381865afa158015610837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085b9190612234565b6001600160a01b03161461086e57600080fd5b6108783383611526565b61088157600080fd5b6008546009546040516306ab592360e01b81526004810191909152602481018490526001600160a01b038381166044830152909116906306ab5923906064016020604051808303816000875af11580156108df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610715919061221b565b6001600160a01b0382166000908152600e60209081526040808320548151808301909252600682526530303530303760d01b9282019290925290831061095c5760405162461bcd60e51b81526004016106749190611f74565b506001600160a01b0383166000908152600e6020526040902080548390811061098757610987612251565b9060005260206000200154905092915050565b61071583838360405180602001604052806000815250610cc2565b6109bd61118f565b600854600954604051630c4b7b8560e11b815260048101919091526001600160a01b03838116602483015290911690631896f70a90604401600060405180830381600087803b158015610a0f57600080fd5b505af1158015610a23573d6000803e3d6000fd5b5050505050565b600c5460408051808201909152600681526530303530303760d01b60208201526000918310610a6c5760405162461bcd60e51b81526004016106749190611f74565b50600c8281548110610a8057610a80612251565b90600052602060002001549050919050565b6000818152600760205260408120544210610aac57600080fd5b61052182611248565b60006001600160a01b038216610b1f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610674565b506001600160a01b031660009081526003602052604090205490565b610b4361118f565b610b4d600061173d565b565b60606001805461055590612199565b6000818152600760205260408120544290610b7d906276a7009061227d565b1092915050565b600b8054610b9190612199565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbd90612199565b8015610c0a5780601f10610bdf57610100808354040283529160200191610c0a565b820191906000526020600020905b815481529060010190602001808311610bed57829003601f168201915b505050505081565b61054233838361178f565b610c2561118f565b6001600160a01b038116610c765760405162461bcd60e51b8152602060048201526018602482015277616464726573732063616e206e6f74206265207a65726f2160401b6044820152606401610674565b6001600160a01b0381166000818152600a6020526040808220805460ff19166001179055517f0a8bb31534c0ed46f380cb867bd5c803a189ced9a764e30b3a4991a9901d74749190a250565b610ccc3383611526565b610ce85760405162461bcd60e51b8152600401610674906121d4565b610cf48484848461185e565b6008546009546040516306ab592360e01b81526004810191909152602481018490526001600160a01b038581166044830152909116906306ab5923906064016020604051808303816000875af1158015610d52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a23919061221b565b6008546009546040516302571be360e01b8152600481019190915260009130916001600160a01b03909116906302571be390602401602060405180830381865afa158015610dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dec9190612234565b6001600160a01b031614610dff57600080fd5b336000908152600a602052604090205460ff16610e1b57600080fd5b6000838152600760205260409020544290610e3a906276a7009061227d565b1015610e4557600080fd5b610e526276a7008361227d565b6000848152600760205260409020546276a70090610e7190859061227d565b610e7b919061227d565b11610e8557600080fd5b60008381526007602052604081208054849290610ea390849061227d565b90915550506000838152600760205260409081902054905184917f9b87a00e30f1ac65d898f070f8a3488fe60517182d0a2098e1b4b93a54aa9bd691610eeb91815260200190565b60405180910390a2505060009081526007602052604090205490565b6000818152600260205260409020546060906001600160a01b0316610f865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610674565b6000600b8054610f9590612199565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc190612199565b801561100e5780601f10610fe35761010080835404028352916020019161100e565b820191906000526020600020905b815481529060010190602001808311610ff157829003601f168201915b505050505090506000815111611033576040518060200160405280600081525061105e565b8061103d84611891565b60405160200161104e929190612295565b6040516020818303038152906040525b9392505050565b61106d61118f565b6001600160a01b0381166110d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6110db8161173d565b50565b6110e661118f565b6001600160a01b0381166111375760405162461bcd60e51b8152602060048201526018602482015277616464726573732063616e206e6f74206265207a65726f2160401b6044820152606401610674565b6001600160a01b0381166000818152600a6020526040808220805460ff19169055517f33d83959be2573f5453b12eb9d43b3499bc57d96bd2f067ba44803c859e811139190a250565b60006107298484846001611316565b6006546001600160a01b03163314610b4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610674565b6000818152600260205260409020546001600160a01b03166110db5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610674565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610674565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112dd82611248565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6008546009546040516302571be360e01b8152600481019190915260009130916001600160a01b03909116906302571be390602401602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c9190612234565b6001600160a01b03161461139f57600080fd5b336000908152600a602052604090205460ff166113bb57600080fd5b6113c485610b5e565b6113cd57600080fd5b6113da6276a7004261227d565b6276a7006113e8854261227d565b6113f2919061227d565b116113fc57600080fd5b611406834261227d565b6000868152600760209081526040808320939093556002905220546001600160a01b031615611438576114388561198f565b6114428486611a43565b81156114cc576008546009546040516306ab592360e01b81526004810191909152602481018790526001600160a01b038681166044830152909116906306ab5923906064016020604051808303816000875af11580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca919061221b565b505b6001600160a01b038416857fb3d987963d01b2f68493b4bdb130988f157ea43070d4ad840fee0466ed9370d9611502864261227d565b60405190815260200160405180910390a361151d834261227d565b95945050505050565b60008061153283610a92565b9050806001600160a01b0316846001600160a01b0316148061156d5750836001600160a01b0316611562846105d8565b6001600160a01b0316145b8061072957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610729565b826001600160a01b03166115b482611248565b6001600160a01b0316146116185760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610674565b6001600160a01b03821661167a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610674565b6116856000826112a8565b6001600160a01b03831660009081526003602052604081208054600192906116ae9084906122c4565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dc90849061227d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117f15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610674565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118698484846115a1565b61187584848484611aa3565b6107e45760405162461bcd60e51b8152600401610674906122db565b6060816118b55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118df57806118c98161232d565b91506118d89050600a8361235e565b91506118b9565b60008167ffffffffffffffff8111156118fa576118fa611e47565b6040519080825280601f01601f191660200182016040528015611924576020820181803683370190505b5090505b8415610729576119396001836122c4565b9150611946600a86612372565b61195190603061227d565b60f81b81838151811061196657611966612251565b60200101906001600160f81b031916908160001a905350611988600a8661235e565b9450611928565b61199881611b9e565b6000818152600d6020526040812054600c549091906119b9906001906122c4565b90506000600c82815481106119d0576119d0612251565b9060005260206000200154905080600c84815481106119f1576119f1612251565b600091825260209091200155600c805480611a0e57611a0e612386565b600082815260208082208301600019908101839055909201909255918152600d90915260408082209390935592835250812055565b611a4d8282611c39565b600c80546001818101835560008390527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c79091018390559054611a9091906122c4565b6000918252600d60205260409091205550565b60006001600160a01b0384163b15611b9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ae790339089908890889060040161239c565b6020604051808303816000875af1925050508015611b22575060408051601f3d908101601f19168201909252611b1f918101906123d9565b60015b611b7c573d808015611b50576040519150601f19603f3d011682016040523d82523d6000602084013e611b55565b606091505b508051611b745760405162461bcd60e51b8152600401610674906122db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610729565b506001610729565b6000611ba982611248565b9050611bb66000836112a8565b6001600160a01b0381166000908152600360205260408120805460019290611bdf9084906122c4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b038216611c8f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610674565b6000818152600260205260409020546001600160a01b031615611cf45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610674565b6001600160a01b0382166000908152600360205260408120805460019290611d1d90849061227d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d8790612199565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50611dfb929150611dff565b5090565b5b80821115611dfb5760008155600101611e00565b6001600160e01b0319811681146110db57600080fd5b600060208284031215611e3c57600080fd5b813561105e81611e14565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7857611e78611e47565b604051601f8501601f19908116603f01168101908282118183101715611ea057611ea0611e47565b81604052809350858152868686011115611eb957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee557600080fd5b813567ffffffffffffffff811115611efc57600080fd5b8201601f81018413611f0d57600080fd5b61072984823560208401611e5d565b60005b83811015611f37578181015183820152602001611f1f565b838111156107e45750506000910152565b60008151808452611f60816020860160208601611f1c565b601f01601f19169290920160200192915050565b60208152600061105e6020830184611f48565b600060208284031215611f9957600080fd5b5035919050565b6001600160a01b03811681146110db57600080fd5b60008060408385031215611fc857600080fd5b8235611fd381611fa0565b946020939093013593505050565b600080600060608486031215611ff657600080fd5b83359250602084013561200881611fa0565b929592945050506040919091013590565b60008060006060848603121561202e57600080fd5b833561203981611fa0565b9250602084013561200881611fa0565b6000806040838503121561205c57600080fd5b82359150602083013561206e81611fa0565b809150509250929050565b60006020828403121561208b57600080fd5b813561105e81611fa0565b600080604083850312156120a957600080fd5b82356120b481611fa0565b91506020830135801515811461206e57600080fd5b600080600080608085870312156120df57600080fd5b84356120ea81611fa0565b935060208501356120fa81611fa0565b925060408501359150606085013567ffffffffffffffff81111561211d57600080fd5b8501601f8101871361212e57600080fd5b61213d87823560208401611e5d565b91505092959194509250565b6000806040838503121561215c57600080fd5b50508035926020909101359150565b6000806040838503121561217e57600080fd5b823561218981611fa0565b9150602083013561206e81611fa0565b600181811c908216806121ad57607f821691505b602082108114156121ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526027908201527f4552433732313a2063616c6c6572206973206e6f7420617070726f766564206f604082015266391037bbb732b960c91b606082015260800190565b60006020828403121561222d57600080fd5b5051919050565b60006020828403121561224657600080fd5b815161105e81611fa0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561229057612290612267565b500190565b600083516122a7818460208801611f1c565b8351908301906122bb818360208801611f1c565b01949350505050565b6000828210156122d6576122d6612267565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561234157612341612267565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261236d5761236d612348565b500490565b60008261238157612381612348565b500690565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123cf90830184611f48565b9695505050505050565b6000602082840312156123eb57600080fd5b815161105e81611e1456fea26469706673582212203f288ddd3d4000959f4e9db0762f72389bb8a365867bf2980c13391a044bab5b64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a6f818a6ff029ea2724d1a09718393c5b9c384eb8a74fc6994ef0554dd9cc95c3391f9cd66152031a0c1feacb835e3890805af5f
-----Decoded View---------------
Arg [0] : _did (address): 0xa6f818a6ff029ea2724d1A09718393c5B9C384eB
Arg [1] : _baseNode (bytes32): 0x8a74fc6994ef0554dd9cc95c3391f9cd66152031a0c1feacb835e3890805af5f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6f818a6ff029ea2724d1a09718393c5b9c384eb
Arg [1] : 8a74fc6994ef0554dd9cc95c3391f9cd66152031a0c1feacb835e3890805af5f
Deployed Bytecode Sourcemap
364:9548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9149:243;;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;9149:243:0;;;;;;;;9489:90;;;;;;:::i;:::-;;:::i;:::-;;2470:98:4;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2917:32:14;;;2899:51;;2887:2;2872:18;3935:167:4;2753:203:14;3467:407:4;;;;;;:::i;:::-;;:::i;7573:146:0:-;;;;;;:::i;:::-;;:::i;:::-;;;3951:25:14;;;3939:2;3924:18;7573:146:0;3805:177:14;2966:121:0;3067:6;:13;2966:121;;4417:372;;;;;;:::i;:::-;;:::i;8957:186::-;;;;;;:::i;:::-;;:::i;3312:266::-;;;;;;:::i;:::-;;:::i;5005:179:4:-;;;;;;:::i;:::-;;:::i;6410:119:0:-;;;;;;:::i;:::-;;:::i;3094:211::-;;;;;;:::i;:::-;;:::i;5554:190::-;;;;;;:::i;:::-;;:::i;1929:204:4:-;;;;;;:::i;:::-;;:::i;1831:101:3:-;;;:::i;1201:85::-;1273:6;;-1:-1:-1;;;;;1273:6:3;1201:85;;2632:102:4;;;:::i;6780:135:0:-;;;;;;:::i;:::-;;:::i;1559:21::-;;;:::i;4169:153:4:-;;;;;;:::i;:::-;;:::i;5818:231:0:-;;;;;;:::i;:::-;;:::i;4855:414::-;;;;;;:::i;:::-;;:::i;787:46::-;;826:7;787:46;;8421:434;;;;;;:::i;:::-;;:::i;9585:325::-;;;;;;:::i;:::-;;:::i;6596:104::-;;;;;;:::i;:::-;6658:4;6681:12;;;:8;:12;;;;;;;6596:104;738:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;634:23;;;;;;552:14;;;;;-1:-1:-1;;;;;552:14:0;;;4388:162:4;;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:4;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;2081:198:3;;;;;;:::i;:::-;;:::i;6107:237:0:-;;;;;;:::i;:::-;;:::i;7153:150::-;;;;;;:::i;:::-;;:::i;9149:243::-;9243:4;-1:-1:-1;;;;;;9266:32:0;;-1:-1:-1;;;9266:32:0;;:75;;-1:-1:-1;;;;;;;9317:24:0;;-1:-1:-1;;;9317:24:0;9266:75;:119;;;-1:-1:-1;;;;;;;9360:25:0;;-1:-1:-1;;;9360:25:0;9266:119;9259:126;9149:243;-1:-1:-1;;9149:243:0:o;9489:90::-;1094:13:3;:11;:13::i;:::-;9556:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;9489:90:::0;:::o;2470:98:4:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:4;;3935:167::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;-1:-1:-1;;;;;3604:11:4;:2;-1:-1:-1;;;;;3604:11:4;;;3596:57;;;;-1:-1:-1;;;3596:57:4;;7876:2:14;3596:57:4;;;7858:21:14;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;-1:-1:-1;;;8005:18:14;;;7998:31;8046:19;;3596:57:4;;;;;;;;;719:10:10;-1:-1:-1;;;;;3685:21:4;;;;:62;;-1:-1:-1;3710:37:4;3727:5;719:10:10;4388:162:4;:::i;3710:37::-;3664:171;;;;-1:-1:-1;;;3664:171:4;;8278:2:14;3664:171:4;;;8260:21:14;8317:2;8297:18;;;8290:30;8356:34;8336:18;;;8329:62;8427:32;8407:18;;;8400:60;8477:19;;3664:171:4;8076:426:14;3664:171:4;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;7573:146:0:-;7654:4;7675:37;7685:2;7689:5;7696:8;7706:5;7675:9;:37::i;:::-;7668:44;7573:146;-1:-1:-1;;;;7573:146:0:o;4417:372::-;4576:41;719:10:10;4609:7:0;4576:18;:41::i;:::-;4555:127;;;;-1:-1:-1;;;4555:127:0;;;;;;;:::i;:::-;4693:28;4703:4;4709:2;4713:7;4693:9;:28::i;:::-;4731:3;;4751:8;;4731:51;;-1:-1:-1;;;4731:51:0;;;;;9117:25:14;;;;9158:18;;;9151:34;;;-1:-1:-1;;;;;9221:32:14;;;9201:18;;;9194:60;4731:3:0;;;;:19;;9090:18:14;;4731:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4417:372;;;:::o;8957:186::-;2815:3;;2825:8;;2815:19;;-1:-1:-1;;;2815:19:0;;;;;3951:25:14;;;;2846:4:0;;-1:-1:-1;;;;;2815:3:0;;:9;;3924:18:14;;2815:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2815:36:0;;2807:45;;;;;;9042:34:::1;9061:10;9073:2;9042:18;:34::i;:::-;9034:43;;;::::0;::::1;;9087:3;::::0;9107:8:::1;::::0;9087:49:::1;::::0;-1:-1:-1;;;9087:49:0;;::::1;::::0;::::1;9117:25:14::0;;;;9158:18;;;9151:34;;;-1:-1:-1;;;;;9221:32:14;;;9201:18;;;9194:60;9087:3:0;;::::1;::::0;:19:::1;::::0;9090:18:14;;9087:49:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3312:266::-:0;-1:-1:-1;;;;;3487:18:0;;3447:7;3487:18;;;:10;:18;;;;;;;;:25;3514:13;;;;;;;;;;;-1:-1:-1;;;3514:13:0;;;;;;;;3478:34;;3470:58;;;;-1:-1:-1;;;3470:58:0;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3545:18:0;;;;;;:10;:18;;;;;:26;;3564:6;;3545:26;;;;;;:::i;:::-;;;;;;;;;3538:33;;3312:266;;;;:::o;5005:179:4:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;6410:119:0:-;1094:13:3;:11;:13::i;:::-;6487:3:0::1;::::0;6503:8:::1;::::0;6487:35:::1;::::0;-1:-1:-1;;;6487:35:0;;::::1;::::0;::::1;10016:25:14::0;;;;-1:-1:-1;;;;;10077:32:14;;;10057:18;;;10050:60;6487:3:0;;::::1;::::0;:15:::1;::::0;9989:18:14;;6487:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6410:119:::0;:::o;3094:211::-;3238:6;:13;3253;;;;;;;;;;;;-1:-1:-1;;;3253:13:0;;;;3198:7;;3229:22;;3221:46;;;;-1:-1:-1;;;3221:46:0;;;;;;;;:::i;:::-;;3284:6;3291;3284:14;;;;;;;;:::i;:::-;;;;;;;;;3277:21;;3094:211;;;:::o;5554:190::-;5635:7;5662:17;;;:8;:17;;;;;;5682:15;-1:-1:-1;5654:44:0;;;;;;5715:22;5729:7;5715:13;:22::i;1929:204:4:-;2001:7;-1:-1:-1;;;;;2028:19:4;;2020:73;;;;-1:-1:-1;;;2020:73:4;;10323:2:14;2020:73:4;;;10305:21:14;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;-1:-1:-1;;;10452:18:14;;;10445:39;10501:19;;2020:73:4;10121:405:14;2020:73:4;-1:-1:-1;;;;;;2110:16:4;;;;;:9;:16;;;;;;;1929:204::o;1831:101:3:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2632:102:4:-;2688:13;2720:7;2713:14;;;;;:::i;6780:135:0:-;6840:4;6863:12;;;:8;:12;;;;;;6893:15;;6863:27;;826:7;;6863:27;:::i;:::-;:45;;6780:135;-1:-1:-1;;6780:135:0:o;1559:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4169:153:4:-;4263:52;719:10:10;4296:8:4;4306;4263:18;:52::i;5818:231:0:-;1094:13:3;:11;:13::i;:::-;-1:-1:-1;;;;;5907:24:0;::::1;5899:61;;;::::0;-1:-1:-1;;;5899:61:0;;10998:2:14;5899:61:0::1;::::0;::::1;10980:21:14::0;11037:2;11017:18;;;11010:30;-1:-1:-1;;;11056:18:14;;;11049:54;11120:18;;5899:61:0::1;10796:348:14::0;5899:61:0::1;-1:-1:-1::0;;;;;5970:23:0;::::1;;::::0;;;:11:::1;:23;::::0;;;;;:30;;-1:-1:-1;;5970:30:0::1;5996:4;5970:30;::::0;;6015:27;::::1;::::0;5970:23;6015:27:::1;5818:231:::0;:::o;4855:414::-;5046:41;719:10:10;5079:7:0;5046:18;:41::i;:::-;5025:127;;;;-1:-1:-1;;;5025:127:0;;;;;;;:::i;:::-;5162:39;5176:4;5182:2;5186:7;5195:5;5162:13;:39::i;:::-;5211:3;;5231:8;;5211:51;;-1:-1:-1;;;5211:51:0;;;;;9117:25:14;;;;9158:18;;;9151:34;;;-1:-1:-1;;;;;9221:32:14;;;9201:18;;;9194:60;5211:3:0;;;;:19;;9090:18:14;;5211:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;8421:434::-;2815:3;;2825:8;;2815:19;;-1:-1:-1;;;2815:19:0;;;;;3951:25:14;;;;8509:4:0;;2846;;-1:-1:-1;;;;;2815:3:0;;;;:9;;3924:18:14;;2815:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2815:36:0;;2807:45;;;;;;2930:10:::1;2918:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;2910:32;;;::::0;::::1;;8533:12:::2;::::0;;;:8:::2;:12;::::0;;;;;8564:15:::2;::::0;8533:27:::2;::::0;826:7:::2;::::0;8533:27:::2;:::i;:::-;:46;;8525:55;;;::::0;::::2;;8690:23;826:7;8690:8:::0;:23:::2;:::i;:::-;8649:12;::::0;;;:8:::2;:12;::::0;;;;;826:7:::2;::::0;8649:23:::2;::::0;8664:8;;8649:23:::2;:::i;:::-;:38;;;;:::i;:::-;:64;8641:73;;;::::0;::::2;;8751:12;::::0;;;:8:::2;:12;::::0;;;;:24;;8767:8;;8751:12;:24:::2;::::0;8767:8;;8751:24:::2;:::i;:::-;::::0;;;-1:-1:-1;;8806:12:0::2;::::0;;;:8:::2;:12;::::0;;;;;;;8790:29;;8802:2;;8790:29:::2;::::0;::::2;::::0;3951:25:14;;3939:2;3924:18;;3805:177;8790:29:0::2;;;;;;;;-1:-1:-1::0;;8836:12:0::2;::::0;;;:8:::2;:12;::::0;;;;;;8421:434::o;9585:325::-;7099:4:4;7122:16;;;:7;:16;;;;;;9650:13:0;;-1:-1:-1;;;;;7122:16:4;9675:76:0;;;;-1:-1:-1;;;9675:76:0;;11351:2:14;9675:76:0;;;11333:21:14;11390:2;11370:18;;;11363:30;11429:34;11409:18;;;11402:62;-1:-1:-1;;;11480:18:14;;;11473:45;11535:19;;9675:76:0;11149:411:14;9675:76:0;9762:21;9786:7;9762:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:1;9816:7;9810:21;:25;:93;;;;;;;;;;;;;;;;;9862:7;9871:25;9888:7;9871:16;:25::i;:::-;9845:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9810:93;9803:100;9585:325;-1:-1:-1;;;9585:325:0:o;2081:198:3:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:3;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:3;;12242:2:14;2161:73:3::1;::::0;::::1;12224:21:14::0;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:14;;;12364:36;12417:19;;2161:73:3::1;12040:402:14::0;2161:73:3::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;6107:237:0:-;1094:13:3;:11;:13::i;:::-;-1:-1:-1;;;;;6199:24:0;::::1;6191:61;;;::::0;-1:-1:-1;;;6191:61:0;;10998:2:14;6191:61:0::1;::::0;::::1;10980:21:14::0;11037:2;11017:18;;;11010:30;-1:-1:-1;;;11056:18:14;;;11049:54;11120:18;;6191:61:0::1;10796:348:14::0;6191:61:0::1;-1:-1:-1::0;;;;;6262:23:0;::::1;6288:5;6262:23:::0;;;:11:::1;:23;::::0;;;;;:31;;-1:-1:-1;;6262:31:0::1;::::0;;6308:29;::::1;::::0;6288:5;6308:29:::1;6107:237:::0;:::o;7153:150::-;7239:4;7260:36;7270:2;7274:5;7281:8;7291:4;7260:9;:36::i;1359:130:3:-;1273:6;;-1:-1:-1;;;;;1273:6:3;719:10:10;1422:23:3;1414:68;;;;-1:-1:-1;;;1414:68:3;;12649:2:14;1414:68:3;;;12631:21:14;;;12668:18;;;12661:30;12727:34;12707:18;;;12700:62;12779:18;;1414:68:3;12447:356:14;11657:133:4;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:4;11730:53;;;;-1:-1:-1;;;11730:53:4;;13010:2:14;11730:53:4;;;12992:21:14;13049:2;13029:18;;;13022:30;-1:-1:-1;;;13068:18:14;;;13061:54;13132:18;;11730:53:4;12808:348:14;2190:218:4;2262:7;2297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2297:16:4;2331:19;2323:56;;;;-1:-1:-1;;;2323:56:4;;13010:2:14;2323:56:4;;;12992:21:14;13049:2;13029:18;;;13022:30;-1:-1:-1;;;13068:18:14;;;13061:54;13132:18;;2323:56:4;12808:348:14;10959:171:4;11033:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11033:29:4;-1:-1:-1;;;;;11033:29:4;;;;;;;;:24;;11086:23;11033:24;11086:14;:23::i;:::-;-1:-1:-1;;;;;11077:46:4;;;;;;;;;;;10959:171;;:::o;7725:690:0:-;2815:3;;2825:8;;2815:19;;-1:-1:-1;;;2815:19:0;;;;;3951:25:14;;;;7844:4:0;;2846;;-1:-1:-1;;;;;2815:3:0;;;;:9;;3924:18:14;;2815:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2815:36:0;;2807:45;;;;;;2930:10:::1;2918:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;2910:32;;;::::0;::::1;;7868:13:::2;7878:2;7868:9;:13::i;:::-;7860:22;;;::::0;::::2;;7944:30;826:7;7944:15;:30;:::i;:::-;826:7;7900:26;7918:8:::0;7900:15:::2;:26;:::i;:::-;:41;;;;:::i;:::-;:74;7892:83;;;::::0;::::2;;8028:26;8046:8:::0;8028:15:::2;:26;:::i;:::-;8013:12;::::0;;;:8:::2;:12;::::0;;;;;;;:41;;;;7122:7:4;:16;;;;-1:-1:-1;;;;;7122:16:4;:30;8064:104:0::2;;8148:9;8154:2;8148:5;:9::i;:::-;8177:16;8183:5;8190:2;8177:5;:16::i;:::-;8206:14;8203:93;;;8236:3;::::0;8256:8:::2;::::0;8236:49:::2;::::0;-1:-1:-1;;;8236:49:0;;::::2;::::0;::::2;9117:25:14::0;;;;9158:18;;;9151:34;;;-1:-1:-1;;;;;9221:32:14;;;9201:18;;;9194:60;8236:3:0;;::::2;::::0;:19:::2;::::0;9090:18:14;;8236:49:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8203:93;-1:-1:-1::0;;;;;8311:53:0;::::2;8326:2:::0;8311:53:::2;8337:26;8355:8:::0;8337:15:::2;:26;:::i;:::-;8311:53;::::0;3951:25:14;;;3939:2;3924:18;8311:53:0::2;;;;;;;8382:26;8400:8:::0;8382:15:::2;:26;:::i;:::-;8375:33:::0;7725:690;-1:-1:-1;;;;;7725:690:0:o;2393:255::-;2487:4;2503:13;2519:16;2527:7;2519;:16::i;:::-;2503:32;;2564:5;-1:-1:-1;;;;;2553:16:0;:7;-1:-1:-1;;;;;2553:16:0;;:51;;;;2597:7;-1:-1:-1;;;;;2573:31:0;:20;2585:7;2573:11;:20::i;:::-;-1:-1:-1;;;;;2573:31:0;;2553:51;:87;;;-1:-1:-1;;;;;;4508:25:4;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;2608:32:0;4388:162:4;10242:605;10396:4;-1:-1:-1;;;;;10369:31:4;:23;10384:7;10369:14;:23::i;:::-;-1:-1:-1;;;;;10369:31:4;;10361:81;;;;-1:-1:-1;;;10361:81:4;;13363:2:14;10361:81:4;;;13345:21:14;13402:2;13382:18;;;13375:30;13441:34;13421:18;;;13414:62;-1:-1:-1;;;13492:18:14;;;13485:35;13537:19;;10361:81:4;13161:401:14;10361:81:4;-1:-1:-1;;;;;10460:16:4;;10452:65;;;;-1:-1:-1;;;10452:65:4;;13769:2:14;10452:65:4;;;13751:21:14;13808:2;13788:18;;;13781:30;13847:34;13827:18;;;13820:62;-1:-1:-1;;;13898:18:14;;;13891:34;13942:19;;10452:65:4;13567:400:14;10452:65:4;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;-1:-1:-1;;;;;10669:15:4;;;;;;:9;:15;;;;;:20;;10688:1;;10669:15;:20;;10688:1;;10669:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10699:13:4;;;;;;:9;:13;;;;;:18;;10716:1;;10699:13;:18;;10716:1;;10699:18;:::i;:::-;;;;-1:-1:-1;;10727:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10727:21:4;-1:-1:-1;;;;;10727:21:4;;;;;;;;;10764:27;;10727:16;;10764:27;;;;;;;3537:337;3467:407;;:::o;2433:187:3:-;2525:6;;;-1:-1:-1;;;;;2541:17:3;;;-1:-1:-1;;;;;;2541:17:3;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;11266:307:4:-;11416:8;-1:-1:-1;;;;;11407:17:4;:5;-1:-1:-1;;;;;11407:17:4;;;11399:55;;;;-1:-1:-1;;;11399:55:4;;14304:2:14;11399:55:4;;;14286:21:14;14343:2;14323:18;;;14316:30;14382:27;14362:18;;;14355:55;14427:18;;11399:55:4;14102:349:14;11399:55:4;-1:-1:-1;;;;;11464:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11464:46:4;;;;;;;;;;11525:41;;540::14;;;11525::4;;513:18:14;11525:41:4;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;-1:-1:-1;;;6614:110:4;;;;;;;:::i;392:703:11:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:11;;;;;;;;;;;;-1:-1:-1;;;691:10:11;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:11;;-1:-1:-1;837:2:11;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:11;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:11;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:11;;;;;;;;-1:-1:-1;1036:11:11;1045:2;1036:11;;:::i;:::-;;;908:150;;3829:526:0;3932:21;3944:8;3932:11;:21::i;:::-;3964:18;3985:19;;;:9;:19;;;;;;4039:6;:13;3985:19;;3964:18;4039:17;;4055:1;;4039:17;:::i;:::-;4014:42;;4066:17;4086:6;4093:14;4086:22;;;;;;;;:::i;:::-;;;;;;;;;4066:42;;4140:9;4119:6;4126:10;4119:18;;;;;;;;:::i;:::-;;;;;;;;;;:30;4160:6;:12;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;4160:12:0;;;;;;;;;;;;4282:20;;;:9;:20;;;;;;;:33;;;;4325:19;;;-1:-1:-1;4325:19:0;;:23;3829:526::o;3585:237::-;3709:26;3721:3;3726:8;3709:11;:26::i;:::-;3745:6;:21;;;;;;;;-1:-1:-1;3745:21:0;;;;;;;;;;3798:13;;:17;;3745:21;3798:17;:::i;:::-;3776:19;;;;:9;:19;;;;;;:39;-1:-1:-1;3585:237:0:o;12342:831:4:-;12491:4;-1:-1:-1;;;;;12511:13:4;;1465:19:9;:23;12507:660:4;;12546:71;;-1:-1:-1;;;12546:71:4;;-1:-1:-1;;;;;12546:36:4;;;;;:71;;719:10:10;;12597:4:4;;12603:7;;12612:4;;12546:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:71:4;;;;;;;;-1:-1:-1;;12546:71:4;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12784:13:4;;12780:321;;12826:60;;-1:-1:-1;;;12826:60:4;;;;;;;:::i;12780:321::-;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;-1:-1:-1;;;;;;12667:51:4;-1:-1:-1;;;12667:51:4;;-1:-1:-1;12660:58:4;;12507:660;-1:-1:-1;13152:4:4;13145:11;;9512:406;9571:13;9587:23;9602:7;9587:14;:23::i;:::-;9571:39;;9707:29;9724:1;9728:7;9707:8;:29::i;:::-;-1:-1:-1;;;;;9747:16:4;;;;;;:9;:16;;;;;:21;;9767:1;;9747:16;:21;;9767:1;;9747:21;:::i;:::-;;;;-1:-1:-1;;9785:16:4;;;;:7;:16;;;;;;9778:23;;-1:-1:-1;;;;;;9778:23:4;;;9817:36;9793:7;;9785:16;-1:-1:-1;;;;;9817:36:4;;;;;9785:16;;9817:36;9556:16:0::1;9489:90:::0;:::o;8868:427:4:-;-1:-1:-1;;;;;8947:16:4;;8939:61;;;;-1:-1:-1;;;8939:61:4;;16471:2:14;8939:61:4;;;16453:21:14;;;16490:18;;;16483:30;16549:34;16529:18;;;16522:62;16601:18;;8939:61:4;16269:356:14;8939:61:4;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:4;:30;9010:58;;;;-1:-1:-1;;;9010:58:4;;16832:2:14;9010:58:4;;;16814:21:14;16871:2;16851:18;;;16844:30;16910;16890:18;;;16883:58;16958:18;;9010:58:4;16630:352:14;9010:58:4;-1:-1:-1;;;;;9135:13:4;;;;;;:9;:13;;;;;:18;;9152:1;;9135:13;:18;;9152:1;;9135:18;:::i;:::-;;;;-1:-1:-1;;9163:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9163:21:4;-1:-1:-1;;;;;9163:21:4;;;;;;;;9200:33;;9163:16;;;9200:33;;9163:16;;9200:33;9556:16:0::1;9489:90:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;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:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:14;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:14;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1817:258::-;1889:1;1899:113;1913:6;1910:1;1907:13;1899:113;;;1989:11;;;1983:18;1970:11;;;1963:39;1935:2;1928:10;1899:113;;;2030:6;2027:1;2024:13;2021:48;;;-1:-1:-1;;2065:1:14;2047:16;;2040:27;1817:258::o;2080:::-;2122:3;2160:5;2154:12;2187:6;2182:3;2175:19;2203:63;2259:6;2252:4;2247:3;2243:14;2236:4;2229:5;2225:16;2203:63;:::i;:::-;2320:2;2299:15;-1:-1:-1;;2295:29:14;2286:39;;;;2327:4;2282:50;;2080:258;-1:-1:-1;;2080:258:14:o;2343:220::-;2492:2;2481:9;2474:21;2455:4;2512:45;2553:2;2542:9;2538:18;2530:6;2512:45;:::i;2568:180::-;2627:6;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;-1:-1:-1;2719:23:14;;2568:180;-1:-1:-1;2568:180:14:o;2961:131::-;-1:-1:-1;;;;;3036:31:14;;3026:42;;3016:70;;3082:1;3079;3072:12;3097:315;3165:6;3173;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;:::-;3350:5;3402:2;3387:18;;;;3374:32;;-1:-1:-1;;;3097:315:14:o;3417:383::-;3494:6;3502;3510;3563:2;3551:9;3542:7;3538:23;3534:32;3531:52;;;3579:1;3576;3569:12;3531:52;3615:9;3602:23;3592:33;;3675:2;3664:9;3660:18;3647:32;3688:31;3713:5;3688:31;:::i;:::-;3417:383;;3738:5;;-1:-1:-1;;;3790:2:14;3775:18;;;;3762:32;;3417:383::o;3987:456::-;4064:6;4072;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:14;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4448:315::-;4516:6;4524;4577:2;4565:9;4556:7;4552:23;4548:32;4545:52;;;4593:1;4590;4583:12;4545:52;4629:9;4616:23;4606:33;;4689:2;4678:9;4674:18;4661:32;4702:31;4727:5;4702:31;:::i;:::-;4752:5;4742:15;;;4448:315;;;;;:::o;4768:247::-;4827:6;4880:2;4868:9;4859:7;4855:23;4851:32;4848:52;;;4896:1;4893;4886:12;4848:52;4935:9;4922:23;4954:31;4979:5;4954:31;:::i;5020:416::-;5085:6;5093;5146:2;5134:9;5125:7;5121:23;5117:32;5114:52;;;5162:1;5159;5152:12;5114:52;5201:9;5188:23;5220:31;5245:5;5220:31;:::i;:::-;5270:5;-1:-1:-1;5327:2:14;5312:18;;5299:32;5369:15;;5362:23;5350:36;;5340:64;;5400:1;5397;5390:12;5441:795;5536:6;5544;5552;5560;5613:3;5601:9;5592:7;5588:23;5584:33;5581:53;;;5630:1;5627;5620:12;5581:53;5669:9;5656:23;5688:31;5713:5;5688:31;:::i;:::-;5738:5;-1:-1:-1;5795:2:14;5780:18;;5767:32;5808:33;5767:32;5808:33;:::i;:::-;5860:7;-1:-1:-1;5914:2:14;5899:18;;5886:32;;-1:-1:-1;5969:2:14;5954:18;;5941:32;5996:18;5985:30;;5982:50;;;6028:1;6025;6018:12;5982:50;6051:22;;6104:4;6096:13;;6092:27;-1:-1:-1;6082:55:14;;6133:1;6130;6123:12;6082:55;6156:74;6222:7;6217:2;6204:16;6199:2;6195;6191:11;6156:74;:::i;:::-;6146:84;;;5441:795;;;;;;;:::o;6241:248::-;6309:6;6317;6370:2;6358:9;6349:7;6345:23;6341:32;6338:52;;;6386:1;6383;6376:12;6338:52;-1:-1:-1;;6409:23:14;;;6479:2;6464:18;;;6451:32;;-1:-1:-1;6241:248:14:o;6896:388::-;6964:6;6972;7025:2;7013:9;7004:7;7000:23;6996:32;6993:52;;;7041:1;7038;7031:12;6993:52;7080:9;7067:23;7099:31;7124:5;7099:31;:::i;:::-;7149:5;-1:-1:-1;7206:2:14;7191:18;;7178:32;7219:33;7178:32;7219:33;:::i;7289:380::-;7368:1;7364:12;;;;7411;;;7432:61;;7486:4;7478:6;7474:17;7464:27;;7432:61;7539:2;7531:6;7528:14;7508:18;7505:38;7502:161;;;7585:10;7580:3;7576:20;7573:1;7566:31;7620:4;7617:1;7610:15;7648:4;7645:1;7638:15;7502:161;;7289:380;;;:::o;8507:403::-;8709:2;8691:21;;;8748:2;8728:18;;;8721:30;8787:34;8782:2;8767:18;;8760:62;-1:-1:-1;;;8853:2:14;8838:18;;8831:37;8900:3;8885:19;;8507:403::o;9265:184::-;9335:6;9388:2;9376:9;9367:7;9363:23;9359:32;9356:52;;;9404:1;9401;9394:12;9356:52;-1:-1:-1;9427:16:14;;9265:184;-1:-1:-1;9265:184:14:o;9454:251::-;9524:6;9577:2;9565:9;9556:7;9552:23;9548:32;9545:52;;;9593:1;9590;9583:12;9545:52;9625:9;9619:16;9644:31;9669:5;9644:31;:::i;9710:127::-;9771:10;9766:3;9762:20;9759:1;9752:31;9802:4;9799:1;9792:15;9826:4;9823:1;9816:15;10531:127;10592:10;10587:3;10583:20;10580:1;10573:31;10623:4;10620:1;10613:15;10647:4;10644:1;10637:15;10663:128;10703:3;10734:1;10730:6;10727:1;10724:13;10721:39;;;10740:18;;:::i;:::-;-1:-1:-1;10776:9:14;;10663:128::o;11565:470::-;11744:3;11782:6;11776:13;11798:53;11844:6;11839:3;11832:4;11824:6;11820:17;11798:53;:::i;:::-;11914:13;;11873:16;;;;11936:57;11914:13;11873:16;11970:4;11958:17;;11936:57;:::i;:::-;12009:20;;11565:470;-1:-1:-1;;;;11565:470:14:o;13972:125::-;14012:4;14040:1;14037;14034:8;14031:34;;;14045:18;;:::i;:::-;-1:-1:-1;14082:9:14;;13972:125::o;14456:414::-;14658:2;14640:21;;;14697:2;14677:18;;;14670:30;14736:34;14731:2;14716:18;;14709:62;-1:-1:-1;;;14802:2:14;14787:18;;14780:48;14860:3;14845:19;;14456:414::o;14875:135::-;14914:3;-1:-1:-1;;14935:17:14;;14932:43;;;14955:18;;:::i;:::-;-1:-1:-1;15002:1:14;14991:13;;14875:135::o;15015:127::-;15076:10;15071:3;15067:20;15064:1;15057:31;15107:4;15104:1;15097:15;15131:4;15128:1;15121:15;15147:120;15187:1;15213;15203:35;;15218:18;;:::i;:::-;-1:-1:-1;15252:9:14;;15147:120::o;15272:112::-;15304:1;15330;15320:35;;15335:18;;:::i;:::-;-1:-1:-1;15369:9:14;;15272:112::o;15389:127::-;15450:10;15445:3;15441:20;15438:1;15431:31;15481:4;15478:1;15471:15;15505:4;15502:1;15495:15;15521:489;-1:-1:-1;;;;;15790:15:14;;;15772:34;;15842:15;;15837:2;15822:18;;15815:43;15889:2;15874:18;;15867:34;;;15937:3;15932:2;15917:18;;15910:31;;;15715:4;;15958:46;;15984:19;;15976:6;15958:46;:::i;:::-;15950:54;15521:489;-1:-1:-1;;;;;;15521:489:14:o;16015:249::-;16084:6;16137:2;16125:9;16116:7;16112:23;16108:32;16105:52;;;16153:1;16150;16143:12;16105:52;16185:9;16179:16;16204:30;16228:5;16204:30;:::i
Swarm Source
ipfs://3f288ddd3d4000959f4e9db0762f72389bb8a365867bf2980c13391a044bab5b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.