ERC-721
NFT
Overview
Max Total Supply
8,888 CHCC
Holders
2,019
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CyberHornets
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract CyberHornets is ERC721Enumerable, Ownable, PaymentSplitter { using Strings for uint256; uint256 private _price = 0.08 ether; string private extension = '.json'; string public _baseTokenURI = ''; string public HORNET_PROVENANCE = ''; uint256 public MAX_TOKENS_PER_TRANSACTION = 8; uint256 public MAX_SUPPLY = 8888; uint256 public _startTime = 1633687200; uint256 public _presaleStartTime = 1633600800; string public LICENSE_TEXT = ""; // IT IS WHAT IT SAYS bool licenseLocked = false; // TEAM CAN'T EDIT THE LICENSE AFTER THIS GETS TRUE mapping(uint => string) private _owners; event licenseisLocked(string _licenseText); mapping(address => bool) private _hasPresaleAccess; // Withdrawal addresses address t1 = 0xda73C4DFa2F04B189A7f8EafB586501b4D0B73dC; address t2 = 0xe26CD2A3d583a1141f62Ec16c4A0a2d8f95027c9; address[] addressList = [t1, t2]; uint256[] shareList = [10, 90]; constructor() ERC721("Cyber Hornets Colony Club", "CHCC") PaymentSplitter(addressList, shareList) {} function tokenURI(uint256 tokenId) public override(ERC721) view returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), extension)) : ""; } function mint(uint256 _count) public payable { uint256 supply = totalSupply(); require( block.timestamp >= _presaleStartTime, "Presale has not started yet" ); require( block.timestamp >= _startTime || _hasPresaleAccess[msg.sender], "General sale has not started yet" ); uint256 currentBalance = balanceOf(msg.sender); require( currentBalance + _count <= MAX_TOKENS_PER_TRANSACTION, "You can mint a maximum of 8 Hornets in total" ); require( supply + _count <= MAX_SUPPLY, "Exceeds max Hornet supply" ); require( msg.value >= _price * _count, "Ether sent is not correct" ); for(uint256 i; i < _count; i++){ _safeMint( msg.sender, supply + i ); } } function airdrop(address _wallet, uint256 _count) public onlyOwner { uint256 supply = totalSupply(); require(supply + _count <= MAX_SUPPLY, "Exceeds maximum Hornet supply"); for(uint256 i; i < _count; i++){ _safeMint(_wallet, supply + i ); } } // Just in case Eth does some crazy stuff function setPrice(uint256 _newPrice) public onlyOwner { _price = _newPrice; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { _baseTokenURI = _newBaseURI; } function getPrice() public view returns (uint256){ return _price; } function setProvenanceHash(string memory _provenanceHash) public onlyOwner { HORNET_PROVENANCE = _provenanceHash; } // Returns the license for tokens function tokenLicense(uint _id) public view returns(string memory) { require(_id < totalSupply(), "Invalid ID"); return LICENSE_TEXT; } // Locks the license to prevent further changes function lockLicense() public onlyOwner { licenseLocked = true; emit licenseisLocked(LICENSE_TEXT); } // Change the license function changeLicense(string memory _license) public onlyOwner { require(licenseLocked == false, "License already locked"); LICENSE_TEXT = _license; } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setStartTime(uint256 _newStartTime) public onlyOwner { _startTime = _newStartTime; } function setPresaleStartTime(uint256 _newStartTime) public onlyOwner { _presaleStartTime = _newStartTime; } function setPresaleAccessList(address[] memory _addressList) public onlyOwner { for(uint256 i; i < _addressList.length; i++){ _hasPresaleAccess[_addressList[i]] = true; } } function hasPresaleAccess(address wallet) public view returns(bool) { return _hasPresaleAccess[wallet]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Address.sol"; import "../utils/Context.sol"; import "../utils/math/SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"HORNET_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"airdrop","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":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"hasPresaleAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"setPresaleAccessList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartTime","type":"uint256"}],"name":"setPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405267011c37937e0800006010556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601190805190602001906200005d92919062000862565b5060405180602001604052806000815250601290805190602001906200008592919062000862565b506040518060200160405280600081525060139080519060200190620000ad92919062000862565b5060086014556122b860155563616016a060165563615ec5206017556040518060200160405280600081525060189080519060200190620000f092919062000862565b506000601960006101000a81548160ff02191690831515021790555073da73c4dfa2f04b189a7f8eafb586501b4d0b73dc601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e26cd2a3d583a1141f62ec16c4a0a2d8f95027c9601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601e90600262000279929190620008f3565b506040518060400160405280600a60ff168152602001605a60ff16815250601f906002620002a992919062000982565b50348015620002b757600080fd5b50601e8054806020026020016040519081016040528092919081815260200182805480156200033c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620002f1575b5050505050601f8054806020026020016040519081016040528092919081815260200182805480156200038f57602002820191906000526020600020905b8154815260200190600101908083116200037a575b50505050506040518060400160405280601981526020017f437962657220486f726e65747320436f6c6f6e7920436c7562000000000000008152506040518060400160405280600481526020017f434843430000000000000000000000000000000000000000000000000000000081525081600090805190602001906200041892919062000862565b5080600190805190602001906200043192919062000862565b50505062000454620004486200055a60201b60201c565b6200056260201b60201c565b80518251146200049b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004929062000b2c565b60405180910390fd5b6000825111620004e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d99062000b70565b60405180910390fd5b60005b825181101562000551576200053b83828151811062000509576200050862000d42565b5b602002602001015183838151811062000527576200052662000d42565b5b60200260200101516200062860201b60201c565b8080620005489062000c96565b915050620004e5565b50505062000eb0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200069b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006929062000b0a565b60405180910390fd5b60008111620006e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d89062000b92565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000766576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075d9062000b4e565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b546200081d919062000bc5565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200085692919062000add565b60405180910390a15050565b828054620008709062000c60565b90600052602060002090601f016020900481019282620008945760008555620008e0565b82601f10620008af57805160ff1916838001178555620008e0565b82800160010185558215620008e0579182015b82811115620008df578251825591602001919060010190620008c2565b5b509050620008ef9190620009d9565b5090565b8280548282559060005260206000209081019282156200096f579160200282015b828111156200096e5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000914565b5b5090506200097e9190620009d9565b5090565b828054828255906000526020600020908101928215620009c6579160200282015b82811115620009c5578251829060ff16905591602001919060010190620009a3565b5b509050620009d59190620009d9565b5090565b5b80821115620009f4576000816000905550600101620009da565b5090565b62000a038162000c22565b82525050565b600062000a18602c8362000bb4565b915062000a258262000d71565b604082019050919050565b600062000a3f60328362000bb4565b915062000a4c8262000dc0565b604082019050919050565b600062000a66602b8362000bb4565b915062000a738262000e0f565b604082019050919050565b600062000a8d601a8362000bb4565b915062000a9a8262000e5e565b602082019050919050565b600062000ab4601d8362000bb4565b915062000ac18262000e87565b602082019050919050565b62000ad78162000c56565b82525050565b600060408201905062000af46000830185620009f8565b62000b03602083018462000acc565b9392505050565b6000602082019050818103600083015262000b258162000a09565b9050919050565b6000602082019050818103600083015262000b478162000a30565b9050919050565b6000602082019050818103600083015262000b698162000a57565b9050919050565b6000602082019050818103600083015262000b8b8162000a7e565b9050919050565b6000602082019050818103600083015262000bad8162000aa5565b9050919050565b600082825260208201905092915050565b600062000bd28262000c56565b915062000bdf8362000c56565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c175762000c1662000ce4565b5b828201905092915050565b600062000c2f8262000c36565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c7957607f821691505b6020821081141562000c905762000c8f62000d13565b5b50919050565b600062000ca38262000c56565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cd95762000cd862000ce4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b6157198062000ec06000396000f3fe6080604052600436106102815760003560e01c80638b83209b1161014f578063b09904b5116100c1578063cfc86f7b1161007a578063cfc86f7b14610a0a578063d9b137b214610a35578063e33b7de314610a72578063e985e9c514610a9d578063f2fde38b14610ada578063fa1acb5c14610b03576102c8565b8063b09904b5146108fc578063b88d4fde14610925578063bf4702fc1461094e578063c63f439914610965578063c87b56dd14610990578063ce7c2ac2146109cd576102c8565b80639852595c116101135780639852595c146107f957806398d5fdca146108365780639c3e72bd14610861578063a0712d681461088c578063a22cb465146108a8578063a91b9b2a146108d1576102c8565b80638b83209b146107145780638ba4cc3c146107515780638da5cb5b1461077a57806391b7f5ed146107a557806395d89b41146107ce576102c8565b806332cb6b0c116101f35780634f6ccce7116101ac5780634f6ccce7146105f25780634fce1de31461062f57806355f804b31461065a5780636352211e1461068357806370a08231146106c0578063715018a6146106fd576102c8565b806332cb6b0c146104e457806334131cd31461050f5780633a98ef39146105385780633e0a322d1461056357806342842e0e1461058c578063438b6300146105b5576102c8565b8063109695231161024557806310969523146103d857806318160ddd14610401578063191655871461042c57806323b872dd14610455578063296cab551461047e5780632f745c59146104a7576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b3146103725780630f2091861461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610b2e565b346040516102be9291906144eb565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613ca5565b610b36565b6040516103019190614536565b60405180910390f35b34801561031657600080fd5b5061031f610bb0565b60405161032c9190614551565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613d48565b610c42565b604051610369919061445b565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613c1c565b610cc7565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613a6c565b610ddf565b6040516103cf9190614536565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613cff565b610e35565b005b34801561040d57600080fd5b50610416610ecb565b6040516104239190614955565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613a99565b610ed8565b005b34801561046157600080fd5b5061047c60048036038101906104779190613b06565b611140565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613d48565b6111a0565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613c1c565b611226565b6040516104db9190614955565b60405180910390f35b3480156104f057600080fd5b506104f96112cb565b6040516105069190614955565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613c5c565b6112d1565b005b34801561054457600080fd5b5061054d6113e2565b60405161055a9190614955565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613d48565b6113ec565b005b34801561059857600080fd5b506105b360048036038101906105ae9190613b06565b611472565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190613a6c565b611492565b6040516105e99190614514565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613d48565b611540565b6040516106269190614955565b60405180910390f35b34801561063b57600080fd5b506106446115b1565b6040516106519190614955565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613cff565b6115b7565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613d48565b61164d565b6040516106b7919061445b565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613a6c565b6116ff565b6040516106f49190614955565b60405180910390f35b34801561070957600080fd5b506107126117b7565b005b34801561072057600080fd5b5061073b60048036038101906107369190613d48565b61183f565b604051610748919061445b565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613c1c565b611887565b005b34801561078657600080fd5b5061078f611998565b60405161079c919061445b565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613d48565b6119c2565b005b3480156107da57600080fd5b506107e3611a48565b6040516107f09190614551565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190613a6c565b611ada565b60405161082d9190614955565b60405180910390f35b34801561084257600080fd5b5061084b611b23565b6040516108589190614955565b60405180910390f35b34801561086d57600080fd5b50610876611b2d565b6040516108839190614551565b60405180910390f35b6108a660048036038101906108a19190613d48565b611bbb565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613bdc565b611ddb565b005b3480156108dd57600080fd5b506108e6611f5c565b6040516108f39190614955565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613cff565b611f62565b005b34801561093157600080fd5b5061094c60048036038101906109479190613b59565b61204e565b005b34801561095a57600080fd5b506109636120b0565b005b34801561097157600080fd5b5061097a612181565b6040516109879190614551565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190613d48565b61220f565b6040516109c49190614551565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190613a6c565b6122b9565b604051610a019190614955565b60405180910390f35b348015610a1657600080fd5b50610a1f612302565b604051610a2c9190614551565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613d48565b612390565b604051610a699190614551565b60405180910390f35b348015610a7e57600080fd5b50610a8761246d565b604051610a949190614955565b60405180910390f35b348015610aa957600080fd5b50610ac46004803603810190610abf9190613ac6565b612477565b604051610ad19190614536565b60405180910390f35b348015610ae657600080fd5b50610b016004803603810190610afc9190613a6c565b61250b565b005b348015610b0f57600080fd5b50610b18612603565b604051610b259190614955565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba95750610ba882612609565b5b9050919050565b606060008054610bbf90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb90614cd2565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d826126eb565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614815565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd28261164d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906148b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d62610b2e565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b610b2e565b612477565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614715565b60405180910390fd5b610dda8383612757565b505050565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e3d610b2e565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611998565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614855565b60405180910390fd5b8060139080519060200190610ec79291906137cd565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614615565b60405180910390fd5b6000600c5447610f6a9190614abf565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610ffc9190614b46565b6110069190614b15565b6110109190614ba0565b90506000811415611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906146f5565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a19190614abf565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c546110f29190614abf565b600c819055506111028382612810565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051611133929190614476565b60405180910390a1505050565b61115161114b610b2e565b82612904565b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790614915565b60405180910390fd5b61119b8383836129e2565b505050565b6111a8610b2e565b73ffffffffffffffffffffffffffffffffffffffff166111c6611998565b73ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614855565b60405180910390fd5b8060178190555050565b6000611231836116ff565b8210611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990614595565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60155481565b6112d9610b2e565b73ffffffffffffffffffffffffffffffffffffffff166112f7611998565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614855565b60405180910390fd5b60005b81518110156113de576001601b600084848151811061137257611371614e6b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113d690614d35565b915050611350565b5050565b6000600b54905090565b6113f4610b2e565b73ffffffffffffffffffffffffffffffffffffffff16611412611998565b73ffffffffffffffffffffffffffffffffffffffff1614611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90614855565b60405180910390fd5b8060168190555050565b61148d8383836040518060200160405280600081525061204e565b505050565b6060600061149f836116ff565b905060008167ffffffffffffffff8111156114bd576114bc614e9a565b5b6040519080825280602002602001820160405280156114eb5781602001602082028036833780820191505090505b50905060005b82811015611535576115038582611226565b82828151811061151657611515614e6b565b5b602002602001018181525050808061152d90614d35565b9150506114f1565b508092505050919050565b600061154a610ecb565b821061158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614935565b60405180910390fd5b6008828154811061159f5761159e614e6b565b5b90600052602060002001549050919050565b60145481565b6115bf610b2e565b73ffffffffffffffffffffffffffffffffffffffff166115dd611998565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614855565b60405180910390fd5b80601290805190602001906116499291906137cd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90614775565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790614755565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117bf610b2e565b73ffffffffffffffffffffffffffffffffffffffff166117dd611998565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614855565b60405180910390fd5b61183d6000612c3e565b565b6000600f828154811061185557611854614e6b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61188f610b2e565b73ffffffffffffffffffffffffffffffffffffffff166118ad611998565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614855565b60405180910390fd5b600061190d610ecb565b9050601554828261191e9190614abf565b111561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614735565b60405180910390fd5b60005b828110156119925761197f84828461197a9190614abf565b612d04565b808061198a90614d35565b915050611962565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119ca610b2e565b73ffffffffffffffffffffffffffffffffffffffff166119e8611998565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614855565b60405180910390fd5b8060108190555050565b606060018054611a5790614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8390614cd2565b8015611ad05780601f10611aa557610100808354040283529160200191611ad0565b820191906000526020600020905b815481529060010190602001808311611ab357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b60188054611b3a90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6690614cd2565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b505050505081565b6000611bc5610ecb565b9050601754421015611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614835565b60405180910390fd5b60165442101580611c665750601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614675565b60405180910390fd5b6000611cb0336116ff565b90506014548382611cc19190614abf565b1115611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906147b5565b60405180910390fd5b6015548383611d119190614abf565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d49906147f5565b60405180910390fd5b82601054611d609190614b46565b341015611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d99906148d5565b60405180910390fd5b60005b83811015611dd557611dc2338285611dbd9190614abf565b612d04565b8080611dcd90614d35565b915050611da5565b50505050565b611de3610b2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614655565b60405180910390fd5b8060056000611e5e610b2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0b610b2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f509190614536565b60405180910390a35050565b60175481565b611f6a610b2e565b73ffffffffffffffffffffffffffffffffffffffff16611f88611998565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590614855565b60405180910390fd5b60001515601960009054906101000a900460ff16151514612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906148f5565b60405180910390fd5b806018908051906020019061204a9291906137cd565b5050565b61205f612059610b2e565b83612904565b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614915565b60405180910390fd5b6120aa84848484612d22565b50505050565b6120b8610b2e565b73ffffffffffffffffffffffffffffffffffffffff166120d6611998565b73ffffffffffffffffffffffffffffffffffffffff161461212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614855565b60405180910390fd5b6001601960006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b060186040516121779190614573565b60405180910390a1565b6013805461218e90614cd2565b80601f01602080910402602001604051908101604052809291908181526020018280546121ba90614cd2565b80156122075780601f106121dc57610100808354040283529160200191612207565b820191906000526020600020905b8154815290600101906020018083116121ea57829003601f168201915b505050505081565b606061221a826126eb565b612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225090614895565b60405180910390fd5b6000612263612d7e565b9050600081511161228357604051806020016040528060008152506122b1565b8061228d84612e10565b60116040516020016122a193929190614415565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6012805461230f90614cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461233b90614cd2565b80156123885780601f1061235d57610100808354040283529160200191612388565b820191906000526020600020905b81548152906001019060200180831161236b57829003601f168201915b505050505081565b606061239a610ecb565b82106123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614795565b60405180910390fd5b601880546123e890614cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461241490614cd2565b80156124615780601f1061243657610100808354040283529160200191612461565b820191906000526020600020905b81548152906001019060200180831161244457829003601f168201915b50505050509050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612513610b2e565b73ffffffffffffffffffffffffffffffffffffffff16612531611998565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614855565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee906145d5565b60405180910390fd5b61260081612c3e565b50565b60165481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126e457506126e382612f71565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ca8361164d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906146b5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161287990614446565b60006040518083038185875af1925050503d80600081146128b6576040519150601f19603f3d011682016040523d82523d6000602084013e6128bb565b606091505b50509050806128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614695565b60405180910390fd5b505050565b600061290f826126eb565b61294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906146d5565b60405180910390fd5b60006129598361164d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129c857508373ffffffffffffffffffffffffffffffffffffffff166129b084610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b806129d957506129d88185612477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a028261164d565b73ffffffffffffffffffffffffffffffffffffffff1614612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90614875565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614635565b60405180910390fd5b612ad3838383612fdb565b612ade600082612757565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2e9190614ba0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b859190614abf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d1e8282604051806020016040528060008152506130ef565b5050565b612d2d8484846129e2565b612d398484848461314a565b612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906145b5565b60405180910390fd5b50505050565b606060128054612d8d90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054612db990614cd2565b8015612e065780601f10612ddb57610100808354040283529160200191612e06565b820191906000526020600020905b815481529060010190602001808311612de957829003601f168201915b5050505050905090565b60606000821415612e58576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f6c565b600082905060005b60008214612e8a578080612e7390614d35565b915050600a82612e839190614b15565b9150612e60565b60008167ffffffffffffffff811115612ea657612ea5614e9a565b5b6040519080825280601f01601f191660200182016040528015612ed85781602001600182028036833780820191505090505b5090505b60008514612f6557600182612ef19190614ba0565b9150600a85612f009190614d7e565b6030612f0c9190614abf565b60f81b818381518110612f2257612f21614e6b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5e9190614b15565b9450612edc565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fe68383836132e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561302957613024816132e6565b613068565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461306757613066838261332f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ab576130a68161349c565b6130ea565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130e9576130e8828261356d565b5b5b505050565b6130f983836135ec565b613106600084848461314a565b613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c906145b5565b60405180910390fd5b505050565b600061316b8473ffffffffffffffffffffffffffffffffffffffff166137ba565b156132d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613194610b2e565b8786866040518563ffffffff1660e01b81526004016131b6949392919061449f565b602060405180830381600087803b1580156131d057600080fd5b505af192505050801561320157506040513d601f19601f820116820180604052508101906131fe9190613cd2565b60015b613284573d8060008114613231576040519150601f19603f3d011682016040523d82523d6000602084013e613236565b606091505b5060008151141561327c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613273906145b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132d9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161333c846116ff565b6133469190614ba0565b905060006007600084815260200190815260200160002054905081811461342b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134b09190614ba0565b90506000600960008481526020019081526020016000205490506000600883815481106134e0576134df614e6b565b5b90600052602060002001549050806008838154811061350257613501614e6b565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061355157613550614e3c565b5b6001900381819060005260206000200160009055905550505050565b6000613578836116ff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561365c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613653906147d5565b60405180910390fd5b613665816126eb565b156136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c906145f5565b60405180910390fd5b6136b160008383612fdb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137019190614abf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137d990614cd2565b90600052602060002090601f0160209004810192826137fb5760008555613842565b82601f1061381457805160ff1916838001178555613842565b82800160010185558215613842579182015b82811115613841578251825591602001919060010190613826565b5b50905061384f9190613853565b5090565b5b8082111561386c576000816000905550600101613854565b5090565b600061388361387e84614995565b614970565b905080838252602082019050828560208602820111156138a6576138a5614ece565b5b60005b858110156138d657816138bc8882613964565b8452602084019350602083019250506001810190506138a9565b5050509392505050565b60006138f36138ee846149c1565b614970565b90508281526020810184848401111561390f5761390e614ed3565b5b61391a848285614c90565b509392505050565b6000613935613930846149f2565b614970565b90508281526020810184848401111561395157613950614ed3565b5b61395c848285614c90565b509392505050565b60008135905061397381615670565b92915050565b60008135905061398881615687565b92915050565b600082601f8301126139a3576139a2614ec9565b5b81356139b3848260208601613870565b91505092915050565b6000813590506139cb8161569e565b92915050565b6000813590506139e0816156b5565b92915050565b6000815190506139f5816156b5565b92915050565b600082601f830112613a1057613a0f614ec9565b5b8135613a208482602086016138e0565b91505092915050565b600082601f830112613a3e57613a3d614ec9565b5b8135613a4e848260208601613922565b91505092915050565b600081359050613a66816156cc565b92915050565b600060208284031215613a8257613a81614edd565b5b6000613a9084828501613964565b91505092915050565b600060208284031215613aaf57613aae614edd565b5b6000613abd84828501613979565b91505092915050565b60008060408385031215613add57613adc614edd565b5b6000613aeb85828601613964565b9250506020613afc85828601613964565b9150509250929050565b600080600060608486031215613b1f57613b1e614edd565b5b6000613b2d86828701613964565b9350506020613b3e86828701613964565b9250506040613b4f86828701613a57565b9150509250925092565b60008060008060808587031215613b7357613b72614edd565b5b6000613b8187828801613964565b9450506020613b9287828801613964565b9350506040613ba387828801613a57565b925050606085013567ffffffffffffffff811115613bc457613bc3614ed8565b5b613bd0878288016139fb565b91505092959194509250565b60008060408385031215613bf357613bf2614edd565b5b6000613c0185828601613964565b9250506020613c12858286016139bc565b9150509250929050565b60008060408385031215613c3357613c32614edd565b5b6000613c4185828601613964565b9250506020613c5285828601613a57565b9150509250929050565b600060208284031215613c7257613c71614edd565b5b600082013567ffffffffffffffff811115613c9057613c8f614ed8565b5b613c9c8482850161398e565b91505092915050565b600060208284031215613cbb57613cba614edd565b5b6000613cc9848285016139d1565b91505092915050565b600060208284031215613ce857613ce7614edd565b5b6000613cf6848285016139e6565b91505092915050565b600060208284031215613d1557613d14614edd565b5b600082013567ffffffffffffffff811115613d3357613d32614ed8565b5b613d3f84828501613a29565b91505092915050565b600060208284031215613d5e57613d5d614edd565b5b6000613d6c84828501613a57565b91505092915050565b6000613d8183836143f7565b60208301905092915050565b613d9681614c5a565b82525050565b613da581614bd4565b82525050565b6000613db682614a48565b613dc08185614a76565b9350613dcb83614a23565b8060005b83811015613dfc578151613de38882613d75565b9750613dee83614a69565b925050600181019050613dcf565b5085935050505092915050565b613e1281614bf8565b82525050565b6000613e2382614a53565b613e2d8185614a87565b9350613e3d818560208601614c9f565b613e4681614ee2565b840191505092915050565b6000613e5c82614a5e565b613e668185614aa3565b9350613e76818560208601614c9f565b613e7f81614ee2565b840191505092915050565b6000613e9582614a5e565b613e9f8185614ab4565b9350613eaf818560208601614c9f565b80840191505092915050565b60008154613ec881614cd2565b613ed28186614aa3565b94506001821660008114613eed5760018114613eff57613f32565b60ff1983168652602086019350613f32565b613f0885614a33565b60005b83811015613f2a57815481890152600182019150602081019050613f0b565b808801955050505b50505092915050565b60008154613f4881614cd2565b613f528186614ab4565b94506001821660008114613f6d5760018114613f7e57613fb1565b60ff19831686528186019350613fb1565b613f8785614a33565b60005b83811015613fa957815481890152600182019150602081019050613f8a565b838801955050505b50505092915050565b6000613fc7602b83614aa3565b9150613fd282614ef3565b604082019050919050565b6000613fea603283614aa3565b9150613ff582614f42565b604082019050919050565b600061400d602683614aa3565b915061401882614f91565b604082019050919050565b6000614030601c83614aa3565b915061403b82614fe0565b602082019050919050565b6000614053602683614aa3565b915061405e82615009565b604082019050919050565b6000614076602483614aa3565b915061408182615058565b604082019050919050565b6000614099601983614aa3565b91506140a4826150a7565b602082019050919050565b60006140bc602083614aa3565b91506140c7826150d0565b602082019050919050565b60006140df603a83614aa3565b91506140ea826150f9565b604082019050919050565b6000614102601d83614aa3565b915061410d82615148565b602082019050919050565b6000614125602c83614aa3565b915061413082615171565b604082019050919050565b6000614148602b83614aa3565b9150614153826151c0565b604082019050919050565b600061416b603883614aa3565b91506141768261520f565b604082019050919050565b600061418e601d83614aa3565b91506141998261525e565b602082019050919050565b60006141b1602a83614aa3565b91506141bc82615287565b604082019050919050565b60006141d4602983614aa3565b91506141df826152d6565b604082019050919050565b60006141f7600a83614aa3565b915061420282615325565b602082019050919050565b600061421a602c83614aa3565b91506142258261534e565b604082019050919050565b600061423d602083614aa3565b91506142488261539d565b602082019050919050565b6000614260601983614aa3565b915061426b826153c6565b602082019050919050565b6000614283602c83614aa3565b915061428e826153ef565b604082019050919050565b60006142a6601b83614aa3565b91506142b18261543e565b602082019050919050565b60006142c9602083614aa3565b91506142d482615467565b602082019050919050565b60006142ec602983614aa3565b91506142f782615490565b604082019050919050565b600061430f602f83614aa3565b915061431a826154df565b604082019050919050565b6000614332602183614aa3565b915061433d8261552e565b604082019050919050565b6000614355601983614aa3565b91506143608261557d565b602082019050919050565b6000614378601683614aa3565b9150614383826155a6565b602082019050919050565b600061439b600083614a98565b91506143a6826155cf565b600082019050919050565b60006143be603183614aa3565b91506143c9826155d2565b604082019050919050565b60006143e1602c83614aa3565b91506143ec82615621565b604082019050919050565b61440081614c50565b82525050565b61440f81614c50565b82525050565b60006144218286613e8a565b915061442d8285613e8a565b91506144398284613f3b565b9150819050949350505050565b60006144518261438e565b9150819050919050565b60006020820190506144706000830184613d9c565b92915050565b600060408201905061448b6000830185613d8d565b6144986020830184614406565b9392505050565b60006080820190506144b46000830187613d9c565b6144c16020830186613d9c565b6144ce6040830185614406565b81810360608301526144e08184613e18565b905095945050505050565b60006040820190506145006000830185613d9c565b61450d6020830184614406565b9392505050565b6000602082019050818103600083015261452e8184613dab565b905092915050565b600060208201905061454b6000830184613e09565b92915050565b6000602082019050818103600083015261456b8184613e51565b905092915050565b6000602082019050818103600083015261458d8184613ebb565b905092915050565b600060208201905081810360008301526145ae81613fba565b9050919050565b600060208201905081810360008301526145ce81613fdd565b9050919050565b600060208201905081810360008301526145ee81614000565b9050919050565b6000602082019050818103600083015261460e81614023565b9050919050565b6000602082019050818103600083015261462e81614046565b9050919050565b6000602082019050818103600083015261464e81614069565b9050919050565b6000602082019050818103600083015261466e8161408c565b9050919050565b6000602082019050818103600083015261468e816140af565b9050919050565b600060208201905081810360008301526146ae816140d2565b9050919050565b600060208201905081810360008301526146ce816140f5565b9050919050565b600060208201905081810360008301526146ee81614118565b9050919050565b6000602082019050818103600083015261470e8161413b565b9050919050565b6000602082019050818103600083015261472e8161415e565b9050919050565b6000602082019050818103600083015261474e81614181565b9050919050565b6000602082019050818103600083015261476e816141a4565b9050919050565b6000602082019050818103600083015261478e816141c7565b9050919050565b600060208201905081810360008301526147ae816141ea565b9050919050565b600060208201905081810360008301526147ce8161420d565b9050919050565b600060208201905081810360008301526147ee81614230565b9050919050565b6000602082019050818103600083015261480e81614253565b9050919050565b6000602082019050818103600083015261482e81614276565b9050919050565b6000602082019050818103600083015261484e81614299565b9050919050565b6000602082019050818103600083015261486e816142bc565b9050919050565b6000602082019050818103600083015261488e816142df565b9050919050565b600060208201905081810360008301526148ae81614302565b9050919050565b600060208201905081810360008301526148ce81614325565b9050919050565b600060208201905081810360008301526148ee81614348565b9050919050565b6000602082019050818103600083015261490e8161436b565b9050919050565b6000602082019050818103600083015261492e816143b1565b9050919050565b6000602082019050818103600083015261494e816143d4565b9050919050565b600060208201905061496a6000830184614406565b92915050565b600061497a61498b565b90506149868282614d04565b919050565b6000604051905090565b600067ffffffffffffffff8211156149b0576149af614e9a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149dc576149db614e9a565b5b6149e582614ee2565b9050602081019050919050565b600067ffffffffffffffff821115614a0d57614a0c614e9a565b5b614a1682614ee2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614aca82614c50565b9150614ad583614c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0a57614b09614daf565b5b828201905092915050565b6000614b2082614c50565b9150614b2b83614c50565b925082614b3b57614b3a614dde565b5b828204905092915050565b6000614b5182614c50565b9150614b5c83614c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9557614b94614daf565b5b828202905092915050565b6000614bab82614c50565b9150614bb683614c50565b925082821015614bc957614bc8614daf565b5b828203905092915050565b6000614bdf82614c30565b9050919050565b6000614bf182614c30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614c6582614c6c565b9050919050565b6000614c7782614c7e565b9050919050565b6000614c8982614c30565b9050919050565b82818337600083830152505050565b60005b83811015614cbd578082015181840152602081019050614ca2565b83811115614ccc576000848401525b50505050565b60006002820490506001821680614cea57607f821691505b60208210811415614cfe57614cfd614e0d565b5b50919050565b614d0d82614ee2565b810181811067ffffffffffffffff82111715614d2c57614d2b614e9a565b5b80604052505050565b6000614d4082614c50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7357614d72614daf565b5b600182019050919050565b6000614d8982614c50565b9150614d9483614c50565b925082614da457614da3614dde565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e6572616c2073616c6520686173206e6f74207374617274656420796574600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473206d6178696d756d20486f726e657420737570706c79000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420494400000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f66203820486f726e60008201527f65747320696e20746f74616c0000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45786365656473206d617820486f726e657420737570706c7900000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742073746172746564207965740000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4c6963656e736520616c7265616479206c6f636b656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61567981614bd4565b811461568457600080fd5b50565b61569081614be6565b811461569b57600080fd5b50565b6156a781614bf8565b81146156b257600080fd5b50565b6156be81614c04565b81146156c957600080fd5b50565b6156d581614c50565b81146156e057600080fd5b5056fea26469706673582212209a1a717c9fdf1d801837a8f222a189ec67e2e7926b5755139a77b98939be999f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102815760003560e01c80638b83209b1161014f578063b09904b5116100c1578063cfc86f7b1161007a578063cfc86f7b14610a0a578063d9b137b214610a35578063e33b7de314610a72578063e985e9c514610a9d578063f2fde38b14610ada578063fa1acb5c14610b03576102c8565b8063b09904b5146108fc578063b88d4fde14610925578063bf4702fc1461094e578063c63f439914610965578063c87b56dd14610990578063ce7c2ac2146109cd576102c8565b80639852595c116101135780639852595c146107f957806398d5fdca146108365780639c3e72bd14610861578063a0712d681461088c578063a22cb465146108a8578063a91b9b2a146108d1576102c8565b80638b83209b146107145780638ba4cc3c146107515780638da5cb5b1461077a57806391b7f5ed146107a557806395d89b41146107ce576102c8565b806332cb6b0c116101f35780634f6ccce7116101ac5780634f6ccce7146105f25780634fce1de31461062f57806355f804b31461065a5780636352211e1461068357806370a08231146106c0578063715018a6146106fd576102c8565b806332cb6b0c146104e457806334131cd31461050f5780633a98ef39146105385780633e0a322d1461056357806342842e0e1461058c578063438b6300146105b5576102c8565b8063109695231161024557806310969523146103d857806318160ddd14610401578063191655871461042c57806323b872dd14610455578063296cab551461047e5780632f745c59146104a7576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b3146103725780630f2091861461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610b2e565b346040516102be9291906144eb565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190613ca5565b610b36565b6040516103019190614536565b60405180910390f35b34801561031657600080fd5b5061031f610bb0565b60405161032c9190614551565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190613d48565b610c42565b604051610369919061445b565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190613c1c565b610cc7565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190613a6c565b610ddf565b6040516103cf9190614536565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613cff565b610e35565b005b34801561040d57600080fd5b50610416610ecb565b6040516104239190614955565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e9190613a99565b610ed8565b005b34801561046157600080fd5b5061047c60048036038101906104779190613b06565b611140565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613d48565b6111a0565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190613c1c565b611226565b6040516104db9190614955565b60405180910390f35b3480156104f057600080fd5b506104f96112cb565b6040516105069190614955565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613c5c565b6112d1565b005b34801561054457600080fd5b5061054d6113e2565b60405161055a9190614955565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190613d48565b6113ec565b005b34801561059857600080fd5b506105b360048036038101906105ae9190613b06565b611472565b005b3480156105c157600080fd5b506105dc60048036038101906105d79190613a6c565b611492565b6040516105e99190614514565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613d48565b611540565b6040516106269190614955565b60405180910390f35b34801561063b57600080fd5b506106446115b1565b6040516106519190614955565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613cff565b6115b7565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613d48565b61164d565b6040516106b7919061445b565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613a6c565b6116ff565b6040516106f49190614955565b60405180910390f35b34801561070957600080fd5b506107126117b7565b005b34801561072057600080fd5b5061073b60048036038101906107369190613d48565b61183f565b604051610748919061445b565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613c1c565b611887565b005b34801561078657600080fd5b5061078f611998565b60405161079c919061445b565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190613d48565b6119c2565b005b3480156107da57600080fd5b506107e3611a48565b6040516107f09190614551565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190613a6c565b611ada565b60405161082d9190614955565b60405180910390f35b34801561084257600080fd5b5061084b611b23565b6040516108589190614955565b60405180910390f35b34801561086d57600080fd5b50610876611b2d565b6040516108839190614551565b60405180910390f35b6108a660048036038101906108a19190613d48565b611bbb565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613bdc565b611ddb565b005b3480156108dd57600080fd5b506108e6611f5c565b6040516108f39190614955565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190613cff565b611f62565b005b34801561093157600080fd5b5061094c60048036038101906109479190613b59565b61204e565b005b34801561095a57600080fd5b506109636120b0565b005b34801561097157600080fd5b5061097a612181565b6040516109879190614551565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190613d48565b61220f565b6040516109c49190614551565b60405180910390f35b3480156109d957600080fd5b506109f460048036038101906109ef9190613a6c565b6122b9565b604051610a019190614955565b60405180910390f35b348015610a1657600080fd5b50610a1f612302565b604051610a2c9190614551565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190613d48565b612390565b604051610a699190614551565b60405180910390f35b348015610a7e57600080fd5b50610a8761246d565b604051610a949190614955565b60405180910390f35b348015610aa957600080fd5b50610ac46004803603810190610abf9190613ac6565b612477565b604051610ad19190614536565b60405180910390f35b348015610ae657600080fd5b50610b016004803603810190610afc9190613a6c565b61250b565b005b348015610b0f57600080fd5b50610b18612603565b604051610b259190614955565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba95750610ba882612609565b5b9050919050565b606060008054610bbf90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610beb90614cd2565b8015610c385780601f10610c0d57610100808354040283529160200191610c38565b820191906000526020600020905b815481529060010190602001808311610c1b57829003601f168201915b5050505050905090565b6000610c4d826126eb565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614815565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cd28261164d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906148b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d62610b2e565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d9081610d8b610b2e565b612477565b5b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614715565b60405180910390fd5b610dda8383612757565b505050565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e3d610b2e565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611998565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614855565b60405180910390fd5b8060139080519060200190610ec79291906137cd565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190614615565b60405180910390fd5b6000600c5447610f6a9190614abf565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610ffc9190614b46565b6110069190614b15565b6110109190614ba0565b90506000811415611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906146f5565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a19190614abf565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c546110f29190614abf565b600c819055506111028382612810565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051611133929190614476565b60405180910390a1505050565b61115161114b610b2e565b82612904565b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790614915565b60405180910390fd5b61119b8383836129e2565b505050565b6111a8610b2e565b73ffffffffffffffffffffffffffffffffffffffff166111c6611998565b73ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390614855565b60405180910390fd5b8060178190555050565b6000611231836116ff565b8210611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990614595565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60155481565b6112d9610b2e565b73ffffffffffffffffffffffffffffffffffffffff166112f7611998565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614855565b60405180910390fd5b60005b81518110156113de576001601b600084848151811061137257611371614e6b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806113d690614d35565b915050611350565b5050565b6000600b54905090565b6113f4610b2e565b73ffffffffffffffffffffffffffffffffffffffff16611412611998565b73ffffffffffffffffffffffffffffffffffffffff1614611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90614855565b60405180910390fd5b8060168190555050565b61148d8383836040518060200160405280600081525061204e565b505050565b6060600061149f836116ff565b905060008167ffffffffffffffff8111156114bd576114bc614e9a565b5b6040519080825280602002602001820160405280156114eb5781602001602082028036833780820191505090505b50905060005b82811015611535576115038582611226565b82828151811061151657611515614e6b565b5b602002602001018181525050808061152d90614d35565b9150506114f1565b508092505050919050565b600061154a610ecb565b821061158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290614935565b60405180910390fd5b6008828154811061159f5761159e614e6b565b5b90600052602060002001549050919050565b60145481565b6115bf610b2e565b73ffffffffffffffffffffffffffffffffffffffff166115dd611998565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614855565b60405180910390fd5b80601290805190602001906116499291906137cd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90614775565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790614755565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117bf610b2e565b73ffffffffffffffffffffffffffffffffffffffff166117dd611998565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614855565b60405180910390fd5b61183d6000612c3e565b565b6000600f828154811061185557611854614e6b565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61188f610b2e565b73ffffffffffffffffffffffffffffffffffffffff166118ad611998565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90614855565b60405180910390fd5b600061190d610ecb565b9050601554828261191e9190614abf565b111561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614735565b60405180910390fd5b60005b828110156119925761197f84828461197a9190614abf565b612d04565b808061198a90614d35565b915050611962565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119ca610b2e565b73ffffffffffffffffffffffffffffffffffffffff166119e8611998565b73ffffffffffffffffffffffffffffffffffffffff1614611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3590614855565b60405180910390fd5b8060108190555050565b606060018054611a5790614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8390614cd2565b8015611ad05780601f10611aa557610100808354040283529160200191611ad0565b820191906000526020600020905b815481529060010190602001808311611ab357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b60188054611b3a90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6690614cd2565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b505050505081565b6000611bc5610ecb565b9050601754421015611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390614835565b60405180910390fd5b60165442101580611c665750601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90614675565b60405180910390fd5b6000611cb0336116ff565b90506014548382611cc19190614abf565b1115611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf9906147b5565b60405180910390fd5b6015548383611d119190614abf565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d49906147f5565b60405180910390fd5b82601054611d609190614b46565b341015611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d99906148d5565b60405180910390fd5b60005b83811015611dd557611dc2338285611dbd9190614abf565b612d04565b8080611dcd90614d35565b915050611da5565b50505050565b611de3610b2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614655565b60405180910390fd5b8060056000611e5e610b2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f0b610b2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f509190614536565b60405180910390a35050565b60175481565b611f6a610b2e565b73ffffffffffffffffffffffffffffffffffffffff16611f88611998565b73ffffffffffffffffffffffffffffffffffffffff1614611fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd590614855565b60405180910390fd5b60001515601960009054906101000a900460ff16151514612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906148f5565b60405180910390fd5b806018908051906020019061204a9291906137cd565b5050565b61205f612059610b2e565b83612904565b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614915565b60405180910390fd5b6120aa84848484612d22565b50505050565b6120b8610b2e565b73ffffffffffffffffffffffffffffffffffffffff166120d6611998565b73ffffffffffffffffffffffffffffffffffffffff161461212c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212390614855565b60405180910390fd5b6001601960006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b060186040516121779190614573565b60405180910390a1565b6013805461218e90614cd2565b80601f01602080910402602001604051908101604052809291908181526020018280546121ba90614cd2565b80156122075780601f106121dc57610100808354040283529160200191612207565b820191906000526020600020905b8154815290600101906020018083116121ea57829003601f168201915b505050505081565b606061221a826126eb565b612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225090614895565b60405180910390fd5b6000612263612d7e565b9050600081511161228357604051806020016040528060008152506122b1565b8061228d84612e10565b60116040516020016122a193929190614415565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6012805461230f90614cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461233b90614cd2565b80156123885780601f1061235d57610100808354040283529160200191612388565b820191906000526020600020905b81548152906001019060200180831161236b57829003601f168201915b505050505081565b606061239a610ecb565b82106123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290614795565b60405180910390fd5b601880546123e890614cd2565b80601f016020809104026020016040519081016040528092919081815260200182805461241490614cd2565b80156124615780601f1061243657610100808354040283529160200191612461565b820191906000526020600020905b81548152906001019060200180831161244457829003601f168201915b50505050509050919050565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612513610b2e565b73ffffffffffffffffffffffffffffffffffffffff16612531611998565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614855565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee906145d5565b60405180910390fd5b61260081612c3e565b50565b60165481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126e457506126e382612f71565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ca8361164d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a906146b5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161287990614446565b60006040518083038185875af1925050503d80600081146128b6576040519150601f19603f3d011682016040523d82523d6000602084013e6128bb565b606091505b50509050806128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614695565b60405180910390fd5b505050565b600061290f826126eb565b61294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906146d5565b60405180910390fd5b60006129598361164d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129c857508373ffffffffffffffffffffffffffffffffffffffff166129b084610c42565b73ffffffffffffffffffffffffffffffffffffffff16145b806129d957506129d88185612477565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a028261164d565b73ffffffffffffffffffffffffffffffffffffffff1614612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90614875565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614635565b60405180910390fd5b612ad3838383612fdb565b612ade600082612757565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2e9190614ba0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b859190614abf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d1e8282604051806020016040528060008152506130ef565b5050565b612d2d8484846129e2565b612d398484848461314a565b612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906145b5565b60405180910390fd5b50505050565b606060128054612d8d90614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054612db990614cd2565b8015612e065780601f10612ddb57610100808354040283529160200191612e06565b820191906000526020600020905b815481529060010190602001808311612de957829003601f168201915b5050505050905090565b60606000821415612e58576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f6c565b600082905060005b60008214612e8a578080612e7390614d35565b915050600a82612e839190614b15565b9150612e60565b60008167ffffffffffffffff811115612ea657612ea5614e9a565b5b6040519080825280601f01601f191660200182016040528015612ed85781602001600182028036833780820191505090505b5090505b60008514612f6557600182612ef19190614ba0565b9150600a85612f009190614d7e565b6030612f0c9190614abf565b60f81b818381518110612f2257612f21614e6b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f5e9190614b15565b9450612edc565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fe68383836132e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561302957613024816132e6565b613068565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461306757613066838261332f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ab576130a68161349c565b6130ea565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130e9576130e8828261356d565b5b5b505050565b6130f983836135ec565b613106600084848461314a565b613145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313c906145b5565b60405180910390fd5b505050565b600061316b8473ffffffffffffffffffffffffffffffffffffffff166137ba565b156132d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613194610b2e565b8786866040518563ffffffff1660e01b81526004016131b6949392919061449f565b602060405180830381600087803b1580156131d057600080fd5b505af192505050801561320157506040513d601f19601f820116820180604052508101906131fe9190613cd2565b60015b613284573d8060008114613231576040519150601f19603f3d011682016040523d82523d6000602084013e613236565b606091505b5060008151141561327c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613273906145b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132d9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161333c846116ff565b6133469190614ba0565b905060006007600084815260200190815260200160002054905081811461342b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134b09190614ba0565b90506000600960008481526020019081526020016000205490506000600883815481106134e0576134df614e6b565b5b90600052602060002001549050806008838154811061350257613501614e6b565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061355157613550614e3c565b5b6001900381819060005260206000200160009055905550505050565b6000613578836116ff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561365c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613653906147d5565b60405180910390fd5b613665816126eb565b156136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c906145f5565b60405180910390fd5b6136b160008383612fdb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137019190614abf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137d990614cd2565b90600052602060002090601f0160209004810192826137fb5760008555613842565b82601f1061381457805160ff1916838001178555613842565b82800160010185558215613842579182015b82811115613841578251825591602001919060010190613826565b5b50905061384f9190613853565b5090565b5b8082111561386c576000816000905550600101613854565b5090565b600061388361387e84614995565b614970565b905080838252602082019050828560208602820111156138a6576138a5614ece565b5b60005b858110156138d657816138bc8882613964565b8452602084019350602083019250506001810190506138a9565b5050509392505050565b60006138f36138ee846149c1565b614970565b90508281526020810184848401111561390f5761390e614ed3565b5b61391a848285614c90565b509392505050565b6000613935613930846149f2565b614970565b90508281526020810184848401111561395157613950614ed3565b5b61395c848285614c90565b509392505050565b60008135905061397381615670565b92915050565b60008135905061398881615687565b92915050565b600082601f8301126139a3576139a2614ec9565b5b81356139b3848260208601613870565b91505092915050565b6000813590506139cb8161569e565b92915050565b6000813590506139e0816156b5565b92915050565b6000815190506139f5816156b5565b92915050565b600082601f830112613a1057613a0f614ec9565b5b8135613a208482602086016138e0565b91505092915050565b600082601f830112613a3e57613a3d614ec9565b5b8135613a4e848260208601613922565b91505092915050565b600081359050613a66816156cc565b92915050565b600060208284031215613a8257613a81614edd565b5b6000613a9084828501613964565b91505092915050565b600060208284031215613aaf57613aae614edd565b5b6000613abd84828501613979565b91505092915050565b60008060408385031215613add57613adc614edd565b5b6000613aeb85828601613964565b9250506020613afc85828601613964565b9150509250929050565b600080600060608486031215613b1f57613b1e614edd565b5b6000613b2d86828701613964565b9350506020613b3e86828701613964565b9250506040613b4f86828701613a57565b9150509250925092565b60008060008060808587031215613b7357613b72614edd565b5b6000613b8187828801613964565b9450506020613b9287828801613964565b9350506040613ba387828801613a57565b925050606085013567ffffffffffffffff811115613bc457613bc3614ed8565b5b613bd0878288016139fb565b91505092959194509250565b60008060408385031215613bf357613bf2614edd565b5b6000613c0185828601613964565b9250506020613c12858286016139bc565b9150509250929050565b60008060408385031215613c3357613c32614edd565b5b6000613c4185828601613964565b9250506020613c5285828601613a57565b9150509250929050565b600060208284031215613c7257613c71614edd565b5b600082013567ffffffffffffffff811115613c9057613c8f614ed8565b5b613c9c8482850161398e565b91505092915050565b600060208284031215613cbb57613cba614edd565b5b6000613cc9848285016139d1565b91505092915050565b600060208284031215613ce857613ce7614edd565b5b6000613cf6848285016139e6565b91505092915050565b600060208284031215613d1557613d14614edd565b5b600082013567ffffffffffffffff811115613d3357613d32614ed8565b5b613d3f84828501613a29565b91505092915050565b600060208284031215613d5e57613d5d614edd565b5b6000613d6c84828501613a57565b91505092915050565b6000613d8183836143f7565b60208301905092915050565b613d9681614c5a565b82525050565b613da581614bd4565b82525050565b6000613db682614a48565b613dc08185614a76565b9350613dcb83614a23565b8060005b83811015613dfc578151613de38882613d75565b9750613dee83614a69565b925050600181019050613dcf565b5085935050505092915050565b613e1281614bf8565b82525050565b6000613e2382614a53565b613e2d8185614a87565b9350613e3d818560208601614c9f565b613e4681614ee2565b840191505092915050565b6000613e5c82614a5e565b613e668185614aa3565b9350613e76818560208601614c9f565b613e7f81614ee2565b840191505092915050565b6000613e9582614a5e565b613e9f8185614ab4565b9350613eaf818560208601614c9f565b80840191505092915050565b60008154613ec881614cd2565b613ed28186614aa3565b94506001821660008114613eed5760018114613eff57613f32565b60ff1983168652602086019350613f32565b613f0885614a33565b60005b83811015613f2a57815481890152600182019150602081019050613f0b565b808801955050505b50505092915050565b60008154613f4881614cd2565b613f528186614ab4565b94506001821660008114613f6d5760018114613f7e57613fb1565b60ff19831686528186019350613fb1565b613f8785614a33565b60005b83811015613fa957815481890152600182019150602081019050613f8a565b838801955050505b50505092915050565b6000613fc7602b83614aa3565b9150613fd282614ef3565b604082019050919050565b6000613fea603283614aa3565b9150613ff582614f42565b604082019050919050565b600061400d602683614aa3565b915061401882614f91565b604082019050919050565b6000614030601c83614aa3565b915061403b82614fe0565b602082019050919050565b6000614053602683614aa3565b915061405e82615009565b604082019050919050565b6000614076602483614aa3565b915061408182615058565b604082019050919050565b6000614099601983614aa3565b91506140a4826150a7565b602082019050919050565b60006140bc602083614aa3565b91506140c7826150d0565b602082019050919050565b60006140df603a83614aa3565b91506140ea826150f9565b604082019050919050565b6000614102601d83614aa3565b915061410d82615148565b602082019050919050565b6000614125602c83614aa3565b915061413082615171565b604082019050919050565b6000614148602b83614aa3565b9150614153826151c0565b604082019050919050565b600061416b603883614aa3565b91506141768261520f565b604082019050919050565b600061418e601d83614aa3565b91506141998261525e565b602082019050919050565b60006141b1602a83614aa3565b91506141bc82615287565b604082019050919050565b60006141d4602983614aa3565b91506141df826152d6565b604082019050919050565b60006141f7600a83614aa3565b915061420282615325565b602082019050919050565b600061421a602c83614aa3565b91506142258261534e565b604082019050919050565b600061423d602083614aa3565b91506142488261539d565b602082019050919050565b6000614260601983614aa3565b915061426b826153c6565b602082019050919050565b6000614283602c83614aa3565b915061428e826153ef565b604082019050919050565b60006142a6601b83614aa3565b91506142b18261543e565b602082019050919050565b60006142c9602083614aa3565b91506142d482615467565b602082019050919050565b60006142ec602983614aa3565b91506142f782615490565b604082019050919050565b600061430f602f83614aa3565b915061431a826154df565b604082019050919050565b6000614332602183614aa3565b915061433d8261552e565b604082019050919050565b6000614355601983614aa3565b91506143608261557d565b602082019050919050565b6000614378601683614aa3565b9150614383826155a6565b602082019050919050565b600061439b600083614a98565b91506143a6826155cf565b600082019050919050565b60006143be603183614aa3565b91506143c9826155d2565b604082019050919050565b60006143e1602c83614aa3565b91506143ec82615621565b604082019050919050565b61440081614c50565b82525050565b61440f81614c50565b82525050565b60006144218286613e8a565b915061442d8285613e8a565b91506144398284613f3b565b9150819050949350505050565b60006144518261438e565b9150819050919050565b60006020820190506144706000830184613d9c565b92915050565b600060408201905061448b6000830185613d8d565b6144986020830184614406565b9392505050565b60006080820190506144b46000830187613d9c565b6144c16020830186613d9c565b6144ce6040830185614406565b81810360608301526144e08184613e18565b905095945050505050565b60006040820190506145006000830185613d9c565b61450d6020830184614406565b9392505050565b6000602082019050818103600083015261452e8184613dab565b905092915050565b600060208201905061454b6000830184613e09565b92915050565b6000602082019050818103600083015261456b8184613e51565b905092915050565b6000602082019050818103600083015261458d8184613ebb565b905092915050565b600060208201905081810360008301526145ae81613fba565b9050919050565b600060208201905081810360008301526145ce81613fdd565b9050919050565b600060208201905081810360008301526145ee81614000565b9050919050565b6000602082019050818103600083015261460e81614023565b9050919050565b6000602082019050818103600083015261462e81614046565b9050919050565b6000602082019050818103600083015261464e81614069565b9050919050565b6000602082019050818103600083015261466e8161408c565b9050919050565b6000602082019050818103600083015261468e816140af565b9050919050565b600060208201905081810360008301526146ae816140d2565b9050919050565b600060208201905081810360008301526146ce816140f5565b9050919050565b600060208201905081810360008301526146ee81614118565b9050919050565b6000602082019050818103600083015261470e8161413b565b9050919050565b6000602082019050818103600083015261472e8161415e565b9050919050565b6000602082019050818103600083015261474e81614181565b9050919050565b6000602082019050818103600083015261476e816141a4565b9050919050565b6000602082019050818103600083015261478e816141c7565b9050919050565b600060208201905081810360008301526147ae816141ea565b9050919050565b600060208201905081810360008301526147ce8161420d565b9050919050565b600060208201905081810360008301526147ee81614230565b9050919050565b6000602082019050818103600083015261480e81614253565b9050919050565b6000602082019050818103600083015261482e81614276565b9050919050565b6000602082019050818103600083015261484e81614299565b9050919050565b6000602082019050818103600083015261486e816142bc565b9050919050565b6000602082019050818103600083015261488e816142df565b9050919050565b600060208201905081810360008301526148ae81614302565b9050919050565b600060208201905081810360008301526148ce81614325565b9050919050565b600060208201905081810360008301526148ee81614348565b9050919050565b6000602082019050818103600083015261490e8161436b565b9050919050565b6000602082019050818103600083015261492e816143b1565b9050919050565b6000602082019050818103600083015261494e816143d4565b9050919050565b600060208201905061496a6000830184614406565b92915050565b600061497a61498b565b90506149868282614d04565b919050565b6000604051905090565b600067ffffffffffffffff8211156149b0576149af614e9a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149dc576149db614e9a565b5b6149e582614ee2565b9050602081019050919050565b600067ffffffffffffffff821115614a0d57614a0c614e9a565b5b614a1682614ee2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614aca82614c50565b9150614ad583614c50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0a57614b09614daf565b5b828201905092915050565b6000614b2082614c50565b9150614b2b83614c50565b925082614b3b57614b3a614dde565b5b828204905092915050565b6000614b5182614c50565b9150614b5c83614c50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b9557614b94614daf565b5b828202905092915050565b6000614bab82614c50565b9150614bb683614c50565b925082821015614bc957614bc8614daf565b5b828203905092915050565b6000614bdf82614c30565b9050919050565b6000614bf182614c30565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614c6582614c6c565b9050919050565b6000614c7782614c7e565b9050919050565b6000614c8982614c30565b9050919050565b82818337600083830152505050565b60005b83811015614cbd578082015181840152602081019050614ca2565b83811115614ccc576000848401525b50505050565b60006002820490506001821680614cea57607f821691505b60208210811415614cfe57614cfd614e0d565b5b50919050565b614d0d82614ee2565b810181811067ffffffffffffffff82111715614d2c57614d2b614e9a565b5b80604052505050565b6000614d4082614c50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7357614d72614daf565b5b600182019050919050565b6000614d8982614c50565b9150614d9483614c50565b925082614da457614da3614dde565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e6572616c2073616c6520686173206e6f74207374617274656420796574600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f45786365656473206d6178696d756d20486f726e657420737570706c79000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420494400000000000000000000000000000000000000000000600082015250565b7f596f752063616e206d696e742061206d6178696d756d206f66203820486f726e60008201527f65747320696e20746f74616c0000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45786365656473206d617820486f726e657420737570706c7900000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742073746172746564207965740000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4c6963656e736520616c7265616479206c6f636b656400000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61567981614bd4565b811461568457600080fd5b50565b61569081614be6565b811461569b57600080fd5b50565b6156a781614bf8565b81146156b257600080fd5b50565b6156be81614c04565b81146156c957600080fd5b50565b6156d581614c50565b81146156e057600080fd5b5056fea26469706673582212209a1a717c9fdf1d801837a8f222a189ec67e2e7926b5755139a77b98939be999f64736f6c63430008070033
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.