Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
124
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GobzNFT
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.7; // @@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@ // &@@@@@@@@@@@@...........@@@@@@@@@@@( // @@@@@@@@@/.....................%@@@@@@@@ // @@@@@@@@............................/@@@@@@@ // *@@@@@@@................................,@@@@@@ // @@@@@@@@....................................@@@@@@@ // @@@@@@@@@@@@......................................@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@.....%@@@@@................./@@@@@..../@@@@@@@@@@@@@@@ // @@@@@@@@@....@@@@@@&.....@@@@@@@................@@@@@@.....@@@@@@...@@@@@@@@@@ // @@@@@@@@@...@@@@@@@.......@@@........@@@.........&@.......@@@@@@.....@@@@@@@@ // @@@@@@@@@@@@@@@...................@@.................,@@@@@@./@@@@@@@@ // @@@@@@@@@@@@..................@@&................@@@@@@@@@@@@@& // &@@@@@@@@@@.................@................@@@@@@@@@@@ // /@@@@@@@@...............@...............@@@@@@@@ // @@@@@@@@@...........................@@@@@@@@ // @@@@@@@@@@.....................,@@@@@@@@ // @@@@@@@@@@@@............@@@@@@@@@@@, // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@/ /// @creator: GobzNFT /// @author: peker.eth - twitter.com/peker_eth import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract GobzNFT is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; bytes32 public root; string BASE_URI = ""; bool public IS_PRESALE_ACTIVE = false; bool public IS_SALE_ACTIVE = false; uint constant TOTAL_SUPPLY = 5555; uint constant INCREASED_MAX_TOKEN_ID = TOTAL_SUPPLY + 2; uint constant MINT_PRICE = 0.055 ether; uint constant NUMBER_OF_TOKENS_ALLOWED_PER_TX = 5; uint constant NUMBER_OF_TOKENS_ALLOWED_PER_ADDRESS = 20; mapping (address => uint) addressToMintCount; address constant FOUNDER = 0x9d479E8998626daBabb8012b2053df58060EE5E3; address constant DEVELOPER = 0xA800F34505e8b340cf3Ab8793cB40Bf09042B28F; constructor(string memory name, string memory symbol, bytes32 root_) ERC721(name, symbol) { _tokenIdCounter.increment(); root = root_; } function setMerkleRoot(bytes32 merkleroot) onlyOwner public { root = merkleroot; } function _baseURI() internal view override returns (string memory) { return BASE_URI; } function setBaseURI(string memory newUri) public onlyOwner { BASE_URI = newUri; } function togglePublicSale() public onlyOwner { IS_SALE_ACTIVE = !IS_SALE_ACTIVE; } function togglePreSale() public onlyOwner { IS_PRESALE_ACTIVE = !IS_PRESALE_ACTIVE; } modifier onlyAccounts () { require(msg.sender == tx.origin, "Not allowed origin"); _; } function ownerMint(uint numberOfTokens) public onlyOwner { uint current = _tokenIdCounter.current(); require(current + numberOfTokens < INCREASED_MAX_TOKEN_ID, "Exceeds total supply"); for (uint i = 0; i < numberOfTokens; i++) { mintInternal(); } } function presaleMint(address account, uint numberOfTokens, uint256 allowance, string memory key, bytes32[] calldata proof) public payable onlyAccounts { require(msg.sender == account, "Not allowed"); require(IS_PRESALE_ACTIVE, "Pre-sale haven't started"); require(msg.value >= numberOfTokens * MINT_PRICE, "Not enough ethers sent"); string memory payload = string(abi.encodePacked(Strings.toString(allowance), ":", key)); require(_verify(_leaf(msg.sender, payload), proof), "Invalid merkle proof"); uint current = _tokenIdCounter.current(); require(current + numberOfTokens < INCREASED_MAX_TOKEN_ID, "Exceeds total supply"); require(addressToMintCount[msg.sender] + numberOfTokens <= allowance, "Exceeds allowance"); addressToMintCount[msg.sender] += numberOfTokens; for (uint i = 0; i < numberOfTokens; i++) { mintInternal(); } } function publicSaleMint(uint numberOfTokens) public payable onlyAccounts { require(IS_SALE_ACTIVE, "Sale haven't started"); require(numberOfTokens <= NUMBER_OF_TOKENS_ALLOWED_PER_TX, "Too many requested"); require(msg.value >= numberOfTokens * MINT_PRICE, "Not enough ethers sent"); uint current = _tokenIdCounter.current(); require(current + numberOfTokens < INCREASED_MAX_TOKEN_ID, "Exceeds total supply"); require(addressToMintCount[msg.sender] + numberOfTokens <= NUMBER_OF_TOKENS_ALLOWED_PER_ADDRESS, "Exceeds allowance"); addressToMintCount[msg.sender] += numberOfTokens; for (uint i = 0; i < numberOfTokens; i++) { mintInternal(); } } function getCurrentMintCount(address _account) public view returns (uint) { return addressToMintCount[_account]; } function mintInternal() internal { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _mint(msg.sender, tokenId); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _withdraw(FOUNDER, (balance * 925) / 1000); _withdraw(DEVELOPER, (balance * 75) / 1000); _withdraw(owner(), address(this).balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function totalSupply() public view returns (uint) { return _tokenIdCounter.current() - 1; } function tokensOfOwner(address _owner, uint startId, uint endId) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index = 0; for (uint256 tokenId = startId; tokenId < endId; tokenId++) { if (index == tokenCount) break; if (ownerOf(tokenId) == _owner) { result[index] = tokenId; index++; } } return result; } } function _leaf(address account, string memory payload) internal pure returns (bytes32) { return keccak256(abi.encodePacked(payload, account)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, root, leaf); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) 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 // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev 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 // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; 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 // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"root_","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_PRESALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getCurrentMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"string","name":"key","type":"string"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleroot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"endId","type":"uint256"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b929190620001f6565b506000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200006f57600080fd5b5060405162004da638038062004da683398181016040528101906200009591906200033b565b82828160009080519060200190620000af929190620001f6565b508060019080519060200190620000c8929190620001f6565b505050620000eb620000df6200011260201b60201c565b6200011a60201b60201c565b620001026007620001e060201b62001ce11760201c565b806008819055505050506200057d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620002049062000474565b90600052602060002090601f01602090048101928262000228576000855562000274565b82601f106200024357805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027357825182559160200191906001019062000256565b5b50905062000283919062000287565b5090565b5b80821115620002a257600081600090555060010162000288565b5090565b6000620002bd620002b784620003fe565b620003d5565b905082815260208101848484011115620002dc57620002db62000543565b5b620002e98482856200043e565b509392505050565b600081519050620003028162000563565b92915050565b600082601f83011262000320576200031f6200053e565b5b815162000332848260208601620002a6565b91505092915050565b6000806000606084860312156200035757620003566200054d565b5b600084015167ffffffffffffffff81111562000378576200037762000548565b5b620003868682870162000308565b935050602084015167ffffffffffffffff811115620003aa57620003a962000548565b5b620003b88682870162000308565b9250506040620003cb86828701620002f1565b9150509250925092565b6000620003e1620003f4565b9050620003ef8282620004aa565b919050565b6000604051905090565b600067ffffffffffffffff8211156200041c576200041b6200050f565b5b620004278262000552565b9050602081019050919050565b6000819050919050565b60005b838110156200045e57808201518184015260208101905062000441565b838111156200046e576000848401525b50505050565b600060028204905060018216806200048d57607f821691505b60208210811415620004a457620004a3620004e0565b5b50919050565b620004b58262000552565b810181811067ffffffffffffffff82111715620004d757620004d66200050f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200056e8162000434565b81146200057a57600080fd5b50565b614819806200058d6000396000f3fe6080604052600436106101cd5760003560e01c806382d29a0f116100f7578063c839fe9411610095578063e985e9c511610064578063e985e9c514610632578063ebf0c7171461066f578063f19e75d41461069a578063f2fde38b146106c3576101cd565b8063c839fe941461058a578063c87b56dd146105c7578063ca3cb52214610604578063e222c7f91461061b576101cd565b806395d89b41116100d157806395d89b41146104f1578063a22cb4651461051c578063b3ab66b014610545578063b88d4fde14610561576101cd565b806382d29a0f14610484578063853828b6146104af5780638da5cb5b146104c6576101cd565b806323b872dd1161016f57806370a082311161013e57806370a08231146103dc578063715018a61461041957806376d02b71146104305780637cb647591461045b576101cd565b806323b872dd1461032457806342842e0e1461034d57806355f804b3146103765780636352211e1461039f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631545fb9a146102a057806318160ddd146102bc5780631d0d1257146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061310f565b6106ec565b604051610206919061388a565b60405180910390f35b34801561021b57600080fd5b506102246107ce565b60405161023191906138c0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906131b2565b610860565b60405161026e9190613801565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612f99565b6108e5565b005b6102ba60048036038101906102b5919061302c565b6109fd565b005b3480156102c857600080fd5b506102d1610dbb565b6040516102de9190613c22565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612e16565b610dd8565b60405161031b9190613c22565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612e83565b610e21565b005b34801561035957600080fd5b50610374600480360381019061036f9190612e83565b610e81565b005b34801561038257600080fd5b5061039d60048036038101906103989190613169565b610ea1565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906131b2565b610f37565b6040516103d39190613801565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190612e16565b610fe9565b6040516104109190613c22565b60405180910390f35b34801561042557600080fd5b5061042e6110a1565b005b34801561043c57600080fd5b50610445611129565b604051610452919061388a565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906130e2565b61113c565b005b34801561049057600080fd5b506104996111c2565b6040516104a6919061388a565b60405180910390f35b3480156104bb57600080fd5b506104c46111d5565b005b3480156104d257600080fd5b506104db6112e6565b6040516104e89190613801565b60405180910390f35b3480156104fd57600080fd5b50610506611310565b60405161051391906138c0565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612f59565b6113a2565b005b61055f600480360381019061055a91906131b2565b6113b8565b005b34801561056d57600080fd5b5061058860048036038101906105839190612ed6565b611686565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612fd9565b6116e8565b6040516105be9190613868565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906131b2565b611848565b6040516105fb91906138c0565b60405180910390f35b34801561061057600080fd5b506106196118ef565b005b34801561062757600080fd5b50610630611997565b005b34801561063e57600080fd5b5061065960048036038101906106549190612e43565b611a3f565b604051610666919061388a565b60405180910390f35b34801561067b57600080fd5b50610684611ad3565b60405161069191906138a5565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906131b2565b611ad9565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190612e16565b611be9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c757506107c682611cf7565b5b9050919050565b6060600080546107dd90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461080990613f20565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061086b82611d61565b6108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190613aa2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f082610f37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613b82565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610980611dcd565b73ffffffffffffffffffffffffffffffffffffffff1614806109af57506109ae816109a9611dcd565b611a3f565b5b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613a22565b60405180910390fd5b6109f88383611dd5565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613bc2565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613ac2565b60405180910390fd5b600a60009054906101000a900460ff16610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613ba2565b60405180910390fd5b66c3663566a5800085610b3b9190613dd2565b341015610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b74906138e2565b60405180910390fd5b6000610b8885611e8e565b84604051602001610b9a9291906137bd565b6040516020818303038152906040529050610bff610bb83383611fef565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612022565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613b02565b60405180910390fd5b6000610c4a6007612039565b905060026115b3610c5b9190613d4b565b8782610c679190613d4b565b10610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906139e2565b60405180910390fd5b8587600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf39190613d4b565b1115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613962565b60405180910390fd5b86600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d839190613d4b565b9250508190555060005b87811015610db057610d9d612047565b8080610da890613f83565b915050610d8d565b505050505050505050565b60006001610dc96007612039565b610dd39190613e2c565b905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e32610e2c611dcd565b8261206c565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613c02565b60405180910390fd5b610e7c83838361214a565b505050565b610e9c83838360405180602001604052806000815250611686565b505050565b610ea9611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610ec76112e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613ae2565b60405180910390fd5b8060099080519060200190610f33929190612bbf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613a62565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613a42565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110a9611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110c76112e6565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613ae2565b60405180910390fd5b61112760006123a6565b565b600a60019054906101000a900460ff1681565b611144611dcd565b73ffffffffffffffffffffffffffffffffffffffff166111626112e6565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613ae2565b60405180910390fd5b8060088190555050565b600a60009054906101000a900460ff1681565b6111dd611dcd565b73ffffffffffffffffffffffffffffffffffffffff166111fb6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613ae2565b60405180910390fd5b60004790506000811161126357600080fd5b61129b739d479e8998626dababb8012b2053df58060ee5e36103e861039d8461128c9190613dd2565b6112969190613da1565b61246c565b6112d273a800f34505e8b340cf3ab8793cb40bf09042b28f6103e8604b846112c39190613dd2565b6112cd9190613da1565b61246c565b6112e36112dd6112e6565b4761246c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461131f90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461134b90613f20565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905090565b6113b46113ad611dcd565b838361251d565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613bc2565b60405180910390fd5b600a60019054906101000a900460ff16611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613b62565b60405180910390fd5b60058111156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906139c2565b60405180910390fd5b66c3663566a58000816114cc9190613dd2565b34101561150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906138e2565b60405180910390fd5b600061151a6007612039565b905060026115b361152b9190613d4b565b82826115379190613d4b565b10611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e906139e2565b60405180910390fd5b601482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115c49190613d4b565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613962565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116549190613d4b565b9250508190555060005b828110156116815761166e612047565b808061167990613f83565b91505061165e565b505050565b611697611691611dcd565b8361206c565b6116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613c02565b60405180910390fd5b6116e28484848461268a565b50505050565b606060006116f585610fe9565b9050600081141561175257600067ffffffffffffffff81111561171b5761171a6140e7565b5b6040519080825280602002602001820160405280156117495781602001602082028036833780820191505090505b50915050611841565b60008167ffffffffffffffff81111561176e5761176d6140e7565b5b60405190808252806020026020018201604052801561179c5781602001602082028036833780820191505090505b5090506000808690505b8581101561183957838214156117bb57611839565b8773ffffffffffffffffffffffffffffffffffffffff166117db82610f37565b73ffffffffffffffffffffffffffffffffffffffff161415611826578083838151811061180b5761180a6140b8565b5b602002602001018181525050818061182290613f83565b9250505b808061183190613f83565b9150506117a6565b508193505050505b9392505050565b606061185382611d61565b611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613b42565b60405180910390fd5b600061189c6126e6565b905060008151116118bc57604051806020016040528060008152506118e7565b806118c684611e8e565b6040516020016118d7929190613799565b6040516020818303038152906040525b915050919050565b6118f7611dcd565b73ffffffffffffffffffffffffffffffffffffffff166119156112e6565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613ae2565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61199f611dcd565b73ffffffffffffffffffffffffffffffffffffffff166119bd6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613ae2565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b611ae1611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611aff6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613ae2565b60405180910390fd5b6000611b616007612039565b905060026115b3611b729190613d4b565b8282611b7e9190613d4b565b10611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906139e2565b60405180910390fd5b60005b82811015611be457611bd1612047565b8080611bdc90613f83565b915050611bc1565b505050565b611bf1611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611c0f6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613922565b60405180910390fd5b611cde816123a6565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4883610f37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000821415611ed6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fea565b600082905060005b60008214611f08578080611ef190613f83565b915050600a82611f019190613da1565b9150611ede565b60008167ffffffffffffffff811115611f2457611f236140e7565b5b6040519080825280601f01601f191660200182016040528015611f565781602001600182028036833780820191505090505b5090505b60008514611fe357600182611f6f9190613e2c565b9150600a85611f7e9190613ffa565b6030611f8a9190613d4b565b60f81b818381518110611fa057611f9f6140b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fdc9190613da1565b9450611f5a565b8093505050505b919050565b60008183604051602001612004929190613771565b60405160208183030381529060405280519060200120905092915050565b60006120318260085485612778565b905092915050565b600081600001549050919050565b60006120536007612039565b905061205f6007611ce1565b612069338261278f565b50565b600061207782611d61565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613a02565b60405180910390fd5b60006120c183610f37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213057508373ffffffffffffffffffffffffffffffffffffffff1661211884610860565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214157506121408185611a3f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661216a82610f37565b73ffffffffffffffffffffffffffffffffffffffff16146121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790613b22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790613982565b60405180910390fd5b61223b83838361295d565b612246600082611dd5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122969190613e2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ed9190613d4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612492906137ec565b60006040518083038185875af1925050503d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b5050905080612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90613be2565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906139a2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267d919061388a565b60405180910390a3505050565b61269584848461214a565b6126a184848484612962565b6126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613902565b60405180910390fd5b50505050565b6060600980546126f590613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461272190613f20565b801561276e5780601f106127435761010080835404028352916020019161276e565b820191906000526020600020905b81548152906001019060200180831161275157829003601f168201915b5050505050905090565b6000826127858584612af9565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690613a82565b60405180910390fd5b61280881611d61565b15612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90613942565b60405180910390fd5b6128546000838361295d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a49190613d4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006129838473ffffffffffffffffffffffffffffffffffffffff16612bac565b15612aec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ac611dcd565b8786866040518563ffffffff1660e01b81526004016129ce949392919061381c565b602060405180830381600087803b1580156129e857600080fd5b505af1925050508015612a1957506040513d601f19601f82011682018060405250810190612a16919061313c565b60015b612a9c573d8060008114612a49576040519150601f19603f3d011682016040523d82523d6000602084013e612a4e565b606091505b50600081511415612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b90613902565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af1565b600190505b949350505050565b60008082905060005b8451811015612ba1576000858281518110612b2057612b1f6140b8565b5b60200260200101519050808311612b61578281604051602001612b44929190613745565b604051602081830303815290604052805190602001209250612b8d565b8083604051602001612b74929190613745565b6040516020818303038152906040528051906020012092505b508080612b9990613f83565b915050612b02565b508091505092915050565b600080823b905060008111915050919050565b828054612bcb90613f20565b90600052602060002090601f016020900481019282612bed5760008555612c34565b82601f10612c0657805160ff1916838001178555612c34565b82800160010185558215612c34579182015b82811115612c33578251825591602001919060010190612c18565b5b509050612c419190612c45565b5090565b5b80821115612c5e576000816000905550600101612c46565b5090565b6000612c75612c7084613c62565b613c3d565b905082815260208101848484011115612c9157612c90614125565b5b612c9c848285613ede565b509392505050565b6000612cb7612cb284613c93565b613c3d565b905082815260208101848484011115612cd357612cd2614125565b5b612cde848285613ede565b509392505050565b600081359050612cf581614770565b92915050565b60008083601f840112612d1157612d1061411b565b5b8235905067ffffffffffffffff811115612d2e57612d2d614116565b5b602083019150836020820283011115612d4a57612d49614120565b5b9250929050565b600081359050612d6081614787565b92915050565b600081359050612d758161479e565b92915050565b600081359050612d8a816147b5565b92915050565b600081519050612d9f816147b5565b92915050565b600082601f830112612dba57612db961411b565b5b8135612dca848260208601612c62565b91505092915050565b600082601f830112612de857612de761411b565b5b8135612df8848260208601612ca4565b91505092915050565b600081359050612e10816147cc565b92915050565b600060208284031215612e2c57612e2b61412f565b5b6000612e3a84828501612ce6565b91505092915050565b60008060408385031215612e5a57612e5961412f565b5b6000612e6885828601612ce6565b9250506020612e7985828601612ce6565b9150509250929050565b600080600060608486031215612e9c57612e9b61412f565b5b6000612eaa86828701612ce6565b9350506020612ebb86828701612ce6565b9250506040612ecc86828701612e01565b9150509250925092565b60008060008060808587031215612ef057612eef61412f565b5b6000612efe87828801612ce6565b9450506020612f0f87828801612ce6565b9350506040612f2087828801612e01565b925050606085013567ffffffffffffffff811115612f4157612f4061412a565b5b612f4d87828801612da5565b91505092959194509250565b60008060408385031215612f7057612f6f61412f565b5b6000612f7e85828601612ce6565b9250506020612f8f85828601612d51565b9150509250929050565b60008060408385031215612fb057612faf61412f565b5b6000612fbe85828601612ce6565b9250506020612fcf85828601612e01565b9150509250929050565b600080600060608486031215612ff257612ff161412f565b5b600061300086828701612ce6565b935050602061301186828701612e01565b925050604061302286828701612e01565b9150509250925092565b60008060008060008060a087890312156130495761304861412f565b5b600061305789828a01612ce6565b965050602061306889828a01612e01565b955050604061307989828a01612e01565b945050606087013567ffffffffffffffff81111561309a5761309961412a565b5b6130a689828a01612dd3565b935050608087013567ffffffffffffffff8111156130c7576130c661412a565b5b6130d389828a01612cfb565b92509250509295509295509295565b6000602082840312156130f8576130f761412f565b5b600061310684828501612d66565b91505092915050565b6000602082840312156131255761312461412f565b5b600061313384828501612d7b565b91505092915050565b6000602082840312156131525761315161412f565b5b600061316084828501612d90565b91505092915050565b60006020828403121561317f5761317e61412f565b5b600082013567ffffffffffffffff81111561319d5761319c61412a565b5b6131a984828501612dd3565b91505092915050565b6000602082840312156131c8576131c761412f565b5b60006131d684828501612e01565b91505092915050565b60006131eb8383613727565b60208301905092915050565b61320081613e60565b82525050565b61321761321282613e60565b613fcc565b82525050565b600061322882613cd4565b6132328185613d02565b935061323d83613cc4565b8060005b8381101561326e57815161325588826131df565b975061326083613cf5565b925050600181019050613241565b5085935050505092915050565b61328481613e72565b82525050565b61329381613e7e565b82525050565b6132aa6132a582613e7e565b613fde565b82525050565b60006132bb82613cdf565b6132c58185613d13565b93506132d5818560208601613eed565b6132de81614134565b840191505092915050565b60006132f482613cea565b6132fe8185613d2f565b935061330e818560208601613eed565b61331781614134565b840191505092915050565b600061332d82613cea565b6133378185613d40565b9350613347818560208601613eed565b80840191505092915050565b6000613360601683613d2f565b915061336b82614152565b602082019050919050565b6000613383603283613d2f565b915061338e8261417b565b604082019050919050565b60006133a6602683613d2f565b91506133b1826141ca565b604082019050919050565b60006133c9601c83613d2f565b91506133d482614219565b602082019050919050565b60006133ec601183613d2f565b91506133f782614242565b602082019050919050565b600061340f602483613d2f565b915061341a8261426b565b604082019050919050565b6000613432601983613d2f565b915061343d826142ba565b602082019050919050565b6000613455601283613d2f565b9150613460826142e3565b602082019050919050565b6000613478601483613d2f565b91506134838261430c565b602082019050919050565b600061349b602c83613d2f565b91506134a682614335565b604082019050919050565b60006134be603883613d2f565b91506134c982614384565b604082019050919050565b60006134e1602a83613d2f565b91506134ec826143d3565b604082019050919050565b6000613504602983613d2f565b915061350f82614422565b604082019050919050565b6000613527602083613d2f565b915061353282614471565b602082019050919050565b600061354a602c83613d2f565b91506135558261449a565b604082019050919050565b600061356d600183613d40565b9150613578826144e9565b600182019050919050565b6000613590600b83613d2f565b915061359b82614512565b602082019050919050565b60006135b3602083613d2f565b91506135be8261453b565b602082019050919050565b60006135d6601483613d2f565b91506135e182614564565b602082019050919050565b60006135f9602983613d2f565b91506136048261458d565b604082019050919050565b600061361c602f83613d2f565b9150613627826145dc565b604082019050919050565b600061363f601483613d2f565b915061364a8261462b565b602082019050919050565b6000613662602183613d2f565b915061366d82614654565b604082019050919050565b6000613685601883613d2f565b9150613690826146a3565b602082019050919050565b60006136a8601283613d2f565b91506136b3826146cc565b602082019050919050565b60006136cb600083613d24565b91506136d6826146f5565b600082019050919050565b60006136ee601083613d2f565b91506136f9826146f8565b602082019050919050565b6000613711603183613d2f565b915061371c82614721565b604082019050919050565b61373081613ed4565b82525050565b61373f81613ed4565b82525050565b60006137518285613299565b6020820191506137618284613299565b6020820191508190509392505050565b600061377d8285613322565b91506137898284613206565b6014820191508190509392505050565b60006137a58285613322565b91506137b18284613322565b91508190509392505050565b60006137c98285613322565b91506137d482613560565b91506137e08284613322565b91508190509392505050565b60006137f7826136be565b9150819050919050565b600060208201905061381660008301846131f7565b92915050565b600060808201905061383160008301876131f7565b61383e60208301866131f7565b61384b6040830185613736565b818103606083015261385d81846132b0565b905095945050505050565b60006020820190508181036000830152613882818461321d565b905092915050565b600060208201905061389f600083018461327b565b92915050565b60006020820190506138ba600083018461328a565b92915050565b600060208201905081810360008301526138da81846132e9565b905092915050565b600060208201905081810360008301526138fb81613353565b9050919050565b6000602082019050818103600083015261391b81613376565b9050919050565b6000602082019050818103600083015261393b81613399565b9050919050565b6000602082019050818103600083015261395b816133bc565b9050919050565b6000602082019050818103600083015261397b816133df565b9050919050565b6000602082019050818103600083015261399b81613402565b9050919050565b600060208201905081810360008301526139bb81613425565b9050919050565b600060208201905081810360008301526139db81613448565b9050919050565b600060208201905081810360008301526139fb8161346b565b9050919050565b60006020820190508181036000830152613a1b8161348e565b9050919050565b60006020820190508181036000830152613a3b816134b1565b9050919050565b60006020820190508181036000830152613a5b816134d4565b9050919050565b60006020820190508181036000830152613a7b816134f7565b9050919050565b60006020820190508181036000830152613a9b8161351a565b9050919050565b60006020820190508181036000830152613abb8161353d565b9050919050565b60006020820190508181036000830152613adb81613583565b9050919050565b60006020820190508181036000830152613afb816135a6565b9050919050565b60006020820190508181036000830152613b1b816135c9565b9050919050565b60006020820190508181036000830152613b3b816135ec565b9050919050565b60006020820190508181036000830152613b5b8161360f565b9050919050565b60006020820190508181036000830152613b7b81613632565b9050919050565b60006020820190508181036000830152613b9b81613655565b9050919050565b60006020820190508181036000830152613bbb81613678565b9050919050565b60006020820190508181036000830152613bdb8161369b565b9050919050565b60006020820190508181036000830152613bfb816136e1565b9050919050565b60006020820190508181036000830152613c1b81613704565b9050919050565b6000602082019050613c376000830184613736565b92915050565b6000613c47613c58565b9050613c538282613f52565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7d57613c7c6140e7565b5b613c8682614134565b9050602081019050919050565b600067ffffffffffffffff821115613cae57613cad6140e7565b5b613cb782614134565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5682613ed4565b9150613d6183613ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9657613d9561402b565b5b828201905092915050565b6000613dac82613ed4565b9150613db783613ed4565b925082613dc757613dc661405a565b5b828204905092915050565b6000613ddd82613ed4565b9150613de883613ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e2157613e2061402b565b5b828202905092915050565b6000613e3782613ed4565b9150613e4283613ed4565b925082821015613e5557613e5461402b565b5b828203905092915050565b6000613e6b82613eb4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f0b578082015181840152602081019050613ef0565b83811115613f1a576000848401525b50505050565b60006002820490506001821680613f3857607f821691505b60208210811415613f4c57613f4b614089565b5b50919050565b613f5b82614134565b810181811067ffffffffffffffff82111715613f7a57613f796140e7565b5b80604052505050565b6000613f8e82613ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc157613fc061402b565b5b600182019050919050565b6000613fd782613fe8565b9050919050565b6000819050919050565b6000613ff382614145565b9050919050565b600061400582613ed4565b915061401083613ed4565b9250826140205761401f61405a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565647320616c6c6f77616e6365000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6f206d616e79207265717565737465640000000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f3a00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686176656e27742073746172746564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c6520686176656e277420737461727465640000000000000000600082015250565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61477981613e60565b811461478457600080fd5b50565b61479081613e72565b811461479b57600080fd5b50565b6147a781613e7e565b81146147b257600080fd5b50565b6147be81613e88565b81146147c957600080fd5b50565b6147d581613ed4565b81146147e057600080fd5b5056fea264697066735822122024a3678e4e663c864312b686ae9f9ea505f35964ef9a7d8bd4df56b9eae19ce464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a05df767997c507fd05ac7cf9dc1a9e1fab8e213fbc53c277339640a916f310cd10000000000000000000000000000000000000000000000000000000000000007476f627a4e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f425a00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806382d29a0f116100f7578063c839fe9411610095578063e985e9c511610064578063e985e9c514610632578063ebf0c7171461066f578063f19e75d41461069a578063f2fde38b146106c3576101cd565b8063c839fe941461058a578063c87b56dd146105c7578063ca3cb52214610604578063e222c7f91461061b576101cd565b806395d89b41116100d157806395d89b41146104f1578063a22cb4651461051c578063b3ab66b014610545578063b88d4fde14610561576101cd565b806382d29a0f14610484578063853828b6146104af5780638da5cb5b146104c6576101cd565b806323b872dd1161016f57806370a082311161013e57806370a08231146103dc578063715018a61461041957806376d02b71146104305780637cb647591461045b576101cd565b806323b872dd1461032457806342842e0e1461034d57806355f804b3146103765780636352211e1461039f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631545fb9a146102a057806318160ddd146102bc5780631d0d1257146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061310f565b6106ec565b604051610206919061388a565b60405180910390f35b34801561021b57600080fd5b506102246107ce565b60405161023191906138c0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906131b2565b610860565b60405161026e9190613801565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612f99565b6108e5565b005b6102ba60048036038101906102b5919061302c565b6109fd565b005b3480156102c857600080fd5b506102d1610dbb565b6040516102de9190613c22565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612e16565b610dd8565b60405161031b9190613c22565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190612e83565b610e21565b005b34801561035957600080fd5b50610374600480360381019061036f9190612e83565b610e81565b005b34801561038257600080fd5b5061039d60048036038101906103989190613169565b610ea1565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906131b2565b610f37565b6040516103d39190613801565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe9190612e16565b610fe9565b6040516104109190613c22565b60405180910390f35b34801561042557600080fd5b5061042e6110a1565b005b34801561043c57600080fd5b50610445611129565b604051610452919061388a565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d91906130e2565b61113c565b005b34801561049057600080fd5b506104996111c2565b6040516104a6919061388a565b60405180910390f35b3480156104bb57600080fd5b506104c46111d5565b005b3480156104d257600080fd5b506104db6112e6565b6040516104e89190613801565b60405180910390f35b3480156104fd57600080fd5b50610506611310565b60405161051391906138c0565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190612f59565b6113a2565b005b61055f600480360381019061055a91906131b2565b6113b8565b005b34801561056d57600080fd5b5061058860048036038101906105839190612ed6565b611686565b005b34801561059657600080fd5b506105b160048036038101906105ac9190612fd9565b6116e8565b6040516105be9190613868565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906131b2565b611848565b6040516105fb91906138c0565b60405180910390f35b34801561061057600080fd5b506106196118ef565b005b34801561062757600080fd5b50610630611997565b005b34801561063e57600080fd5b5061065960048036038101906106549190612e43565b611a3f565b604051610666919061388a565b60405180910390f35b34801561067b57600080fd5b50610684611ad3565b60405161069191906138a5565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906131b2565b611ad9565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190612e16565b611be9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c757506107c682611cf7565b5b9050919050565b6060600080546107dd90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461080990613f20565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061086b82611d61565b6108aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a190613aa2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f082610f37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613b82565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610980611dcd565b73ffffffffffffffffffffffffffffffffffffffff1614806109af57506109ae816109a9611dcd565b611a3f565b5b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613a22565b60405180910390fd5b6109f88383611dd5565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290613bc2565b60405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090613ac2565b60405180910390fd5b600a60009054906101000a900460ff16610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90613ba2565b60405180910390fd5b66c3663566a5800085610b3b9190613dd2565b341015610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b74906138e2565b60405180910390fd5b6000610b8885611e8e565b84604051602001610b9a9291906137bd565b6040516020818303038152906040529050610bff610bb83383611fef565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612022565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613b02565b60405180910390fd5b6000610c4a6007612039565b905060026115b3610c5b9190613d4b565b8782610c679190613d4b565b10610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906139e2565b60405180910390fd5b8587600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf39190613d4b565b1115610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613962565b60405180910390fd5b86600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d839190613d4b565b9250508190555060005b87811015610db057610d9d612047565b8080610da890613f83565b915050610d8d565b505050505050505050565b60006001610dc96007612039565b610dd39190613e2c565b905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e32610e2c611dcd565b8261206c565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613c02565b60405180910390fd5b610e7c83838361214a565b505050565b610e9c83838360405180602001604052806000815250611686565b505050565b610ea9611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610ec76112e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490613ae2565b60405180910390fd5b8060099080519060200190610f33929190612bbf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613a62565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613a42565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110a9611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110c76112e6565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490613ae2565b60405180910390fd5b61112760006123a6565b565b600a60019054906101000a900460ff1681565b611144611dcd565b73ffffffffffffffffffffffffffffffffffffffff166111626112e6565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613ae2565b60405180910390fd5b8060088190555050565b600a60009054906101000a900460ff1681565b6111dd611dcd565b73ffffffffffffffffffffffffffffffffffffffff166111fb6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613ae2565b60405180910390fd5b60004790506000811161126357600080fd5b61129b739d479e8998626dababb8012b2053df58060ee5e36103e861039d8461128c9190613dd2565b6112969190613da1565b61246c565b6112d273a800f34505e8b340cf3ab8793cb40bf09042b28f6103e8604b846112c39190613dd2565b6112cd9190613da1565b61246c565b6112e36112dd6112e6565b4761246c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461131f90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461134b90613f20565b80156113985780601f1061136d57610100808354040283529160200191611398565b820191906000526020600020905b81548152906001019060200180831161137b57829003601f168201915b5050505050905090565b6113b46113ad611dcd565b838361251d565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613bc2565b60405180910390fd5b600a60019054906101000a900460ff16611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90613b62565b60405180910390fd5b60058111156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b0906139c2565b60405180910390fd5b66c3663566a58000816114cc9190613dd2565b34101561150e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611505906138e2565b60405180910390fd5b600061151a6007612039565b905060026115b361152b9190613d4b565b82826115379190613d4b565b10611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e906139e2565b60405180910390fd5b601482600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115c49190613d4b565b1115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613962565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116549190613d4b565b9250508190555060005b828110156116815761166e612047565b808061167990613f83565b91505061165e565b505050565b611697611691611dcd565b8361206c565b6116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613c02565b60405180910390fd5b6116e28484848461268a565b50505050565b606060006116f585610fe9565b9050600081141561175257600067ffffffffffffffff81111561171b5761171a6140e7565b5b6040519080825280602002602001820160405280156117495781602001602082028036833780820191505090505b50915050611841565b60008167ffffffffffffffff81111561176e5761176d6140e7565b5b60405190808252806020026020018201604052801561179c5781602001602082028036833780820191505090505b5090506000808690505b8581101561183957838214156117bb57611839565b8773ffffffffffffffffffffffffffffffffffffffff166117db82610f37565b73ffffffffffffffffffffffffffffffffffffffff161415611826578083838151811061180b5761180a6140b8565b5b602002602001018181525050818061182290613f83565b9250505b808061183190613f83565b9150506117a6565b508193505050505b9392505050565b606061185382611d61565b611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613b42565b60405180910390fd5b600061189c6126e6565b905060008151116118bc57604051806020016040528060008152506118e7565b806118c684611e8e565b6040516020016118d7929190613799565b6040516020818303038152906040525b915050919050565b6118f7611dcd565b73ffffffffffffffffffffffffffffffffffffffff166119156112e6565b73ffffffffffffffffffffffffffffffffffffffff161461196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613ae2565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61199f611dcd565b73ffffffffffffffffffffffffffffffffffffffff166119bd6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90613ae2565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60085481565b611ae1611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611aff6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613ae2565b60405180910390fd5b6000611b616007612039565b905060026115b3611b729190613d4b565b8282611b7e9190613d4b565b10611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906139e2565b60405180910390fd5b60005b82811015611be457611bd1612047565b8080611bdc90613f83565b915050611bc1565b505050565b611bf1611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611c0f6112e6565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613ae2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90613922565b60405180910390fd5b611cde816123a6565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e4883610f37565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000821415611ed6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fea565b600082905060005b60008214611f08578080611ef190613f83565b915050600a82611f019190613da1565b9150611ede565b60008167ffffffffffffffff811115611f2457611f236140e7565b5b6040519080825280601f01601f191660200182016040528015611f565781602001600182028036833780820191505090505b5090505b60008514611fe357600182611f6f9190613e2c565b9150600a85611f7e9190613ffa565b6030611f8a9190613d4b565b60f81b818381518110611fa057611f9f6140b8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fdc9190613da1565b9450611f5a565b8093505050505b919050565b60008183604051602001612004929190613771565b60405160208183030381529060405280519060200120905092915050565b60006120318260085485612778565b905092915050565b600081600001549050919050565b60006120536007612039565b905061205f6007611ce1565b612069338261278f565b50565b600061207782611d61565b6120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613a02565b60405180910390fd5b60006120c183610f37565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213057508373ffffffffffffffffffffffffffffffffffffffff1661211884610860565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214157506121408185611a3f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661216a82610f37565b73ffffffffffffffffffffffffffffffffffffffff16146121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790613b22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222790613982565b60405180910390fd5b61223b83838361295d565b612246600082611dd5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122969190613e2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ed9190613d4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612492906137ec565b60006040518083038185875af1925050503d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b5050905080612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90613be2565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612583906139a2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267d919061388a565b60405180910390a3505050565b61269584848461214a565b6126a184848484612962565b6126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790613902565b60405180910390fd5b50505050565b6060600980546126f590613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461272190613f20565b801561276e5780601f106127435761010080835404028352916020019161276e565b820191906000526020600020905b81548152906001019060200180831161275157829003601f168201915b5050505050905090565b6000826127858584612af9565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690613a82565b60405180910390fd5b61280881611d61565b15612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90613942565b60405180910390fd5b6128546000838361295d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a49190613d4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006129838473ffffffffffffffffffffffffffffffffffffffff16612bac565b15612aec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129ac611dcd565b8786866040518563ffffffff1660e01b81526004016129ce949392919061381c565b602060405180830381600087803b1580156129e857600080fd5b505af1925050508015612a1957506040513d601f19601f82011682018060405250810190612a16919061313c565b60015b612a9c573d8060008114612a49576040519150601f19603f3d011682016040523d82523d6000602084013e612a4e565b606091505b50600081511415612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b90613902565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af1565b600190505b949350505050565b60008082905060005b8451811015612ba1576000858281518110612b2057612b1f6140b8565b5b60200260200101519050808311612b61578281604051602001612b44929190613745565b604051602081830303815290604052805190602001209250612b8d565b8083604051602001612b74929190613745565b6040516020818303038152906040528051906020012092505b508080612b9990613f83565b915050612b02565b508091505092915050565b600080823b905060008111915050919050565b828054612bcb90613f20565b90600052602060002090601f016020900481019282612bed5760008555612c34565b82601f10612c0657805160ff1916838001178555612c34565b82800160010185558215612c34579182015b82811115612c33578251825591602001919060010190612c18565b5b509050612c419190612c45565b5090565b5b80821115612c5e576000816000905550600101612c46565b5090565b6000612c75612c7084613c62565b613c3d565b905082815260208101848484011115612c9157612c90614125565b5b612c9c848285613ede565b509392505050565b6000612cb7612cb284613c93565b613c3d565b905082815260208101848484011115612cd357612cd2614125565b5b612cde848285613ede565b509392505050565b600081359050612cf581614770565b92915050565b60008083601f840112612d1157612d1061411b565b5b8235905067ffffffffffffffff811115612d2e57612d2d614116565b5b602083019150836020820283011115612d4a57612d49614120565b5b9250929050565b600081359050612d6081614787565b92915050565b600081359050612d758161479e565b92915050565b600081359050612d8a816147b5565b92915050565b600081519050612d9f816147b5565b92915050565b600082601f830112612dba57612db961411b565b5b8135612dca848260208601612c62565b91505092915050565b600082601f830112612de857612de761411b565b5b8135612df8848260208601612ca4565b91505092915050565b600081359050612e10816147cc565b92915050565b600060208284031215612e2c57612e2b61412f565b5b6000612e3a84828501612ce6565b91505092915050565b60008060408385031215612e5a57612e5961412f565b5b6000612e6885828601612ce6565b9250506020612e7985828601612ce6565b9150509250929050565b600080600060608486031215612e9c57612e9b61412f565b5b6000612eaa86828701612ce6565b9350506020612ebb86828701612ce6565b9250506040612ecc86828701612e01565b9150509250925092565b60008060008060808587031215612ef057612eef61412f565b5b6000612efe87828801612ce6565b9450506020612f0f87828801612ce6565b9350506040612f2087828801612e01565b925050606085013567ffffffffffffffff811115612f4157612f4061412a565b5b612f4d87828801612da5565b91505092959194509250565b60008060408385031215612f7057612f6f61412f565b5b6000612f7e85828601612ce6565b9250506020612f8f85828601612d51565b9150509250929050565b60008060408385031215612fb057612faf61412f565b5b6000612fbe85828601612ce6565b9250506020612fcf85828601612e01565b9150509250929050565b600080600060608486031215612ff257612ff161412f565b5b600061300086828701612ce6565b935050602061301186828701612e01565b925050604061302286828701612e01565b9150509250925092565b60008060008060008060a087890312156130495761304861412f565b5b600061305789828a01612ce6565b965050602061306889828a01612e01565b955050604061307989828a01612e01565b945050606087013567ffffffffffffffff81111561309a5761309961412a565b5b6130a689828a01612dd3565b935050608087013567ffffffffffffffff8111156130c7576130c661412a565b5b6130d389828a01612cfb565b92509250509295509295509295565b6000602082840312156130f8576130f761412f565b5b600061310684828501612d66565b91505092915050565b6000602082840312156131255761312461412f565b5b600061313384828501612d7b565b91505092915050565b6000602082840312156131525761315161412f565b5b600061316084828501612d90565b91505092915050565b60006020828403121561317f5761317e61412f565b5b600082013567ffffffffffffffff81111561319d5761319c61412a565b5b6131a984828501612dd3565b91505092915050565b6000602082840312156131c8576131c761412f565b5b60006131d684828501612e01565b91505092915050565b60006131eb8383613727565b60208301905092915050565b61320081613e60565b82525050565b61321761321282613e60565b613fcc565b82525050565b600061322882613cd4565b6132328185613d02565b935061323d83613cc4565b8060005b8381101561326e57815161325588826131df565b975061326083613cf5565b925050600181019050613241565b5085935050505092915050565b61328481613e72565b82525050565b61329381613e7e565b82525050565b6132aa6132a582613e7e565b613fde565b82525050565b60006132bb82613cdf565b6132c58185613d13565b93506132d5818560208601613eed565b6132de81614134565b840191505092915050565b60006132f482613cea565b6132fe8185613d2f565b935061330e818560208601613eed565b61331781614134565b840191505092915050565b600061332d82613cea565b6133378185613d40565b9350613347818560208601613eed565b80840191505092915050565b6000613360601683613d2f565b915061336b82614152565b602082019050919050565b6000613383603283613d2f565b915061338e8261417b565b604082019050919050565b60006133a6602683613d2f565b91506133b1826141ca565b604082019050919050565b60006133c9601c83613d2f565b91506133d482614219565b602082019050919050565b60006133ec601183613d2f565b91506133f782614242565b602082019050919050565b600061340f602483613d2f565b915061341a8261426b565b604082019050919050565b6000613432601983613d2f565b915061343d826142ba565b602082019050919050565b6000613455601283613d2f565b9150613460826142e3565b602082019050919050565b6000613478601483613d2f565b91506134838261430c565b602082019050919050565b600061349b602c83613d2f565b91506134a682614335565b604082019050919050565b60006134be603883613d2f565b91506134c982614384565b604082019050919050565b60006134e1602a83613d2f565b91506134ec826143d3565b604082019050919050565b6000613504602983613d2f565b915061350f82614422565b604082019050919050565b6000613527602083613d2f565b915061353282614471565b602082019050919050565b600061354a602c83613d2f565b91506135558261449a565b604082019050919050565b600061356d600183613d40565b9150613578826144e9565b600182019050919050565b6000613590600b83613d2f565b915061359b82614512565b602082019050919050565b60006135b3602083613d2f565b91506135be8261453b565b602082019050919050565b60006135d6601483613d2f565b91506135e182614564565b602082019050919050565b60006135f9602983613d2f565b91506136048261458d565b604082019050919050565b600061361c602f83613d2f565b9150613627826145dc565b604082019050919050565b600061363f601483613d2f565b915061364a8261462b565b602082019050919050565b6000613662602183613d2f565b915061366d82614654565b604082019050919050565b6000613685601883613d2f565b9150613690826146a3565b602082019050919050565b60006136a8601283613d2f565b91506136b3826146cc565b602082019050919050565b60006136cb600083613d24565b91506136d6826146f5565b600082019050919050565b60006136ee601083613d2f565b91506136f9826146f8565b602082019050919050565b6000613711603183613d2f565b915061371c82614721565b604082019050919050565b61373081613ed4565b82525050565b61373f81613ed4565b82525050565b60006137518285613299565b6020820191506137618284613299565b6020820191508190509392505050565b600061377d8285613322565b91506137898284613206565b6014820191508190509392505050565b60006137a58285613322565b91506137b18284613322565b91508190509392505050565b60006137c98285613322565b91506137d482613560565b91506137e08284613322565b91508190509392505050565b60006137f7826136be565b9150819050919050565b600060208201905061381660008301846131f7565b92915050565b600060808201905061383160008301876131f7565b61383e60208301866131f7565b61384b6040830185613736565b818103606083015261385d81846132b0565b905095945050505050565b60006020820190508181036000830152613882818461321d565b905092915050565b600060208201905061389f600083018461327b565b92915050565b60006020820190506138ba600083018461328a565b92915050565b600060208201905081810360008301526138da81846132e9565b905092915050565b600060208201905081810360008301526138fb81613353565b9050919050565b6000602082019050818103600083015261391b81613376565b9050919050565b6000602082019050818103600083015261393b81613399565b9050919050565b6000602082019050818103600083015261395b816133bc565b9050919050565b6000602082019050818103600083015261397b816133df565b9050919050565b6000602082019050818103600083015261399b81613402565b9050919050565b600060208201905081810360008301526139bb81613425565b9050919050565b600060208201905081810360008301526139db81613448565b9050919050565b600060208201905081810360008301526139fb8161346b565b9050919050565b60006020820190508181036000830152613a1b8161348e565b9050919050565b60006020820190508181036000830152613a3b816134b1565b9050919050565b60006020820190508181036000830152613a5b816134d4565b9050919050565b60006020820190508181036000830152613a7b816134f7565b9050919050565b60006020820190508181036000830152613a9b8161351a565b9050919050565b60006020820190508181036000830152613abb8161353d565b9050919050565b60006020820190508181036000830152613adb81613583565b9050919050565b60006020820190508181036000830152613afb816135a6565b9050919050565b60006020820190508181036000830152613b1b816135c9565b9050919050565b60006020820190508181036000830152613b3b816135ec565b9050919050565b60006020820190508181036000830152613b5b8161360f565b9050919050565b60006020820190508181036000830152613b7b81613632565b9050919050565b60006020820190508181036000830152613b9b81613655565b9050919050565b60006020820190508181036000830152613bbb81613678565b9050919050565b60006020820190508181036000830152613bdb8161369b565b9050919050565b60006020820190508181036000830152613bfb816136e1565b9050919050565b60006020820190508181036000830152613c1b81613704565b9050919050565b6000602082019050613c376000830184613736565b92915050565b6000613c47613c58565b9050613c538282613f52565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7d57613c7c6140e7565b5b613c8682614134565b9050602081019050919050565b600067ffffffffffffffff821115613cae57613cad6140e7565b5b613cb782614134565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5682613ed4565b9150613d6183613ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9657613d9561402b565b5b828201905092915050565b6000613dac82613ed4565b9150613db783613ed4565b925082613dc757613dc661405a565b5b828204905092915050565b6000613ddd82613ed4565b9150613de883613ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e2157613e2061402b565b5b828202905092915050565b6000613e3782613ed4565b9150613e4283613ed4565b925082821015613e5557613e5461402b565b5b828203905092915050565b6000613e6b82613eb4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f0b578082015181840152602081019050613ef0565b83811115613f1a576000848401525b50505050565b60006002820490506001821680613f3857607f821691505b60208210811415613f4c57613f4b614089565b5b50919050565b613f5b82614134565b810181811067ffffffffffffffff82111715613f7a57613f796140e7565b5b80604052505050565b6000613f8e82613ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fc157613fc061402b565b5b600182019050919050565b6000613fd782613fe8565b9050919050565b6000819050919050565b6000613ff382614145565b9050919050565b600061400582613ed4565b915061401083613ed4565b9250826140205761401f61405a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f756768206574686572732073656e7400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4578636565647320616c6c6f77616e6365000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6f206d616e79207265717565737465640000000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f3a00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686176656e27742073746172746564000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5072652d73616c6520686176656e277420737461727465640000000000000000600082015250565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61477981613e60565b811461478457600080fd5b50565b61479081613e72565b811461479b57600080fd5b50565b6147a781613e7e565b81146147b257600080fd5b50565b6147be81613e88565b81146147c957600080fd5b50565b6147d581613ed4565b81146147e057600080fd5b5056fea264697066735822122024a3678e4e663c864312b686ae9f9ea505f35964ef9a7d8bd4df56b9eae19ce464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a05df767997c507fd05ac7cf9dc1a9e1fab8e213fbc53c277339640a916f310cd10000000000000000000000000000000000000000000000000000000000000007476f627a4e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474f425a00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): GobzNFT
Arg [1] : symbol (string): GOBZ
Arg [2] : root_ (bytes32): 0x5df767997c507fd05ac7cf9dc1a9e1fab8e213fbc53c277339640a916f310cd1
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 5df767997c507fd05ac7cf9dc1a9e1fab8e213fbc53c277339640a916f310cd1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 476f627a4e465400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 474f425a00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.