Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
1,111 DAOPNK
Holders
638
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DAOPNKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DaoPunks
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /** * @title DaoPunks * DaoPunks - Smart contract for DaoPunks characters */ contract DaoPunks is ERC721, Ownable { address openseaProxyAddress; string public contract_ipfs_json; string public contract_base_uri; string private baseURI; using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 MAX_NFTS = 1111; uint256 minting_price = 0.08 ether; bool collection_locked = false; uint256 public MIN_BANK = 35000000000000000000000; bool whitelist_active = true; mapping(address => uint256) private _purchases; mapping(address => bool) private _whitelisted; IERC20 private BANK; constructor( address _openseaProxyAddress, string memory _name, string memory _ticker, string memory _contract_ipfs, address _bankAddress ) ERC721(_name, _ticker) { openseaProxyAddress = _openseaProxyAddress; contract_ipfs_json = _contract_ipfs; contract_base_uri = "https://ipfs.io/ipfs/QmRF2B8gotBTWidw34uwSyF9egEu88Jkhgviu6rrD1U6V6/"; BANK = IERC20(_bankAddress); } function _baseURI() internal override view returns (string memory) { return contract_base_uri; } function tokenURI(uint256 _tokenId) public view override(ERC721) returns (string memory) { string memory _tknId = Strings.toString(_tokenId); return string(abi.encodePacked(contract_base_uri, _tknId, ".json")); } function contractURI() public view returns (string memory) { return contract_ipfs_json; } function tokensOfOwner(address _owner) external view returns(uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalNFTs = totalSupply(); uint256 resultIndex = 0; uint256 nftId; for (nftId = 1; nftId <= totalNFTs; nftId++) { if (ownerOf(nftId) == _owner) { result[resultIndex] = nftId; resultIndex++; } } return result; } } /* This method will first mint the token to the address. */ function mintNFT() public payable { bool canMint = false; if(whitelist_active){ uint256 bank_balance = BANK.balanceOf(msg.sender); if(bank_balance >= MIN_BANK){ canMint = true; }else{ canMint = isWhitelisted(msg.sender); } }else{ canMint = true; } require(canMint, "DaoPunks: You can't mint because don't have minimum $BANK or whitelisted"); require(msg.value % minting_price == 0, 'DaoPunks: Amount should be a multiple of minting cost'); uint256 amount = msg.value / minting_price; require(amount >= 1, 'DaoPunks: Amount should be at least 1'); require(amount <= 2, 'DaoPunks: Amount must be less or equal to 2'); uint256 reached = amount + _tokenIdCounter.current(); require(reached <= MAX_NFTS, "DaoPunks: Hard cap reached."); uint256 purchases = _purchases[msg.sender] + amount; require(purchases <= 2, 'DaoPunks: Cannot purchase more than 2'); _purchases[msg.sender] = _purchases[msg.sender] + amount; uint j = 0; for (j = 0; j < amount; j++) { _tokenIdCounter.increment(); uint256 newTokenId = _tokenIdCounter.current(); _mint(msg.sender, newTokenId); } } function totalSupply() public view returns (uint256) { return _tokenIdCounter.current(); } function bankBalance(address _address) public view returns (uint256) { uint256 bank_balance = BANK.balanceOf(_address); return bank_balance; } function amountPurchased(address _address) public view returns (uint256) { return _purchases[_address]; } /* This method will allow owner to fix the contract details */ function fixContractDescription(string memory newDescription) public onlyOwner { contract_ipfs_json = newDescription; } /* This method will allow owner to fix the bank address */ function fixBankAddress(address _bankAddress) public onlyOwner { BANK = IERC20(_bankAddress); } /* This method will allow owner to fix the minting price */ function fixPrice(uint256 price) public onlyOwner { minting_price = price; } /* This method will allow owner to fix the minimum bank treshold */ function fixMinBank(uint256 amount) public onlyOwner { MIN_BANK = amount; } /* This method will allow owner to fix the whitelist role */ function fixWhitelist(bool state) public onlyOwner { whitelist_active = state; } /* This method will allow owner to fix the contract baseURI */ function fixBaseURI(string memory newURI) public onlyOwner { require(!collection_locked, "DaoPunks: Collection is locked."); contract_base_uri = newURI; } /* This method will allow owner to lock the collection */ function lockCollection() public onlyOwner { collection_locked = true; } /* This method will allow owner to mint tokens */ function ownerMint() public onlyOwner { _tokenIdCounter.increment(); uint256 newTokenId = _tokenIdCounter.current(); _mint(msg.sender, newTokenId); } /* These methods will add or remove from whitelist */ function isWhitelisted(address _toCheck) public view returns (bool) { return _whitelisted[_toCheck] == true; } function addWhitelist(address _toAdd) public onlyOwner { _whitelisted[_toAdd] = true; } function removeWhitelist(address _toRemove) public onlyOwner { _whitelisted[_toRemove] = false; } /* This method will allow owner to get the balance of the smart contract */ function getBalance() public view returns (uint256) { return address(this).balance; } /* This method will allow owner to withdraw all ethers */ function withdrawEther() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, 'DaoPunks: Nothing to withdraw!'); payable(msg.sender).transfer(balance); } /** * Override isApprovedForAll to whitelist proxy accounts */ function isApprovedForAll(address _owner, address _operator) public override view returns (bool isOperator) { // Opensea address if ( _operator == address(openseaProxyAddress) ) { return true; } return super.isApprovedForAll(_owner, _operator); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "berlin", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_openseaProxyAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_contract_ipfs","type":"string"},{"internalType":"address","name":"_bankAddress","type":"address"}],"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":"MIN_BANK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAdd","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"amountPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_address","type":"address"}],"name":"bankBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_base_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_ipfs_json","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bankAddress","type":"address"}],"name":"fixBankAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"fixBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newDescription","type":"string"}],"name":"fixContractDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"fixMinBank","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"fixPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"fixWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","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":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toCheck","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_toRemove","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","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":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610457600c5567011c37937e080000600d556000600e60006101000a81548160ff0219169083151502179055506907695a92c20d6fe00000600f556001601060006101000a81548160ff0219169083151502179055503480156200006757600080fd5b5060405162004e7e38038062004e7e83398181016040528101906200008d9190620003ce565b83838160009080519060200190620000a792919062000289565b508060019080519060200190620000c092919062000289565b505050620000e3620000d7620001bb60201b60201c565b620001c360201b60201c565b84600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600890805190602001906200013c92919062000289565b5060405180608001604052806044815260200162004e3a60449139600990805190602001906200016e92919062000289565b5080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505062000685565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000297906200057c565b90600052602060002090601f016020900481019282620002bb576000855562000307565b82601f10620002d657805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000306578251825591602001919060010190620002e9565b5b5090506200031691906200031a565b5090565b5b80821115620003355760008160009055506001016200031b565b5090565b6000620003506200034a84620004dc565b620004b3565b9050828152602081018484840111156200036f576200036e6200064b565b5b6200037c84828562000546565b509392505050565b60008151905062000395816200066b565b92915050565b600082601f830112620003b357620003b262000646565b5b8151620003c584826020860162000339565b91505092915050565b600080600080600060a08688031215620003ed57620003ec62000655565b5b6000620003fd8882890162000384565b955050602086015167ffffffffffffffff81111562000421576200042062000650565b5b6200042f888289016200039b565b945050604086015167ffffffffffffffff81111562000453576200045262000650565b5b62000461888289016200039b565b935050606086015167ffffffffffffffff81111562000485576200048462000650565b5b62000493888289016200039b565b9250506080620004a68882890162000384565b9150509295509295909350565b6000620004bf620004d2565b9050620004cd8282620005b2565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fa57620004f962000617565b5b62000505826200065a565b9050602081019050919050565b60006200051f8262000526565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200056657808201518184015260208101905062000549565b8381111562000576576000848401525b50505050565b600060028204905060018216806200059557607f821691505b60208210811415620005ac57620005ab620005e8565b5b50919050565b620005bd826200065a565b810181811067ffffffffffffffff82111715620005df57620005de62000617565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006768162000512565b81146200068257600080fd5b50565b6147a580620006956000396000f3fe6080604052600436106102255760003560e01c806369a05176116101235780639839fa4a116100ab578063c87b56dd1161006f578063c87b56dd146107bc578063e8a3d485146107f9578063e985e9c514610824578063f2fde38b14610861578063f80f5dd51461088a57610225565b80639839fa4a146106ed578063a22cb4651461072a578063b12dc99114610753578063b703a9f41461076a578063b88d4fde1461079357610225565b806378c8cda7116100f257806378c8cda7146106085780638462151c146106315780638b4234431461066e5780638da5cb5b1461069757806395d89b41146106c257610225565b806369a051761461057457806370a082311461059d578063715018a6146105da5780637362377b146105f157610225565b806318160ddd116101b15780633af32abf116101755780633af32abf1461047b57806342842e0e146104b8578063539957a7146104e157806361ad20571461050c5780636352211e1461053757610225565b806318160ddd146103ac5780631a4fba6c146103d7578063211eb07d1461040057806323b872dd146104295780632a1436c21461045257610225565b8063081812fc116101f8578063081812fc146102fa578063095ea7b3146103375780630ee83a711461036057806312065fe01461037757806314f710fe146103a257610225565b806301ffc9a71461022a5780630346f18f1461026757806306fdde0314610292578063074ba79d146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613236565b6108b3565b60405161025e9190613907565b60405180910390f35b34801561027357600080fd5b5061027c610995565b6040516102899190613922565b60405180910390f35b34801561029e57600080fd5b506102a7610a23565b6040516102b49190613922565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613046565b610ab5565b6040516102f19190613c24565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906132d9565b610afe565b60405161032e919061387e565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906131c9565b610b83565b005b34801561036c57600080fd5b50610375610c9b565b005b34801561038357600080fd5b5061038c610d34565b6040516103999190613c24565b60405180910390f35b6103aa610d3c565b005b3480156103b857600080fd5b506103c161111c565b6040516103ce9190613c24565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613290565b61112d565b005b34801561040c57600080fd5b5061042760048036038101906104229190613290565b6111c3565b005b34801561043557600080fd5b50610450600480360381019061044b91906130b3565b6112a9565b005b34801561045e57600080fd5b5061047960048036038101906104749190613209565b611309565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613046565b6113a2565b6040516104af9190613907565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906130b3565b6113ff565b005b3480156104ed57600080fd5b506104f661141f565b6040516105039190613c24565b60405180910390f35b34801561051857600080fd5b50610521611425565b60405161052e9190613922565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906132d9565b6114b3565b60405161056b919061387e565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906132d9565b611565565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613046565b6115eb565b6040516105d19190613c24565b60405180910390f35b3480156105e657600080fd5b506105ef6116a3565b005b3480156105fd57600080fd5b5061060661172b565b005b34801561061457600080fd5b5061062f600480360381019061062a9190613046565b611839565b005b34801561063d57600080fd5b5061065860048036038101906106539190613046565b611910565b60405161066591906138e5565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190613046565b611a6e565b005b3480156106a357600080fd5b506106ac611b2e565b6040516106b9919061387e565b60405180910390f35b3480156106ce57600080fd5b506106d7611b58565b6040516106e49190613922565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613046565b611bea565b6040516107219190613c24565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613189565b611ca3565b005b34801561075f57600080fd5b50610768611e24565b005b34801561077657600080fd5b50610791600480360381019061078c91906132d9565b611ec5565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613106565b611f4b565b005b3480156107c857600080fd5b506107e360048036038101906107de91906132d9565b611fad565b6040516107f09190613922565b60405180910390f35b34801561080557600080fd5b5061080e611fe7565b60405161081b9190613922565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613073565b612079565b6040516108589190613907565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613046565b6120ed565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613046565b6121e5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e575061098d826122bc565b5b9050919050565b600880546109a290613ec8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce90613ec8565b8015610a1b5780601f106109f057610100808354040283529160200191610a1b565b820191906000526020600020905b8154815290600101906020018083116109fe57829003601f168201915b505050505081565b606060008054610a3290613ec8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90613ec8565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b0982612326565b610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90613b44565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8e826114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613ba4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e612392565b73ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c81610c47612392565b612079565b5b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613a84565b60405180910390fd5b610c96838361239a565b505050565b610ca3612392565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b64565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600047905090565b6000601060009054906101000a900460ff1615610e26576000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610db0919061387e565b60206040518083038186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e009190613306565b9050600f548110610e145760019150610e20565b610e1d336113a2565b91505b50610e2b565b600190505b80610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613a04565b60405180910390fd5b6000600d5434610e7b9190613f74565b14610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613984565b60405180910390fd5b6000600d5434610ecb9190613dad565b90506001811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613ae4565b60405180910390fd5b6002811115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b04565b60405180910390fd5b6000610f61600b612453565b82610f6c9190613d57565b9050600c54811115610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613be4565b60405180910390fd5b600082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110009190613d57565b90506002811115611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613a64565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919190613d57565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b83811015611115576110e9600b612461565b60006110f5600b612453565b90506111013382612477565b50808061110d90613f2b565b9150506110d7565b5050505050565b6000611128600b612453565b905090565b611135612392565b73ffffffffffffffffffffffffffffffffffffffff16611153611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613b64565b60405180910390fd5b80600890805190602001906111bf929190612e45565b5050565b6111cb612392565b73ffffffffffffffffffffffffffffffffffffffff166111e9611b2e565b73ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613b64565b60405180910390fd5b600e60009054906101000a900460ff161561128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613c04565b60405180910390fd5b80600990805190602001906112a5929190612e45565b5050565b6112ba6112b4612392565b82612645565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613bc4565b60405180910390fd5b611304838383612723565b505050565b611311612392565b73ffffffffffffffffffffffffffffffffffffffff1661132f611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613b64565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600060011515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b61141a83838360405180602001604052806000815250611f4b565b505050565b600f5481565b6009805461143290613ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90613ec8565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613ac4565b60405180910390fd5b80915050919050565b61156d612392565b73ffffffffffffffffffffffffffffffffffffffff1661158b611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613b64565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613aa4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ab612392565b73ffffffffffffffffffffffffffffffffffffffff166116c9611b2e565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613b64565b60405180910390fd5b611729600061297f565b565b611733612392565b73ffffffffffffffffffffffffffffffffffffffff16611751611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613b64565b60405180910390fd5b6000479050600081116117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613a44565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611835573d6000803e3d6000fd5b5050565b611841612392565b73ffffffffffffffffffffffffffffffffffffffff1661185f611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613b64565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600061191d836115eb565b9050600081141561197a57600067ffffffffffffffff81111561194357611942614061565b5b6040519080825280602002602001820160405280156119715781602001602082028036833780820191505090505b50915050611a69565b60008167ffffffffffffffff81111561199657611995614061565b5b6040519080825280602002602001820160405280156119c45781602001602082028036833780820191505090505b50905060006119d161111c565b9050600080600190505b828111611a60578673ffffffffffffffffffffffffffffffffffffffff16611a02826114b3565b73ffffffffffffffffffffffffffffffffffffffff161415611a4d5780848381518110611a3257611a31614032565b5b6020026020010181815250508180611a4990613f2b565b9250505b8080611a5890613f2b565b9150506119db565b83955050505050505b919050565b611a76612392565b73ffffffffffffffffffffffffffffffffffffffff16611a94611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b64565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b6790613ec8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9390613ec8565b8015611be05780601f10611bb557610100808354040283529160200191611be0565b820191906000526020600020905b815481529060010190602001808311611bc357829003601f168201915b5050505050905090565b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611c48919061387e565b60206040518083038186803b158015611c6057600080fd5b505afa158015611c74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c989190613306565b905080915050919050565b611cab612392565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906139e4565b60405180910390fd5b8060056000611d26612392565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd3612392565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e189190613907565b60405180910390a35050565b611e2c612392565b73ffffffffffffffffffffffffffffffffffffffff16611e4a611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613b64565b60405180910390fd5b611eaa600b612461565b6000611eb6600b612453565b9050611ec23382612477565b50565b611ecd612392565b73ffffffffffffffffffffffffffffffffffffffff16611eeb611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613b64565b60405180910390fd5b80600d8190555050565b611f5c611f56612392565b83612645565b611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613bc4565b60405180910390fd5b611fa784848484612a45565b50505050565b60606000611fba83612aa1565b9050600981604051602001611fd092919061384f565b604051602081830303815290604052915050919050565b606060088054611ff690613ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461202290613ec8565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b5050505050905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120da57600190506120e7565b6120e48383612c02565b90505b92915050565b6120f5612392565b73ffffffffffffffffffffffffffffffffffffffff16612113611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613964565b60405180910390fd5b6121e28161297f565b50565b6121ed612392565b73ffffffffffffffffffffffffffffffffffffffff1661220b611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890613b64565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661240d836114b3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90613b24565b60405180910390fd5b6124f081612326565b15612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612527906139a4565b60405180910390fd5b61253c60008383612c96565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258c9190613d57565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061265082612326565b61268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690613a24565b60405180910390fd5b600061269a836114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061270957508373ffffffffffffffffffffffffffffffffffffffff166126f184610afe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061271a57506127198185612079565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612743826114b3565b73ffffffffffffffffffffffffffffffffffffffff1614612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612800906139c4565b60405180910390fd5b612814838383612c96565b61281f60008261239a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286f9190613dde565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c69190613d57565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a50848484612723565b612a5c84848484612c9b565b612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290613944565b60405180910390fd5b50505050565b60606000821415612ae9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bfd565b600082905060005b60008214612b1b578080612b0490613f2b565b915050600a82612b149190613dad565b9150612af1565b60008167ffffffffffffffff811115612b3757612b36614061565b5b6040519080825280601f01601f191660200182016040528015612b695781602001600182028036833780820191505090505b5090505b60008514612bf657600182612b829190613dde565b9150600a85612b919190613f74565b6030612b9d9190613d57565b60f81b818381518110612bb357612bb2614032565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bef9190613dad565b9450612b6d565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b6000612cbc8473ffffffffffffffffffffffffffffffffffffffff16612e32565b15612e25578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ce5612392565b8786866040518563ffffffff1660e01b8152600401612d079493929190613899565b602060405180830381600087803b158015612d2157600080fd5b505af1925050508015612d5257506040513d601f19601f82011682018060405250810190612d4f9190613263565b60015b612dd5573d8060008114612d82576040519150601f19603f3d011682016040523d82523d6000602084013e612d87565b606091505b50600081511415612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613944565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e2a565b600190505b949350505050565b600080823b905060008111915050919050565b828054612e5190613ec8565b90600052602060002090601f016020900481019282612e735760008555612eba565b82601f10612e8c57805160ff1916838001178555612eba565b82800160010185558215612eba579182015b82811115612eb9578251825591602001919060010190612e9e565b5b509050612ec79190612ecb565b5090565b5b80821115612ee4576000816000905550600101612ecc565b5090565b6000612efb612ef684613c64565b613c3f565b905082815260208101848484011115612f1757612f16614095565b5b612f22848285613e86565b509392505050565b6000612f3d612f3884613c95565b613c3f565b905082815260208101848484011115612f5957612f58614095565b5b612f64848285613e86565b509392505050565b600081359050612f7b81614713565b92915050565b600081359050612f908161472a565b92915050565b600081359050612fa581614741565b92915050565b600081519050612fba81614741565b92915050565b600082601f830112612fd557612fd4614090565b5b8135612fe5848260208601612ee8565b91505092915050565b600082601f83011261300357613002614090565b5b8135613013848260208601612f2a565b91505092915050565b60008135905061302b81614758565b92915050565b60008151905061304081614758565b92915050565b60006020828403121561305c5761305b61409f565b5b600061306a84828501612f6c565b91505092915050565b6000806040838503121561308a5761308961409f565b5b600061309885828601612f6c565b92505060206130a985828601612f6c565b9150509250929050565b6000806000606084860312156130cc576130cb61409f565b5b60006130da86828701612f6c565b93505060206130eb86828701612f6c565b92505060406130fc8682870161301c565b9150509250925092565b600080600080608085870312156131205761311f61409f565b5b600061312e87828801612f6c565b945050602061313f87828801612f6c565b93505060406131508782880161301c565b925050606085013567ffffffffffffffff8111156131715761317061409a565b5b61317d87828801612fc0565b91505092959194509250565b600080604083850312156131a05761319f61409f565b5b60006131ae85828601612f6c565b92505060206131bf85828601612f81565b9150509250929050565b600080604083850312156131e0576131df61409f565b5b60006131ee85828601612f6c565b92505060206131ff8582860161301c565b9150509250929050565b60006020828403121561321f5761321e61409f565b5b600061322d84828501612f81565b91505092915050565b60006020828403121561324c5761324b61409f565b5b600061325a84828501612f96565b91505092915050565b6000602082840312156132795761327861409f565b5b600061328784828501612fab565b91505092915050565b6000602082840312156132a6576132a561409f565b5b600082013567ffffffffffffffff8111156132c4576132c361409a565b5b6132d084828501612fee565b91505092915050565b6000602082840312156132ef576132ee61409f565b5b60006132fd8482850161301c565b91505092915050565b60006020828403121561331c5761331b61409f565b5b600061332a84828501613031565b91505092915050565b600061333f8383613831565b60208301905092915050565b61335481613e12565b82525050565b600061336582613ceb565b61336f8185613d19565b935061337a83613cc6565b8060005b838110156133ab5781516133928882613333565b975061339d83613d0c565b92505060018101905061337e565b5085935050505092915050565b6133c181613e24565b82525050565b60006133d282613cf6565b6133dc8185613d2a565b93506133ec818560208601613e95565b6133f5816140a4565b840191505092915050565b600061340b82613d01565b6134158185613d3b565b9350613425818560208601613e95565b61342e816140a4565b840191505092915050565b600061344482613d01565b61344e8185613d4c565b935061345e818560208601613e95565b80840191505092915050565b6000815461347781613ec8565b6134818186613d4c565b9450600182166000811461349c57600181146134ad576134e0565b60ff198316865281860193506134e0565b6134b685613cd6565b60005b838110156134d8578154818901526001820191506020810190506134b9565b838801955050505b50505092915050565b60006134f6603283613d3b565b9150613501826140b5565b604082019050919050565b6000613519602683613d3b565b915061352482614104565b604082019050919050565b600061353c603583613d3b565b915061354782614153565b604082019050919050565b600061355f601c83613d3b565b915061356a826141a2565b602082019050919050565b6000613582602483613d3b565b915061358d826141cb565b604082019050919050565b60006135a5601983613d3b565b91506135b08261421a565b602082019050919050565b60006135c8604883613d3b565b91506135d382614243565b606082019050919050565b60006135eb602c83613d3b565b91506135f6826142b8565b604082019050919050565b600061360e601e83613d3b565b915061361982614307565b602082019050919050565b6000613631602583613d3b565b915061363c82614330565b604082019050919050565b6000613654603883613d3b565b915061365f8261437f565b604082019050919050565b6000613677602a83613d3b565b9150613682826143ce565b604082019050919050565b600061369a602983613d3b565b91506136a58261441d565b604082019050919050565b60006136bd602583613d3b565b91506136c88261446c565b604082019050919050565b60006136e0602b83613d3b565b91506136eb826144bb565b604082019050919050565b6000613703602083613d3b565b915061370e8261450a565b602082019050919050565b6000613726602c83613d3b565b915061373182614533565b604082019050919050565b6000613749600583613d4c565b915061375482614582565b600582019050919050565b600061376c602083613d3b565b9150613777826145ab565b602082019050919050565b600061378f602983613d3b565b915061379a826145d4565b604082019050919050565b60006137b2602183613d3b565b91506137bd82614623565b604082019050919050565b60006137d5603183613d3b565b91506137e082614672565b604082019050919050565b60006137f8601b83613d3b565b9150613803826146c1565b602082019050919050565b600061381b601f83613d3b565b9150613826826146ea565b602082019050919050565b61383a81613e7c565b82525050565b61384981613e7c565b82525050565b600061385b828561346a565b91506138678284613439565b91506138728261373c565b91508190509392505050565b6000602082019050613893600083018461334b565b92915050565b60006080820190506138ae600083018761334b565b6138bb602083018661334b565b6138c86040830185613840565b81810360608301526138da81846133c7565b905095945050505050565b600060208201905081810360008301526138ff818461335a565b905092915050565b600060208201905061391c60008301846133b8565b92915050565b6000602082019050818103600083015261393c8184613400565b905092915050565b6000602082019050818103600083015261395d816134e9565b9050919050565b6000602082019050818103600083015261397d8161350c565b9050919050565b6000602082019050818103600083015261399d8161352f565b9050919050565b600060208201905081810360008301526139bd81613552565b9050919050565b600060208201905081810360008301526139dd81613575565b9050919050565b600060208201905081810360008301526139fd81613598565b9050919050565b60006020820190508181036000830152613a1d816135bb565b9050919050565b60006020820190508181036000830152613a3d816135de565b9050919050565b60006020820190508181036000830152613a5d81613601565b9050919050565b60006020820190508181036000830152613a7d81613624565b9050919050565b60006020820190508181036000830152613a9d81613647565b9050919050565b60006020820190508181036000830152613abd8161366a565b9050919050565b60006020820190508181036000830152613add8161368d565b9050919050565b60006020820190508181036000830152613afd816136b0565b9050919050565b60006020820190508181036000830152613b1d816136d3565b9050919050565b60006020820190508181036000830152613b3d816136f6565b9050919050565b60006020820190508181036000830152613b5d81613719565b9050919050565b60006020820190508181036000830152613b7d8161375f565b9050919050565b60006020820190508181036000830152613b9d81613782565b9050919050565b60006020820190508181036000830152613bbd816137a5565b9050919050565b60006020820190508181036000830152613bdd816137c8565b9050919050565b60006020820190508181036000830152613bfd816137eb565b9050919050565b60006020820190508181036000830152613c1d8161380e565b9050919050565b6000602082019050613c396000830184613840565b92915050565b6000613c49613c5a565b9050613c558282613efa565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7f57613c7e614061565b5b613c88826140a4565b9050602081019050919050565b600067ffffffffffffffff821115613cb057613caf614061565b5b613cb9826140a4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6282613e7c565b9150613d6d83613e7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613da257613da1613fa5565b5b828201905092915050565b6000613db882613e7c565b9150613dc383613e7c565b925082613dd357613dd2613fd4565b5b828204905092915050565b6000613de982613e7c565b9150613df483613e7c565b925082821015613e0757613e06613fa5565b5b828203905092915050565b6000613e1d82613e5c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eb3578082015181840152602081019050613e98565b83811115613ec2576000848401525b50505050565b60006002820490506001821680613ee057607f821691505b60208210811415613ef457613ef3614003565b5b50919050565b613f03826140a4565b810181811067ffffffffffffffff82111715613f2257613f21614061565b5b80604052505050565b6000613f3682613e7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6957613f68613fa5565b5b600182019050919050565b6000613f7f82613e7c565b9150613f8a83613e7c565b925082613f9a57613f99613fd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e742073686f756c642062652061206d756c60008201527f7469706c65206f66206d696e74696e6720636f73740000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44616f50756e6b733a20596f752063616e2774206d696e74206265636175736560008201527f20646f6e27742068617665206d696e696d756d202442414e4b206f722077686960208201527f74656c6973746564000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a204e6f7468696e6720746f207769746864726177210000600082015250565b7f44616f50756e6b733a2043616e6e6f74207075726368617365206d6f7265207460008201527f68616e2032000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e742073686f756c64206265206174206c6560008201527f6173742031000000000000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e74206d757374206265206c657373206f7260008201527f20657175616c20746f2032000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44616f50756e6b733a20486172642063617020726561636865642e0000000000600082015250565b7f44616f50756e6b733a20436f6c6c656374696f6e206973206c6f636b65642e00600082015250565b61471c81613e12565b811461472757600080fd5b50565b61473381613e24565b811461473e57600080fd5b50565b61474a81613e30565b811461475557600080fd5b50565b61476181613e7c565b811461476c57600080fd5b5056fea26469706673582212207f8aa872525dc283ffb1f5aa9fdaa9af0f541126c4d76a418a835c42ef96d72864736f6c6343000806003368747470733a2f2f697066732e696f2f697066732f516d5246324238676f7442545769647733347577537946396567457538384a6b68677669753672724431553656362f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000002d94aa3e47d9d5024503ca8491fce9a2fb4da198000000000000000000000000000000000000000000000000000000000000000844414f50554e4b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644414f504e4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f6261666b726569616179353768676c756c6c3573366c7736646e357575796c786664786765377435367536766a63723777337065346d746670336500000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806369a05176116101235780639839fa4a116100ab578063c87b56dd1161006f578063c87b56dd146107bc578063e8a3d485146107f9578063e985e9c514610824578063f2fde38b14610861578063f80f5dd51461088a57610225565b80639839fa4a146106ed578063a22cb4651461072a578063b12dc99114610753578063b703a9f41461076a578063b88d4fde1461079357610225565b806378c8cda7116100f257806378c8cda7146106085780638462151c146106315780638b4234431461066e5780638da5cb5b1461069757806395d89b41146106c257610225565b806369a051761461057457806370a082311461059d578063715018a6146105da5780637362377b146105f157610225565b806318160ddd116101b15780633af32abf116101755780633af32abf1461047b57806342842e0e146104b8578063539957a7146104e157806361ad20571461050c5780636352211e1461053757610225565b806318160ddd146103ac5780631a4fba6c146103d7578063211eb07d1461040057806323b872dd146104295780632a1436c21461045257610225565b8063081812fc116101f8578063081812fc146102fa578063095ea7b3146103375780630ee83a711461036057806312065fe01461037757806314f710fe146103a257610225565b806301ffc9a71461022a5780630346f18f1461026757806306fdde0314610292578063074ba79d146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613236565b6108b3565b60405161025e9190613907565b60405180910390f35b34801561027357600080fd5b5061027c610995565b6040516102899190613922565b60405180910390f35b34801561029e57600080fd5b506102a7610a23565b6040516102b49190613922565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613046565b610ab5565b6040516102f19190613c24565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906132d9565b610afe565b60405161032e919061387e565b60405180910390f35b34801561034357600080fd5b5061035e600480360381019061035991906131c9565b610b83565b005b34801561036c57600080fd5b50610375610c9b565b005b34801561038357600080fd5b5061038c610d34565b6040516103999190613c24565b60405180910390f35b6103aa610d3c565b005b3480156103b857600080fd5b506103c161111c565b6040516103ce9190613c24565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613290565b61112d565b005b34801561040c57600080fd5b5061042760048036038101906104229190613290565b6111c3565b005b34801561043557600080fd5b50610450600480360381019061044b91906130b3565b6112a9565b005b34801561045e57600080fd5b5061047960048036038101906104749190613209565b611309565b005b34801561048757600080fd5b506104a2600480360381019061049d9190613046565b6113a2565b6040516104af9190613907565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906130b3565b6113ff565b005b3480156104ed57600080fd5b506104f661141f565b6040516105039190613c24565b60405180910390f35b34801561051857600080fd5b50610521611425565b60405161052e9190613922565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906132d9565b6114b3565b60405161056b919061387e565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906132d9565b611565565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613046565b6115eb565b6040516105d19190613c24565b60405180910390f35b3480156105e657600080fd5b506105ef6116a3565b005b3480156105fd57600080fd5b5061060661172b565b005b34801561061457600080fd5b5061062f600480360381019061062a9190613046565b611839565b005b34801561063d57600080fd5b5061065860048036038101906106539190613046565b611910565b60405161066591906138e5565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190613046565b611a6e565b005b3480156106a357600080fd5b506106ac611b2e565b6040516106b9919061387e565b60405180910390f35b3480156106ce57600080fd5b506106d7611b58565b6040516106e49190613922565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613046565b611bea565b6040516107219190613c24565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613189565b611ca3565b005b34801561075f57600080fd5b50610768611e24565b005b34801561077657600080fd5b50610791600480360381019061078c91906132d9565b611ec5565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613106565b611f4b565b005b3480156107c857600080fd5b506107e360048036038101906107de91906132d9565b611fad565b6040516107f09190613922565b60405180910390f35b34801561080557600080fd5b5061080e611fe7565b60405161081b9190613922565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613073565b612079565b6040516108589190613907565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613046565b6120ed565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613046565b6121e5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e575061098d826122bc565b5b9050919050565b600880546109a290613ec8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce90613ec8565b8015610a1b5780601f106109f057610100808354040283529160200191610a1b565b820191906000526020600020905b8154815290600101906020018083116109fe57829003601f168201915b505050505081565b606060008054610a3290613ec8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90613ec8565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610b0982612326565b610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90613b44565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8e826114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613ba4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e612392565b73ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c81610c47612392565b612079565b5b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390613a84565b60405180910390fd5b610c96838361239a565b505050565b610ca3612392565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b64565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600047905090565b6000601060009054906101000a900460ff1615610e26576000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610db0919061387e565b60206040518083038186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e009190613306565b9050600f548110610e145760019150610e20565b610e1d336113a2565b91505b50610e2b565b600190505b80610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290613a04565b60405180910390fd5b6000600d5434610e7b9190613f74565b14610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613984565b60405180910390fd5b6000600d5434610ecb9190613dad565b90506001811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613ae4565b60405180910390fd5b6002811115610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613b04565b60405180910390fd5b6000610f61600b612453565b82610f6c9190613d57565b9050600c54811115610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613be4565b60405180910390fd5b600082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110009190613d57565b90506002811115611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613a64565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110919190613d57565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b83811015611115576110e9600b612461565b60006110f5600b612453565b90506111013382612477565b50808061110d90613f2b565b9150506110d7565b5050505050565b6000611128600b612453565b905090565b611135612392565b73ffffffffffffffffffffffffffffffffffffffff16611153611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613b64565b60405180910390fd5b80600890805190602001906111bf929190612e45565b5050565b6111cb612392565b73ffffffffffffffffffffffffffffffffffffffff166111e9611b2e565b73ffffffffffffffffffffffffffffffffffffffff161461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613b64565b60405180910390fd5b600e60009054906101000a900460ff161561128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613c04565b60405180910390fd5b80600990805190602001906112a5929190612e45565b5050565b6112ba6112b4612392565b82612645565b6112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613bc4565b60405180910390fd5b611304838383612723565b505050565b611311612392565b73ffffffffffffffffffffffffffffffffffffffff1661132f611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613b64565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600060011515601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515149050919050565b61141a83838360405180602001604052806000815250611f4b565b505050565b600f5481565b6009805461143290613ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461145e90613ec8565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613ac4565b60405180910390fd5b80915050919050565b61156d612392565b73ffffffffffffffffffffffffffffffffffffffff1661158b611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613b64565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390613aa4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ab612392565b73ffffffffffffffffffffffffffffffffffffffff166116c9611b2e565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690613b64565b60405180910390fd5b611729600061297f565b565b611733612392565b73ffffffffffffffffffffffffffffffffffffffff16611751611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90613b64565b60405180910390fd5b6000479050600081116117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613a44565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611835573d6000803e3d6000fd5b5050565b611841612392565b73ffffffffffffffffffffffffffffffffffffffff1661185f611b2e565b73ffffffffffffffffffffffffffffffffffffffff16146118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90613b64565b60405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600061191d836115eb565b9050600081141561197a57600067ffffffffffffffff81111561194357611942614061565b5b6040519080825280602002602001820160405280156119715781602001602082028036833780820191505090505b50915050611a69565b60008167ffffffffffffffff81111561199657611995614061565b5b6040519080825280602002602001820160405280156119c45781602001602082028036833780820191505090505b50905060006119d161111c565b9050600080600190505b828111611a60578673ffffffffffffffffffffffffffffffffffffffff16611a02826114b3565b73ffffffffffffffffffffffffffffffffffffffff161415611a4d5780848381518110611a3257611a31614032565b5b6020026020010181815250508180611a4990613f2b565b9250505b8080611a5890613f2b565b9150506119db565b83955050505050505b919050565b611a76612392565b73ffffffffffffffffffffffffffffffffffffffff16611a94611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b64565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b6790613ec8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9390613ec8565b8015611be05780601f10611bb557610100808354040283529160200191611be0565b820191906000526020600020905b815481529060010190602001808311611bc357829003601f168201915b5050505050905090565b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611c48919061387e565b60206040518083038186803b158015611c6057600080fd5b505afa158015611c74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c989190613306565b905080915050919050565b611cab612392565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906139e4565b60405180910390fd5b8060056000611d26612392565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd3612392565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e189190613907565b60405180910390a35050565b611e2c612392565b73ffffffffffffffffffffffffffffffffffffffff16611e4a611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613b64565b60405180910390fd5b611eaa600b612461565b6000611eb6600b612453565b9050611ec23382612477565b50565b611ecd612392565b73ffffffffffffffffffffffffffffffffffffffff16611eeb611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890613b64565b60405180910390fd5b80600d8190555050565b611f5c611f56612392565b83612645565b611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613bc4565b60405180910390fd5b611fa784848484612a45565b50505050565b60606000611fba83612aa1565b9050600981604051602001611fd092919061384f565b604051602081830303815290604052915050919050565b606060088054611ff690613ec8565b80601f016020809104026020016040519081016040528092919081815260200182805461202290613ec8565b801561206f5780601f106120445761010080835404028352916020019161206f565b820191906000526020600020905b81548152906001019060200180831161205257829003601f168201915b5050505050905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120da57600190506120e7565b6120e48383612c02565b90505b92915050565b6120f5612392565b73ffffffffffffffffffffffffffffffffffffffff16612113611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613b64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090613964565b60405180910390fd5b6121e28161297f565b50565b6121ed612392565b73ffffffffffffffffffffffffffffffffffffffff1661220b611b2e565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890613b64565b60405180910390fd5b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661240d836114b3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124de90613b24565b60405180910390fd5b6124f081612326565b15612530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612527906139a4565b60405180910390fd5b61253c60008383612c96565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258c9190613d57565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061265082612326565b61268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690613a24565b60405180910390fd5b600061269a836114b3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061270957508373ffffffffffffffffffffffffffffffffffffffff166126f184610afe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061271a57506127198185612079565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612743826114b3565b73ffffffffffffffffffffffffffffffffffffffff1614612799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279090613b84565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612800906139c4565b60405180910390fd5b612814838383612c96565b61281f60008261239a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286f9190613dde565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c69190613d57565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a50848484612723565b612a5c84848484612c9b565b612a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9290613944565b60405180910390fd5b50505050565b60606000821415612ae9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bfd565b600082905060005b60008214612b1b578080612b0490613f2b565b915050600a82612b149190613dad565b9150612af1565b60008167ffffffffffffffff811115612b3757612b36614061565b5b6040519080825280601f01601f191660200182016040528015612b695781602001600182028036833780820191505090505b5090505b60008514612bf657600182612b829190613dde565b9150600a85612b919190613f74565b6030612b9d9190613d57565b60f81b818381518110612bb357612bb2614032565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bef9190613dad565b9450612b6d565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b6000612cbc8473ffffffffffffffffffffffffffffffffffffffff16612e32565b15612e25578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ce5612392565b8786866040518563ffffffff1660e01b8152600401612d079493929190613899565b602060405180830381600087803b158015612d2157600080fd5b505af1925050508015612d5257506040513d601f19601f82011682018060405250810190612d4f9190613263565b60015b612dd5573d8060008114612d82576040519150601f19603f3d011682016040523d82523d6000602084013e612d87565b606091505b50600081511415612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490613944565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e2a565b600190505b949350505050565b600080823b905060008111915050919050565b828054612e5190613ec8565b90600052602060002090601f016020900481019282612e735760008555612eba565b82601f10612e8c57805160ff1916838001178555612eba565b82800160010185558215612eba579182015b82811115612eb9578251825591602001919060010190612e9e565b5b509050612ec79190612ecb565b5090565b5b80821115612ee4576000816000905550600101612ecc565b5090565b6000612efb612ef684613c64565b613c3f565b905082815260208101848484011115612f1757612f16614095565b5b612f22848285613e86565b509392505050565b6000612f3d612f3884613c95565b613c3f565b905082815260208101848484011115612f5957612f58614095565b5b612f64848285613e86565b509392505050565b600081359050612f7b81614713565b92915050565b600081359050612f908161472a565b92915050565b600081359050612fa581614741565b92915050565b600081519050612fba81614741565b92915050565b600082601f830112612fd557612fd4614090565b5b8135612fe5848260208601612ee8565b91505092915050565b600082601f83011261300357613002614090565b5b8135613013848260208601612f2a565b91505092915050565b60008135905061302b81614758565b92915050565b60008151905061304081614758565b92915050565b60006020828403121561305c5761305b61409f565b5b600061306a84828501612f6c565b91505092915050565b6000806040838503121561308a5761308961409f565b5b600061309885828601612f6c565b92505060206130a985828601612f6c565b9150509250929050565b6000806000606084860312156130cc576130cb61409f565b5b60006130da86828701612f6c565b93505060206130eb86828701612f6c565b92505060406130fc8682870161301c565b9150509250925092565b600080600080608085870312156131205761311f61409f565b5b600061312e87828801612f6c565b945050602061313f87828801612f6c565b93505060406131508782880161301c565b925050606085013567ffffffffffffffff8111156131715761317061409a565b5b61317d87828801612fc0565b91505092959194509250565b600080604083850312156131a05761319f61409f565b5b60006131ae85828601612f6c565b92505060206131bf85828601612f81565b9150509250929050565b600080604083850312156131e0576131df61409f565b5b60006131ee85828601612f6c565b92505060206131ff8582860161301c565b9150509250929050565b60006020828403121561321f5761321e61409f565b5b600061322d84828501612f81565b91505092915050565b60006020828403121561324c5761324b61409f565b5b600061325a84828501612f96565b91505092915050565b6000602082840312156132795761327861409f565b5b600061328784828501612fab565b91505092915050565b6000602082840312156132a6576132a561409f565b5b600082013567ffffffffffffffff8111156132c4576132c361409a565b5b6132d084828501612fee565b91505092915050565b6000602082840312156132ef576132ee61409f565b5b60006132fd8482850161301c565b91505092915050565b60006020828403121561331c5761331b61409f565b5b600061332a84828501613031565b91505092915050565b600061333f8383613831565b60208301905092915050565b61335481613e12565b82525050565b600061336582613ceb565b61336f8185613d19565b935061337a83613cc6565b8060005b838110156133ab5781516133928882613333565b975061339d83613d0c565b92505060018101905061337e565b5085935050505092915050565b6133c181613e24565b82525050565b60006133d282613cf6565b6133dc8185613d2a565b93506133ec818560208601613e95565b6133f5816140a4565b840191505092915050565b600061340b82613d01565b6134158185613d3b565b9350613425818560208601613e95565b61342e816140a4565b840191505092915050565b600061344482613d01565b61344e8185613d4c565b935061345e818560208601613e95565b80840191505092915050565b6000815461347781613ec8565b6134818186613d4c565b9450600182166000811461349c57600181146134ad576134e0565b60ff198316865281860193506134e0565b6134b685613cd6565b60005b838110156134d8578154818901526001820191506020810190506134b9565b838801955050505b50505092915050565b60006134f6603283613d3b565b9150613501826140b5565b604082019050919050565b6000613519602683613d3b565b915061352482614104565b604082019050919050565b600061353c603583613d3b565b915061354782614153565b604082019050919050565b600061355f601c83613d3b565b915061356a826141a2565b602082019050919050565b6000613582602483613d3b565b915061358d826141cb565b604082019050919050565b60006135a5601983613d3b565b91506135b08261421a565b602082019050919050565b60006135c8604883613d3b565b91506135d382614243565b606082019050919050565b60006135eb602c83613d3b565b91506135f6826142b8565b604082019050919050565b600061360e601e83613d3b565b915061361982614307565b602082019050919050565b6000613631602583613d3b565b915061363c82614330565b604082019050919050565b6000613654603883613d3b565b915061365f8261437f565b604082019050919050565b6000613677602a83613d3b565b9150613682826143ce565b604082019050919050565b600061369a602983613d3b565b91506136a58261441d565b604082019050919050565b60006136bd602583613d3b565b91506136c88261446c565b604082019050919050565b60006136e0602b83613d3b565b91506136eb826144bb565b604082019050919050565b6000613703602083613d3b565b915061370e8261450a565b602082019050919050565b6000613726602c83613d3b565b915061373182614533565b604082019050919050565b6000613749600583613d4c565b915061375482614582565b600582019050919050565b600061376c602083613d3b565b9150613777826145ab565b602082019050919050565b600061378f602983613d3b565b915061379a826145d4565b604082019050919050565b60006137b2602183613d3b565b91506137bd82614623565b604082019050919050565b60006137d5603183613d3b565b91506137e082614672565b604082019050919050565b60006137f8601b83613d3b565b9150613803826146c1565b602082019050919050565b600061381b601f83613d3b565b9150613826826146ea565b602082019050919050565b61383a81613e7c565b82525050565b61384981613e7c565b82525050565b600061385b828561346a565b91506138678284613439565b91506138728261373c565b91508190509392505050565b6000602082019050613893600083018461334b565b92915050565b60006080820190506138ae600083018761334b565b6138bb602083018661334b565b6138c86040830185613840565b81810360608301526138da81846133c7565b905095945050505050565b600060208201905081810360008301526138ff818461335a565b905092915050565b600060208201905061391c60008301846133b8565b92915050565b6000602082019050818103600083015261393c8184613400565b905092915050565b6000602082019050818103600083015261395d816134e9565b9050919050565b6000602082019050818103600083015261397d8161350c565b9050919050565b6000602082019050818103600083015261399d8161352f565b9050919050565b600060208201905081810360008301526139bd81613552565b9050919050565b600060208201905081810360008301526139dd81613575565b9050919050565b600060208201905081810360008301526139fd81613598565b9050919050565b60006020820190508181036000830152613a1d816135bb565b9050919050565b60006020820190508181036000830152613a3d816135de565b9050919050565b60006020820190508181036000830152613a5d81613601565b9050919050565b60006020820190508181036000830152613a7d81613624565b9050919050565b60006020820190508181036000830152613a9d81613647565b9050919050565b60006020820190508181036000830152613abd8161366a565b9050919050565b60006020820190508181036000830152613add8161368d565b9050919050565b60006020820190508181036000830152613afd816136b0565b9050919050565b60006020820190508181036000830152613b1d816136d3565b9050919050565b60006020820190508181036000830152613b3d816136f6565b9050919050565b60006020820190508181036000830152613b5d81613719565b9050919050565b60006020820190508181036000830152613b7d8161375f565b9050919050565b60006020820190508181036000830152613b9d81613782565b9050919050565b60006020820190508181036000830152613bbd816137a5565b9050919050565b60006020820190508181036000830152613bdd816137c8565b9050919050565b60006020820190508181036000830152613bfd816137eb565b9050919050565b60006020820190508181036000830152613c1d8161380e565b9050919050565b6000602082019050613c396000830184613840565b92915050565b6000613c49613c5a565b9050613c558282613efa565b919050565b6000604051905090565b600067ffffffffffffffff821115613c7f57613c7e614061565b5b613c88826140a4565b9050602081019050919050565b600067ffffffffffffffff821115613cb057613caf614061565b5b613cb9826140a4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6282613e7c565b9150613d6d83613e7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613da257613da1613fa5565b5b828201905092915050565b6000613db882613e7c565b9150613dc383613e7c565b925082613dd357613dd2613fd4565b5b828204905092915050565b6000613de982613e7c565b9150613df483613e7c565b925082821015613e0757613e06613fa5565b5b828203905092915050565b6000613e1d82613e5c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613eb3578082015181840152602081019050613e98565b83811115613ec2576000848401525b50505050565b60006002820490506001821680613ee057607f821691505b60208210811415613ef457613ef3614003565b5b50919050565b613f03826140a4565b810181811067ffffffffffffffff82111715613f2257613f21614061565b5b80604052505050565b6000613f3682613e7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6957613f68613fa5565b5b600182019050919050565b6000613f7f82613e7c565b9150613f8a83613e7c565b925082613f9a57613f99613fd4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e742073686f756c642062652061206d756c60008201527f7469706c65206f66206d696e74696e6720636f73740000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44616f50756e6b733a20596f752063616e2774206d696e74206265636175736560008201527f20646f6e27742068617665206d696e696d756d202442414e4b206f722077686960208201527f74656c6973746564000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a204e6f7468696e6720746f207769746864726177210000600082015250565b7f44616f50756e6b733a2043616e6e6f74207075726368617365206d6f7265207460008201527f68616e2032000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e742073686f756c64206265206174206c6560008201527f6173742031000000000000000000000000000000000000000000000000000000602082015250565b7f44616f50756e6b733a20416d6f756e74206d757374206265206c657373206f7260008201527f20657175616c20746f2032000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44616f50756e6b733a20486172642063617020726561636865642e0000000000600082015250565b7f44616f50756e6b733a20436f6c6c656374696f6e206973206c6f636b65642e00600082015250565b61471c81613e12565b811461472757600080fd5b50565b61473381613e24565b811461473e57600080fd5b50565b61474a81613e30565b811461475557600080fd5b50565b61476181613e7c565b811461476c57600080fd5b5056fea26469706673582212207f8aa872525dc283ffb1f5aa9fdaa9af0f541126c4d76a418a835c42ef96d72864736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000002d94aa3e47d9d5024503ca8491fce9a2fb4da198000000000000000000000000000000000000000000000000000000000000000844414f50554e4b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000644414f504e4b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f697066732e696f2f697066732f6261666b726569616179353768676c756c6c3573366c7736646e357575796c786664786765377435367536766a63723777337065346d746670336500000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _openseaProxyAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _name (string): DAOPUNKS
Arg [2] : _ticker (string): DAOPNK
Arg [3] : _contract_ipfs (string): https://ipfs.io/ipfs/bafkreiaay57hglull5s6lw6dn5uuylxfdxge7t56u6vjcr7w3pe4mtfp3e
Arg [4] : _bankAddress (address): 0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000002d94aa3e47d9d5024503ca8491fce9a2fb4da198
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 44414f50554e4b53000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 44414f504e4b0000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [10] : 68747470733a2f2f697066732e696f2f697066732f6261666b72656961617935
Arg [11] : 3768676c756c6c3573366c7736646e357575796c786664786765377435367536
Arg [12] : 766a63723777337065346d746670336500000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.