ERC-721
Overview
Max Total Supply
3,333 IDREAM
Holders
874
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IDREAMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
IDreamer
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; /* . .... @88> .xH888888Hx. %8P .H8888888888888: .u . .. . : .u . . 888*"""?""*88888X .d88B :@8c .u u .888: x888 x888. .u .d88B :@8c .@88u 'f d8x. ^%88k ="8888f8888r ud8888. us888u. ~`8888~'888X`?888f` ud8888. ="8888f8888r ''888E` '> <88888X '?8 4888>'88" :888'8888. .@88 "8888" X888 888X '888> :888'8888. 4888>'88" 888E `:..:`888888> 8> 4888> ' d888 '88%" 9888 9888 X888 888X '888> d888 '88%" 4888> ' 888E `"*88 X 4888> 8888.+" 9888 9888 X888 888X '888> 8888.+" 4888> 888E .xHHhx.." ! .d888L .+ 8888L 9888 9888 X888 888X '888> 8888L .d888L .+ 888& X88888888hx. ..! ^"8888*" '8888c. .+ 9888 9888 "*88%""*88" '888!` '8888c. .+ ^"8888*" R888" ! "*888888888" "Y" "88888% "888*""888" `~ " `"` "88888% "Y" "" ^"***"` "YP' ^Y" ^Y' "YP' */ contract IDreamer is ERC721, Ownable { using Counters for Counters.Counter; using ECDSA for bytes32; Counters.Counter private _tokenIdCounter; uint256 public maxTokenSupply; uint256 public constant MAX_MINTS_PER_TXN = 8; uint256 public maxPresaleMintsPerWallet = 4; uint256 public maxReserveMintsPerWallet = 10; uint256 public mintPrice = 0.08 ether; uint256 public reserveMintPrice = 0.12 ether; uint256 public evolvePrice = 0.015 ether; bool public presaleMintingIsActive = false; bool public mintingIsActive = false; bool public reserveMintingIsActive = false; bool public freeMintingIsActive = false; bool public evolutionIsActive = false; bool public isLocked = false; string public baseURI; string public provenance; // Used to validate authorized mint addresses address public signerAddress = 0xB44b7e7988A225F8C479cB08a63C04e0039B53Ff; address[5] private _shareholders; uint[5] private _shares; mapping (address => uint256) public presaleMints; mapping (address => uint256) public reserveMints; mapping (address => bool) public freeMints; event ReserveMinted(uint256 tokenId, string id); event Evolved(uint256 tokenId, string id); event PaymentReleased(address to, uint256 amount); constructor(string memory name, string memory symbol, uint256 maxSupply) ERC721(name, symbol) { maxTokenSupply = maxSupply; _shareholders[0] = 0xFb728a85e05b74EA63243E8108080aA9bbc595E8; // Glassface _shareholders[1] = 0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3; // Treasure-Seeker _shareholders[2] = 0x7f73422854dD9727858bE39E86C1AD8B6bCA89d4; // Wolfbear _shareholders[3] = 0xaf6c9fA6a10DCcBCC636F15E365c8A0aD7fcaB99; // Dedz _shareholders[4] = 0x93a0AA2CEd962A4BBBC8FA37b0b8d8885c595417; // Gowens _shares[0] = 4850; _shares[1] = 2500; _shares[2] = 2000; _shares[3] = 500; _shares[4] = 150; } function setMaxTokenSupply(uint256 maxSupply) external onlyOwner { require(!isLocked, "Locked"); maxTokenSupply = maxSupply; } function setMaxMintsPerWallet(uint256 newPresaleLimit, uint256 newReserveLimit) external onlyOwner { maxPresaleMintsPerWallet = newPresaleLimit; maxReserveMintsPerWallet = newReserveLimit; } function setPrices(uint256 newPrice, uint256 newReservePrice, uint256 newEvolvePrice) external onlyOwner { mintPrice = newPrice; reserveMintPrice = newReservePrice; evolvePrice = newEvolvePrice; } function setMintingStates(bool newMintingIsActive, bool newPresaleMintingIsActive, bool newReserveMintingIsActive, bool newFreeMintingIsActive) external onlyOwner { mintingIsActive = newMintingIsActive; presaleMintingIsActive = newPresaleMintingIsActive; reserveMintingIsActive = newReserveMintingIsActive; freeMintingIsActive = newFreeMintingIsActive; } function setSignerAddress(address newSignerAddress) external onlyOwner { signerAddress = newSignerAddress; } function withdrawForGiveaway(uint256 amount, address payable to) external onlyOwner { Address.sendValue(to, amount); emit PaymentReleased(to, amount); } function withdraw(uint256 amount) external onlyOwner { require(address(this).balance >= amount, "Insufficient balance"); uint256 totalShares = 10000; for (uint256 i = 0; i < 5; i++) { uint256 payment = amount * _shares[i] / totalShares; Address.sendValue(payable(_shareholders[i]), payment); emit PaymentReleased(_shareholders[i], payment); } } function hashMintApproval(address mintAddress, uint256 mintAllowance) public pure returns (bytes32) { return keccak256(abi.encode( mintAddress, mintAllowance )); } /* * Mint NFTs for giveaways, devs, etc. */ function ownerMint(uint256 reservedAmount, address mintAddress) external onlyOwner { _mintMultiple(reservedAmount, mintAddress); } /* * Pause evolution if active, make active if paused. */ function flipEvolutionState() external onlyOwner { evolutionIsActive = !evolutionIsActive; } /* * Lock provenance, supply and base URI. */ function lockProvenance() external onlyOwner { isLocked = true; } function totalSupply() external view returns (uint256) { return _tokenIdCounter.current(); } function reserveMint(string memory id) external payable { require(reserveMintingIsActive, "Reserve minting not live"); require(_tokenIdCounter.current() < maxTokenSupply, "Exceeds max supply"); require(reserveMints[msg.sender] < maxReserveMintsPerWallet, "Exceeds max per wallet"); require(reserveMintPrice <= msg.value, "Incorrect ether value"); reserveMints[msg.sender] += 1; _tokenIdCounter.increment(); _safeMint(msg.sender, _tokenIdCounter.current()); emit ReserveMinted(_tokenIdCounter.current(), id); } function publicMint(uint256 numTokens) external payable { require(mintingIsActive, "Sale not live"); require(numTokens <= MAX_MINTS_PER_TXN, "Exceeds max per txn"); require(mintPrice * numTokens <= msg.value, "Incorrect ether value"); _mintMultiple(numTokens, msg.sender); } function presaleMint(uint256 numTokens) external payable { require(presaleMintingIsActive, "Presale not live"); require(presaleMints[msg.sender] + numTokens <= maxPresaleMintsPerWallet, "Exceeds max per wallet"); require(mintPrice * numTokens <= msg.value, "Incorrect ether value"); presaleMints[msg.sender] += numTokens; _mintMultiple(numTokens, msg.sender); } function freeMint(uint256 mintAllowance, bytes memory signature) external { require(freeMintingIsActive, "Free mints not live"); require(!freeMints[msg.sender], "Already claimed"); require(signerAddress == hashMintApproval(msg.sender, mintAllowance).toEthSignedMessageHash().recover(signature), "Invalid signature"); freeMints[msg.sender] = true; _mintMultiple(mintAllowance, msg.sender); } function _mintMultiple(uint256 numTokens, address mintAddress) internal { require(_tokenIdCounter.current() + numTokens <= maxTokenSupply, "Exceeds max supply"); for (uint256 i = 0; i < numTokens; i++) { _tokenIdCounter.increment(); _safeMint(mintAddress, _tokenIdCounter.current()); } } function evolve(uint256 tokenId, string memory id) external payable { require(evolutionIsActive, "Evolution not live"); require(evolvePrice <= msg.value, "Incorrect ether value"); require(_isApprovedOrOwner(msg.sender, tokenId), "Caller not owner nor approved"); emit Evolved(tokenId, id); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory newBaseURI) public onlyOwner { require(!isLocked, "Locked"); baseURI = newBaseURI; } /* * Set provenance once it's calculated. */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { require(!isLocked, "Locked"); provenance = provenanceHash; } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// 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}. 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 { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } } else if (signature.length == 64) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { let vs := mload(add(signature, 0x40)) r := mload(add(signature, 0x20)) s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } } else { revert("ECDSA: invalid signature length"); } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"id","type":"string"}],"name":"Evolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"id","type":"string"}],"name":"ReserveMinted","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":"MAX_MINTS_PER_TXN","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evolutionIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"id","type":"string"}],"name":"evolve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"evolvePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipEvolutionState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAllowance","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"mintAllowance","type":"uint256"}],"name":"hashMintApproval","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPresaleMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserveMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"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":"uint256","name":"numTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id","type":"string"}],"name":"reserveMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reserveMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveMintingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveMints","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPresaleLimit","type":"uint256"},{"internalType":"uint256","name":"newReserveLimit","type":"uint256"}],"name":"setMaxMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newMintingIsActive","type":"bool"},{"internalType":"bool","name":"newPresaleMintingIsActive","type":"bool"},{"internalType":"bool","name":"newReserveMintingIsActive","type":"bool"},{"internalType":"bool","name":"newFreeMintingIsActive","type":"bool"}],"name":"setMintingStates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"newReservePrice","type":"uint256"},{"internalType":"uint256","name":"newEvolvePrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSignerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526004600955600a805567011c37937e080000600b556701aa535d3d0c0000600c5566354a6ba7a18000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055506000600e60046101000a81548160ff0219169083151502179055506000600e60056101000a81548160ff02191690831515021790555073b44b7e7988a225f8c479cb08a63c04e0039b53ff601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013457600080fd5b506040516200658e3803806200658e83398181016040528101906200015a91906200079c565b828281600090805190602001906200017492919062000514565b5080600190805190602001906200018d92919062000514565b5050506000620001a26200050c60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508060088190555073fb728a85e05b74ea63243e8108080aa9bbc595e8601260006005811062000275576200027462000836565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc8eb8d2d1babd956136b57b0b9f49b433c019e36012600160058110620002e157620002e062000836565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737f73422854dd9727858be39e86c1ad8b6bca89d460126002600581106200034d576200034c62000836565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073af6c9fa6a10dccbcc636f15e365c8a0ad7fcab996012600360058110620003b957620003b862000836565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507393a0aa2ced962a4bbbc8fa37b0b8d8885c595417601260046005811062000425576200042462000836565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506112f260176000600581106200047f576200047e62000836565b5b01819055506109c460176001600581106200049f576200049e62000836565b5b01819055506107d06017600260058110620004bf57620004be62000836565b5b01819055506101f46017600360058110620004df57620004de62000836565b5b018190555060966017600460058110620004fe57620004fd62000836565b5b0181905550505050620008ca565b600033905090565b828054620005229062000894565b90600052602060002090601f01602090048101928262000546576000855562000592565b82601f106200056157805160ff191683800117855562000592565b8280016001018555821562000592579182015b828111156200059157825182559160200191906001019062000574565b5b509050620005a19190620005a5565b5090565b5b80821115620005c0576000816000905550600101620005a6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200062d82620005e2565b810181811067ffffffffffffffff821117156200064f576200064e620005f3565b5b80604052505050565b600062000664620005c4565b905062000672828262000622565b919050565b600067ffffffffffffffff821115620006955762000694620005f3565b5b620006a082620005e2565b9050602081019050919050565b60005b83811015620006cd578082015181840152602081019050620006b0565b83811115620006dd576000848401525b50505050565b6000620006fa620006f48462000677565b62000658565b905082815260208101848484011115620007195762000718620005dd565b5b62000726848285620006ad565b509392505050565b600082601f830112620007465762000745620005d8565b5b815162000758848260208601620006e3565b91505092915050565b6000819050919050565b620007768162000761565b81146200078257600080fd5b50565b60008151905062000796816200076b565b92915050565b600080600060608486031215620007b857620007b7620005ce565b5b600084015167ffffffffffffffff811115620007d957620007d8620005d3565b5b620007e7868287016200072e565b935050602084015167ffffffffffffffff8111156200080b576200080a620005d3565b5b62000819868287016200072e565b92505060406200082c8682870162000785565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ad57607f821691505b60208210811415620008c457620008c362000865565b5b50919050565b615cb480620008da6000396000f3fe6080604052600436106103355760003560e01c8063715018a6116101ab578063c4a9202c116100f7578063dfe93fa311610095578063ea7523ee1161006f578063ea7523ee14610bbe578063f2fde38b14610bd5578063f64245e814610bfe578063ff50188514610c2957610335565b8063dfe93fa314610b2b578063e6510b5414610b56578063e985e9c514610b8157610335565b8063c9b298f1116100d1578063c9b298f114610a80578063d52c57e014610a9c578063da5f684314610ac5578063db02ae3214610b0257610335565b8063c4a9202c14610a10578063c87b56dd14610a27578063c890e30e14610a6457610335565b8063999a01e311610164578063a88fe42d1161013e578063a88fe42d14610958578063b07ed98214610981578063b2f03be1146109aa578063b88d4fde146109e757610335565b8063999a01e3146108db578063a22cb46514610904578063a4e2d6341461092d57610335565b8063715018a6146107ef578063724ec5ee14610806578063817415c4146108315780638da5cb5b1461085a57806391cadaf61461088557806395d89b41146108b057610335565b8063407db1f4116102855780635b7633d0116102235780636817c76c116101fd5780636817c76c1461071f5780636c0360eb1461074a5780636d41d4fb1461077557806370a08231146107b257610335565b80635b7633d01461068c57806360e66d21146106b75780636352211e146106e257610335565b80634b964eee1161025f5780634b964eee146105e45780634d7313a41461060f57806350f7c2041461063857806355f804b31461066357610335565b8063407db1f41461056557806342842e0e146105905780634728b9f4146105b957610335565b80630f7309e8116102f257806323b872dd116102cc57806323b872dd146104cc5780632db11544146104f55780632e1a7d4d146105115780632f35e11f1461053a57610335565b80630f7309e81461044d578063109695231461047857806318160ddd146104a157610335565b806301ffc9a71461033a578063046dc1661461037757806306fdde03146103a0578063081812fc146103cb578063095ea7b3146104085780630d59d46314610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613c54565b610c66565b60405161036e9190613c9c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613d15565b610d48565b005b3480156103ac57600080fd5b506103b5610e08565b6040516103c29190613ddb565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613e33565b610e9a565b6040516103ff9190613e6f565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613e8a565b610f1f565b005b61044b60048036038101906104469190613fff565b611037565b005b34801561045957600080fd5b50610462611151565b60405161046f9190613ddb565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a919061405b565b6111df565b005b3480156104ad57600080fd5b506104b66112c5565b6040516104c391906140b3565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906140ce565b6112d6565b005b61050f600480360381019061050a9190613e33565b611336565b005b34801561051d57600080fd5b5061053860048036038101906105339190613e33565b611426565b005b34801561054657600080fd5b5061054f6115ee565b60405161055c91906140b3565b60405180910390f35b34801561057157600080fd5b5061057a6115f4565b6040516105879190613c9c565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906140ce565b611607565b005b3480156105c557600080fd5b506105ce611627565b6040516105db9190613c9c565b60405180910390f35b3480156105f057600080fd5b506105f961163a565b60405161060691906140b3565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061415f565b611640565b005b34801561064457600080fd5b5061064d611703565b60405161065a91906140b3565b60405180910390f35b34801561066f57600080fd5b5061068a6004803603810190610685919061405b565b611709565b005b34801561069857600080fd5b506106a16117ef565b6040516106ae9190613e6f565b60405180910390f35b3480156106c357600080fd5b506106cc611815565b6040516106d99190613c9c565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613e33565b611828565b6040516107169190613e6f565b60405180910390f35b34801561072b57600080fd5b506107346118da565b60405161074191906140b3565b60405180910390f35b34801561075657600080fd5b5061075f6118e0565b60405161076c9190613ddb565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613d15565b61196e565b6040516107a99190613c9c565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190613d15565b61198e565b6040516107e691906140b3565b60405180910390f35b3480156107fb57600080fd5b50610804611a46565b005b34801561081257600080fd5b5061081b611b83565b6040516108289190613c9c565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190614240565b611b96565b005b34801561086657600080fd5b5061086f611d8b565b60405161087c9190613e6f565b60405180910390f35b34801561089157600080fd5b5061089a611db5565b6040516108a791906140b3565b60405180910390f35b3480156108bc57600080fd5b506108c5611dbb565b6040516108d29190613ddb565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd91906142c8565b611e4d565b005b34801561091057600080fd5b5061092b6004803603810190610926919061432f565b611f37565b005b34801561093957600080fd5b506109426120b8565b60405161094f9190613c9c565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a919061436f565b6120cb565b005b34801561098d57600080fd5b506109a860048036038101906109a39190613e33565b612161565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613e8a565b612237565b6040516109de91906143db565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906143f6565b61226a565b005b348015610a1c57600080fd5b50610a256122cc565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e33565b612374565b604051610a5b9190613ddb565b60405180910390f35b610a7e6004803603810190610a79919061405b565b61241b565b005b610a9a6004803603810190610a959190613e33565b612638565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190614479565b6127c9565b005b348015610ad157600080fd5b50610aec6004803603810190610ae79190613d15565b612853565b604051610af991906140b3565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b2491906144b9565b61286b565b005b348015610b3757600080fd5b50610b406128f9565b604051610b4d91906140b3565b60405180910390f35b348015610b6257600080fd5b50610b6b6128fe565b604051610b7891906140b3565b60405180910390f35b348015610b8d57600080fd5b50610ba86004803603810190610ba391906144f9565b612904565b604051610bb59190613c9c565b60405180910390f35b348015610bca57600080fd5b50610bd3612998565b005b348015610be157600080fd5b50610bfc6004803603810190610bf79190613d15565b612a31565b005b348015610c0a57600080fd5b50610c13612bdd565b604051610c209190613c9c565b60405180910390f35b348015610c3557600080fd5b50610c506004803603810190610c4b9190613d15565b612bf0565b604051610c5d91906140b3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d415750610d4082612c08565b5b9050919050565b610d50612c72565b73ffffffffffffffffffffffffffffffffffffffff16610d6e611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614585565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610e17906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e43906145d4565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b5050505050905090565b6000610ea582612c7a565b610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614678565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2a82611828565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f929061470a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fba612c72565b73ffffffffffffffffffffffffffffffffffffffff161480610fe95750610fe881610fe3612c72565b612904565b5b611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f9061479c565b60405180910390fd5b6110328383612ce6565b505050565b600e60049054906101000a900460ff16611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90614808565b60405180910390fd5b34600d5411156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614874565b60405180910390fd5b6110d53383612d9f565b611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906148e0565b60405180910390fd5b7f22372d451ea2de3df92704d2a06b811651096456bee5e7b25fc6192ddf2d608f8282604051611145929190614900565b60405180910390a15050565b6010805461115e906145d4565b80601f016020809104026020016040519081016040528092919081815260200182805461118a906145d4565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b505050505081565b6111e7612c72565b73ffffffffffffffffffffffffffffffffffffffff16611205611d8b565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290614585565b60405180910390fd5b600e60059054906101000a900460ff16156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061497c565b60405180910390fd5b80601090805190602001906112c1929190613b45565b5050565b60006112d16007612e7d565b905090565b6112e76112e1612c72565b82612d9f565b611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614a0e565b60405180910390fd5b611331838383612e8b565b505050565b600e60019054906101000a900460ff16611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614a7a565b60405180910390fd5b60088111156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090614ae6565b60405180910390fd5b3481600b546113d89190614b35565b1115611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090614874565b60405180910390fd5b61142381336130e7565b50565b61142e612c72565b73ffffffffffffffffffffffffffffffffffffffff1661144c611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614585565b60405180910390fd5b804710156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614bdb565b60405180910390fd5b6000612710905060005b60058110156115e9576000826017836005811061150f5761150e614bfb565b5b01548561151c9190614b35565b6115269190614c59565b90506115676012836005811061153f5761153e614bfb565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613180565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566012836005811061159c5761159b614bfb565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516115cd929190614c8a565b60405180910390a15080806115e190614cb3565b9150506114ef565b505050565b60095481565b600e60049054906101000a900460ff1681565b6116228383836040518060200160405280600081525061226a565b505050565b600e60019054906101000a900460ff1681565b600a5481565b611648612c72565b73ffffffffffffffffffffffffffffffffffffffff16611666611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614585565b60405180910390fd5b6116c68183613180565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516116f7929190614d5b565b60405180910390a15050565b60085481565b611711612c72565b73ffffffffffffffffffffffffffffffffffffffff1661172f611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90614585565b60405180910390fd5b600e60059054906101000a900460ff16156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061497c565b60405180910390fd5b80600f90805190602001906117eb929190613b45565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614df6565b60405180910390fd5b80915050919050565b600b5481565b600f80546118ed906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611919906145d4565b80156119665780601f1061193b57610100808354040283529160200191611966565b820191906000526020600020905b81548152906001019060200180831161194957829003601f168201915b505050505081565b601e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614e88565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a4e612c72565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e60039054906101000a900460ff1681565b600e60039054906101000a900460ff16611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90614ef4565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990614f60565b60405180910390fd5b611c9681611c88611c833386612237565b613274565b6132a490919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614fcc565b60405180910390fd5b6001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d8782336130e7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611dca906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611df6906145d4565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b611e55612c72565b73ffffffffffffffffffffffffffffffffffffffff16611e73611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614585565b60405180910390fd5b83600e60016101000a81548160ff02191690831515021790555082600e60006101000a81548160ff02191690831515021790555081600e60026101000a81548160ff02191690831515021790555080600e60036101000a81548160ff02191690831515021790555050505050565b611f3f612c72565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490615038565b60405180910390fd5b8060056000611fba612c72565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612067612c72565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ac9190613c9c565b60405180910390a35050565b600e60059054906101000a900460ff1681565b6120d3612c72565b73ffffffffffffffffffffffffffffffffffffffff166120f1611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614585565b60405180910390fd5b82600b8190555081600c8190555080600d81905550505050565b612169612c72565b73ffffffffffffffffffffffffffffffffffffffff16612187611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614585565b60405180910390fd5b600e60059054906101000a900460ff161561222d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122249061497c565b60405180910390fd5b8060088190555050565b6000828260405160200161224c929190614c8a565b60405160208183030381529060405280519060200120905092915050565b61227b612275612c72565b83612d9f565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614a0e565b60405180910390fd5b6122c68484848461336e565b50505050565b6122d4612c72565b73ffffffffffffffffffffffffffffffffffffffff166122f2611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614585565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b606061237f82612c7a565b6123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906150ca565b60405180910390fd5b60006123c86133ca565b905060008151116123e85760405180602001604052806000815250612413565b806123f28461345c565b604051602001612403929190615126565b6040516020818303038152906040525b915050919050565b600e60029054906101000a900460ff1661246a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246190615196565b60405180910390fd5b6008546124776007612e7d565b106124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae90615202565b60405180910390fd5b600a54601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061253a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125319061526e565b60405180910390fd5b34600c54111561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690614874565b60405180910390fd5b6001601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125cf919061528e565b925050819055506125e060076135bd565b6125f3336125ee6007612e7d565b6135d3565b7fc14ede6a7752e485f39a4fc2b32d563aac812ff7ca2d0a55c7b407fdea7e994d61261e6007612e7d565b8260405161262d929190614900565b60405180910390a150565b600e60009054906101000a900460ff16612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90615330565b60405180910390fd5b60095481601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d5919061528e565b1115612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061526e565b60405180910390fd5b3481600b546127259190614b35565b1115612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614874565b60405180910390fd5b80601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b5919061528e565b925050819055506127c681336130e7565b50565b6127d1612c72565b73ffffffffffffffffffffffffffffffffffffffff166127ef611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614585565b60405180910390fd5b61284f82826130e7565b5050565b601d6020528060005260406000206000915090505481565b612873612c72565b73ffffffffffffffffffffffffffffffffffffffff16612891611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de90614585565b60405180910390fd5b8160098190555080600a819055505050565b600881565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129a0612c72565b73ffffffffffffffffffffffffffffffffffffffff166129be611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90614585565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b612a39612c72565b73ffffffffffffffffffffffffffffffffffffffff16612a57611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b14906153c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60029054906101000a900460ff1681565b601c6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d5983611828565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612daa82612c7a565b612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090615454565b60405180910390fd5b6000612df483611828565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6357508373ffffffffffffffffffffffffffffffffffffffff16612e4b84610e9a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e745750612e738185612904565b5b91505092915050565b600081600001549050919050565b8273ffffffffffffffffffffffffffffffffffffffff16612eab82611828565b73ffffffffffffffffffffffffffffffffffffffff1614612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef8906154e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615578565b60405180910390fd5b612f7c8383836135f1565b612f87600082612ce6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd79190615598565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302e919061528e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600854826130f56007612e7d565b6130ff919061528e565b1115613140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313790615202565b60405180910390fd5b60005b8281101561317b5761315560076135bd565b613168826131636007612e7d565b6135d3565b808061317390614cb3565b915050613143565b505050565b804710156131c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ba90615618565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516131e990615669565b60006040518083038185875af1925050503d8060008114613226576040519150601f19603f3d011682016040523d82523d6000602084013e61322b565b606091505b505090508061326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156f0565b60405180910390fd5b505050565b600081604051602001613287919061577d565b604051602081830303815290604052805190602001209050919050565b6000806000806041855114156132d1576020850151925060408501519150606085015160001a9050613357565b60408551141561331b576040850151602086015193507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169250601b8160ff1c01915050613356565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d906157ef565b60405180910390fd5b5b613363868285856135f6565b935050505092915050565b613379848484612e8b565b61338584848484613781565b6133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb90615881565b60405180910390fd5b50505050565b6060600f80546133d9906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054613405906145d4565b80156134525780601f1061342757610100808354040283529160200191613452565b820191906000526020600020905b81548152906001019060200180831161343557829003601f168201915b5050505050905090565b606060008214156134a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135b8565b600082905060005b600082146134d65780806134bf90614cb3565b915050600a826134cf9190614c59565b91506134ac565b60008167ffffffffffffffff8111156134f2576134f1613ed4565b5b6040519080825280601f01601f1916602001820160405280156135245781602001600182028036833780820191505090505b5090505b600085146135b15760018261353d9190615598565b9150600a8561354c91906158a1565b6030613558919061528e565b60f81b81838151811061356e5761356d614bfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135aa9190614c59565b9450613528565b8093505050505b919050565b6001816000016000828254019250508190555050565b6135ed828260405180602001604052806000815250613909565b5050565b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c111561365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590615944565b60405180910390fd5b601b8460ff1614806136735750601c8460ff16145b6136b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a9906159d6565b60405180910390fd5b6000600186868686604051600081526020016040526040516136d79493929190615a12565b6020604051602081039080840390855afa1580156136f9573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c90615aa3565b60405180910390fd5b80915050949350505050565b60006137a28473ffffffffffffffffffffffffffffffffffffffff16613964565b156138fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cb612c72565b8786866040518563ffffffff1660e01b81526004016137ed9493929190615b18565b6020604051808303816000875af192505050801561382957506040513d601f19601f820116820180604052508101906138269190615b79565b60015b6138ac573d8060008114613859576040519150601f19603f3d011682016040523d82523d6000602084013e61385e565b606091505b506000815114156138a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389b90615881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613901565b600190505b949350505050565b6139138383613977565b6139206000848484613781565b61395f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395690615881565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615bf2565b60405180910390fd5b6139f081612c7a565b15613a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2790615c5e565b60405180910390fd5b613a3c600083836135f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a8c919061528e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b51906145d4565b90600052602060002090601f016020900481019282613b735760008555613bba565b82601f10613b8c57805160ff1916838001178555613bba565b82800160010185558215613bba579182015b82811115613bb9578251825591602001919060010190613b9e565b5b509050613bc79190613bcb565b5090565b5b80821115613be4576000816000905550600101613bcc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c3181613bfc565b8114613c3c57600080fd5b50565b600081359050613c4e81613c28565b92915050565b600060208284031215613c6a57613c69613bf2565b5b6000613c7884828501613c3f565b91505092915050565b60008115159050919050565b613c9681613c81565b82525050565b6000602082019050613cb16000830184613c8d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce282613cb7565b9050919050565b613cf281613cd7565b8114613cfd57600080fd5b50565b600081359050613d0f81613ce9565b92915050565b600060208284031215613d2b57613d2a613bf2565b5b6000613d3984828501613d00565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7c578082015181840152602081019050613d61565b83811115613d8b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dad82613d42565b613db78185613d4d565b9350613dc7818560208601613d5e565b613dd081613d91565b840191505092915050565b60006020820190508181036000830152613df58184613da2565b905092915050565b6000819050919050565b613e1081613dfd565b8114613e1b57600080fd5b50565b600081359050613e2d81613e07565b92915050565b600060208284031215613e4957613e48613bf2565b5b6000613e5784828501613e1e565b91505092915050565b613e6981613cd7565b82525050565b6000602082019050613e846000830184613e60565b92915050565b60008060408385031215613ea157613ea0613bf2565b5b6000613eaf85828601613d00565b9250506020613ec085828601613e1e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f0c82613d91565b810181811067ffffffffffffffff82111715613f2b57613f2a613ed4565b5b80604052505050565b6000613f3e613be8565b9050613f4a8282613f03565b919050565b600067ffffffffffffffff821115613f6a57613f69613ed4565b5b613f7382613d91565b9050602081019050919050565b82818337600083830152505050565b6000613fa2613f9d84613f4f565b613f34565b905082815260208101848484011115613fbe57613fbd613ecf565b5b613fc9848285613f80565b509392505050565b600082601f830112613fe657613fe5613eca565b5b8135613ff6848260208601613f8f565b91505092915050565b6000806040838503121561401657614015613bf2565b5b600061402485828601613e1e565b925050602083013567ffffffffffffffff81111561404557614044613bf7565b5b61405185828601613fd1565b9150509250929050565b60006020828403121561407157614070613bf2565b5b600082013567ffffffffffffffff81111561408f5761408e613bf7565b5b61409b84828501613fd1565b91505092915050565b6140ad81613dfd565b82525050565b60006020820190506140c860008301846140a4565b92915050565b6000806000606084860312156140e7576140e6613bf2565b5b60006140f586828701613d00565b935050602061410686828701613d00565b925050604061411786828701613e1e565b9150509250925092565b600061412c82613cb7565b9050919050565b61413c81614121565b811461414757600080fd5b50565b60008135905061415981614133565b92915050565b6000806040838503121561417657614175613bf2565b5b600061418485828601613e1e565b92505060206141958582860161414a565b9150509250929050565b600067ffffffffffffffff8211156141ba576141b9613ed4565b5b6141c382613d91565b9050602081019050919050565b60006141e36141de8461419f565b613f34565b9050828152602081018484840111156141ff576141fe613ecf565b5b61420a848285613f80565b509392505050565b600082601f83011261422757614226613eca565b5b81356142378482602086016141d0565b91505092915050565b6000806040838503121561425757614256613bf2565b5b600061426585828601613e1e565b925050602083013567ffffffffffffffff81111561428657614285613bf7565b5b61429285828601614212565b9150509250929050565b6142a581613c81565b81146142b057600080fd5b50565b6000813590506142c28161429c565b92915050565b600080600080608085870312156142e2576142e1613bf2565b5b60006142f0878288016142b3565b9450506020614301878288016142b3565b9350506040614312878288016142b3565b9250506060614323878288016142b3565b91505092959194509250565b6000806040838503121561434657614345613bf2565b5b600061435485828601613d00565b9250506020614365858286016142b3565b9150509250929050565b60008060006060848603121561438857614387613bf2565b5b600061439686828701613e1e565b93505060206143a786828701613e1e565b92505060406143b886828701613e1e565b9150509250925092565b6000819050919050565b6143d5816143c2565b82525050565b60006020820190506143f060008301846143cc565b92915050565b600080600080608085870312156144105761440f613bf2565b5b600061441e87828801613d00565b945050602061442f87828801613d00565b935050604061444087828801613e1e565b925050606085013567ffffffffffffffff81111561446157614460613bf7565b5b61446d87828801614212565b91505092959194509250565b600080604083850312156144905761448f613bf2565b5b600061449e85828601613e1e565b92505060206144af85828601613d00565b9150509250929050565b600080604083850312156144d0576144cf613bf2565b5b60006144de85828601613e1e565b92505060206144ef85828601613e1e565b9150509250929050565b600080604083850312156145105761450f613bf2565b5b600061451e85828601613d00565b925050602061452f85828601613d00565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061456f602083613d4d565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145ec57607f821691505b60208210811415614600576145ff6145a5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614662602c83613d4d565b915061466d82614606565b604082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146f4602183613d4d565b91506146ff82614698565b604082019050919050565b60006020820190508181036000830152614723816146e7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614786603883613d4d565b91506147918261472a565b604082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f45766f6c7574696f6e206e6f74206c6976650000000000000000000000000000600082015250565b60006147f2601283613d4d565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b7f496e636f72726563742065746865722076616c75650000000000000000000000600082015250565b600061485e601583613d4d565b915061486982614828565b602082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b7f43616c6c6572206e6f74206f776e6572206e6f7220617070726f766564000000600082015250565b60006148ca601d83613d4d565b91506148d582614894565b602082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b600060408201905061491560008301856140a4565b81810360208301526149278184613da2565b90509392505050565b7f4c6f636b65640000000000000000000000000000000000000000000000000000600082015250565b6000614966600683613d4d565b915061497182614930565b602082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006149f8603183613d4d565b9150614a038261499c565b604082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b6000614a64600d83613d4d565b9150614a6f82614a2e565b602082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f45786365656473206d6178207065722074786e00000000000000000000000000600082015250565b6000614ad0601383613d4d565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b4082613dfd565b9150614b4b83613dfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8457614b83614b06565b5b828202905092915050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000614bc5601483613d4d565b9150614bd082614b8f565b602082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c6482613dfd565b9150614c6f83613dfd565b925082614c7f57614c7e614c2a565b5b828204905092915050565b6000604082019050614c9f6000830185613e60565b614cac60208301846140a4565b9392505050565b6000614cbe82613dfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cf157614cf0614b06565b5b600182019050919050565b6000819050919050565b6000614d21614d1c614d1784613cb7565b614cfc565b613cb7565b9050919050565b6000614d3382614d06565b9050919050565b6000614d4582614d28565b9050919050565b614d5581614d3a565b82525050565b6000604082019050614d706000830185614d4c565b614d7d60208301846140a4565b9392505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614de0602983613d4d565b9150614deb82614d84565b604082019050919050565b60006020820190508181036000830152614e0f81614dd3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e72602a83613d4d565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f46726565206d696e7473206e6f74206c69766500000000000000000000000000600082015250565b6000614ede601383613d4d565b9150614ee982614ea8565b602082019050919050565b60006020820190508181036000830152614f0d81614ed1565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000614f4a600f83613d4d565b9150614f5582614f14565b602082019050919050565b60006020820190508181036000830152614f7981614f3d565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614fb6601183613d4d565b9150614fc182614f80565b602082019050919050565b60006020820190508181036000830152614fe581614fa9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615022601983613d4d565b915061502d82614fec565b602082019050919050565b6000602082019050818103600083015261505181615015565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006150b4602f83613d4d565b91506150bf82615058565b604082019050919050565b600060208201905081810360008301526150e3816150a7565b9050919050565b600081905092915050565b600061510082613d42565b61510a81856150ea565b935061511a818560208601613d5e565b80840191505092915050565b600061513282856150f5565b915061513e82846150f5565b91508190509392505050565b7f52657365727665206d696e74696e67206e6f74206c6976650000000000000000600082015250565b6000615180601883613d4d565b915061518b8261514a565b602082019050919050565b600060208201905081810360008301526151af81615173565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006151ec601283613d4d565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000615258601683613d4d565b915061526382615222565b602082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b600061529982613dfd565b91506152a483613dfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152d9576152d8614b06565b5b828201905092915050565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b600061531a601083613d4d565b9150615325826152e4565b602082019050919050565b600060208201905081810360008301526153498161530d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ac602683613d4d565b91506153b782615350565b604082019050919050565b600060208201905081810360008301526153db8161539f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061543e602c83613d4d565b9150615449826153e2565b604082019050919050565b6000602082019050818103600083015261546d81615431565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006154d0602983613d4d565b91506154db82615474565b604082019050919050565b600060208201905081810360008301526154ff816154c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615562602483613d4d565b915061556d82615506565b604082019050919050565b6000602082019050818103600083015261559181615555565b9050919050565b60006155a382613dfd565b91506155ae83613dfd565b9250828210156155c1576155c0614b06565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615602601d83613d4d565b915061560d826155cc565b602082019050919050565b60006020820190508181036000830152615631816155f5565b9050919050565b600081905092915050565b50565b6000615653600083615638565b915061565e82615643565b600082019050919050565b600061567482615646565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006156da603a83613d4d565b91506156e58261567e565b604082019050919050565b60006020820190508181036000830152615709816156cd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615746601c836150ea565b915061575182615710565b601c82019050919050565b6000819050919050565b615777615772826143c2565b61575c565b82525050565b600061578882615739565b91506157948284615766565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006157d9601f83613d4d565b91506157e4826157a3565b602082019050919050565b60006020820190508181036000830152615808816157cc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061586b603283613d4d565b91506158768261580f565b604082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b60006158ac82613dfd565b91506158b783613dfd565b9250826158c7576158c6614c2a565b5b828206905092915050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061592e602283613d4d565b9150615939826158d2565b604082019050919050565b6000602082019050818103600083015261595d81615921565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006159c0602283613d4d565b91506159cb82615964565b604082019050919050565b600060208201905081810360008301526159ef816159b3565b9050919050565b600060ff82169050919050565b615a0c816159f6565b82525050565b6000608082019050615a2760008301876143cc565b615a346020830186615a03565b615a4160408301856143cc565b615a4e60608301846143cc565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615a8d601883613d4d565b9150615a9882615a57565b602082019050919050565b60006020820190508181036000830152615abc81615a80565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615aea82615ac3565b615af48185615ace565b9350615b04818560208601613d5e565b615b0d81613d91565b840191505092915050565b6000608082019050615b2d6000830187613e60565b615b3a6020830186613e60565b615b4760408301856140a4565b8181036060830152615b598184615adf565b905095945050505050565b600081519050615b7381613c28565b92915050565b600060208284031215615b8f57615b8e613bf2565b5b6000615b9d84828501615b64565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615bdc602083613d4d565b9150615be782615ba6565b602082019050919050565b60006020820190508181036000830152615c0b81615bcf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615c48601c83613d4d565b9150615c5382615c12565b602082019050919050565b60006020820190508181036000830152615c7781615c3b565b905091905056fea2646970667358221220fb04a3ae1faa52bbf3cf3242118a653a6f9f80a3b819960594d34ec7510a2bb064736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000869447265616d6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000649445245414d0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103355760003560e01c8063715018a6116101ab578063c4a9202c116100f7578063dfe93fa311610095578063ea7523ee1161006f578063ea7523ee14610bbe578063f2fde38b14610bd5578063f64245e814610bfe578063ff50188514610c2957610335565b8063dfe93fa314610b2b578063e6510b5414610b56578063e985e9c514610b8157610335565b8063c9b298f1116100d1578063c9b298f114610a80578063d52c57e014610a9c578063da5f684314610ac5578063db02ae3214610b0257610335565b8063c4a9202c14610a10578063c87b56dd14610a27578063c890e30e14610a6457610335565b8063999a01e311610164578063a88fe42d1161013e578063a88fe42d14610958578063b07ed98214610981578063b2f03be1146109aa578063b88d4fde146109e757610335565b8063999a01e3146108db578063a22cb46514610904578063a4e2d6341461092d57610335565b8063715018a6146107ef578063724ec5ee14610806578063817415c4146108315780638da5cb5b1461085a57806391cadaf61461088557806395d89b41146108b057610335565b8063407db1f4116102855780635b7633d0116102235780636817c76c116101fd5780636817c76c1461071f5780636c0360eb1461074a5780636d41d4fb1461077557806370a08231146107b257610335565b80635b7633d01461068c57806360e66d21146106b75780636352211e146106e257610335565b80634b964eee1161025f5780634b964eee146105e45780634d7313a41461060f57806350f7c2041461063857806355f804b31461066357610335565b8063407db1f41461056557806342842e0e146105905780634728b9f4146105b957610335565b80630f7309e8116102f257806323b872dd116102cc57806323b872dd146104cc5780632db11544146104f55780632e1a7d4d146105115780632f35e11f1461053a57610335565b80630f7309e81461044d578063109695231461047857806318160ddd146104a157610335565b806301ffc9a71461033a578063046dc1661461037757806306fdde03146103a0578063081812fc146103cb578063095ea7b3146104085780630d59d46314610431575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190613c54565b610c66565b60405161036e9190613c9c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613d15565b610d48565b005b3480156103ac57600080fd5b506103b5610e08565b6040516103c29190613ddb565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613e33565b610e9a565b6040516103ff9190613e6f565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613e8a565b610f1f565b005b61044b60048036038101906104469190613fff565b611037565b005b34801561045957600080fd5b50610462611151565b60405161046f9190613ddb565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a919061405b565b6111df565b005b3480156104ad57600080fd5b506104b66112c5565b6040516104c391906140b3565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906140ce565b6112d6565b005b61050f600480360381019061050a9190613e33565b611336565b005b34801561051d57600080fd5b5061053860048036038101906105339190613e33565b611426565b005b34801561054657600080fd5b5061054f6115ee565b60405161055c91906140b3565b60405180910390f35b34801561057157600080fd5b5061057a6115f4565b6040516105879190613c9c565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906140ce565b611607565b005b3480156105c557600080fd5b506105ce611627565b6040516105db9190613c9c565b60405180910390f35b3480156105f057600080fd5b506105f961163a565b60405161060691906140b3565b60405180910390f35b34801561061b57600080fd5b506106366004803603810190610631919061415f565b611640565b005b34801561064457600080fd5b5061064d611703565b60405161065a91906140b3565b60405180910390f35b34801561066f57600080fd5b5061068a6004803603810190610685919061405b565b611709565b005b34801561069857600080fd5b506106a16117ef565b6040516106ae9190613e6f565b60405180910390f35b3480156106c357600080fd5b506106cc611815565b6040516106d99190613c9c565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613e33565b611828565b6040516107169190613e6f565b60405180910390f35b34801561072b57600080fd5b506107346118da565b60405161074191906140b3565b60405180910390f35b34801561075657600080fd5b5061075f6118e0565b60405161076c9190613ddb565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613d15565b61196e565b6040516107a99190613c9c565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190613d15565b61198e565b6040516107e691906140b3565b60405180910390f35b3480156107fb57600080fd5b50610804611a46565b005b34801561081257600080fd5b5061081b611b83565b6040516108289190613c9c565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190614240565b611b96565b005b34801561086657600080fd5b5061086f611d8b565b60405161087c9190613e6f565b60405180910390f35b34801561089157600080fd5b5061089a611db5565b6040516108a791906140b3565b60405180910390f35b3480156108bc57600080fd5b506108c5611dbb565b6040516108d29190613ddb565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd91906142c8565b611e4d565b005b34801561091057600080fd5b5061092b6004803603810190610926919061432f565b611f37565b005b34801561093957600080fd5b506109426120b8565b60405161094f9190613c9c565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a919061436f565b6120cb565b005b34801561098d57600080fd5b506109a860048036038101906109a39190613e33565b612161565b005b3480156109b657600080fd5b506109d160048036038101906109cc9190613e8a565b612237565b6040516109de91906143db565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906143f6565b61226a565b005b348015610a1c57600080fd5b50610a256122cc565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190613e33565b612374565b604051610a5b9190613ddb565b60405180910390f35b610a7e6004803603810190610a79919061405b565b61241b565b005b610a9a6004803603810190610a959190613e33565b612638565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190614479565b6127c9565b005b348015610ad157600080fd5b50610aec6004803603810190610ae79190613d15565b612853565b604051610af991906140b3565b60405180910390f35b348015610b0e57600080fd5b50610b296004803603810190610b2491906144b9565b61286b565b005b348015610b3757600080fd5b50610b406128f9565b604051610b4d91906140b3565b60405180910390f35b348015610b6257600080fd5b50610b6b6128fe565b604051610b7891906140b3565b60405180910390f35b348015610b8d57600080fd5b50610ba86004803603810190610ba391906144f9565b612904565b604051610bb59190613c9c565b60405180910390f35b348015610bca57600080fd5b50610bd3612998565b005b348015610be157600080fd5b50610bfc6004803603810190610bf79190613d15565b612a31565b005b348015610c0a57600080fd5b50610c13612bdd565b604051610c209190613c9c565b60405180910390f35b348015610c3557600080fd5b50610c506004803603810190610c4b9190613d15565b612bf0565b604051610c5d91906140b3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d415750610d4082612c08565b5b9050919050565b610d50612c72565b73ffffffffffffffffffffffffffffffffffffffff16610d6e611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90614585565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610e17906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e43906145d4565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b5050505050905090565b6000610ea582612c7a565b610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614678565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2a82611828565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f929061470a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fba612c72565b73ffffffffffffffffffffffffffffffffffffffff161480610fe95750610fe881610fe3612c72565b612904565b5b611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f9061479c565b60405180910390fd5b6110328383612ce6565b505050565b600e60049054906101000a900460ff16611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90614808565b60405180910390fd5b34600d5411156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614874565b60405180910390fd5b6110d53383612d9f565b611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906148e0565b60405180910390fd5b7f22372d451ea2de3df92704d2a06b811651096456bee5e7b25fc6192ddf2d608f8282604051611145929190614900565b60405180910390a15050565b6010805461115e906145d4565b80601f016020809104026020016040519081016040528092919081815260200182805461118a906145d4565b80156111d75780601f106111ac576101008083540402835291602001916111d7565b820191906000526020600020905b8154815290600101906020018083116111ba57829003601f168201915b505050505081565b6111e7612c72565b73ffffffffffffffffffffffffffffffffffffffff16611205611d8b565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290614585565b60405180910390fd5b600e60059054906101000a900460ff16156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061497c565b60405180910390fd5b80601090805190602001906112c1929190613b45565b5050565b60006112d16007612e7d565b905090565b6112e76112e1612c72565b82612d9f565b611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614a0e565b60405180910390fd5b611331838383612e8b565b505050565b600e60019054906101000a900460ff16611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614a7a565b60405180910390fd5b60088111156113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090614ae6565b60405180910390fd5b3481600b546113d89190614b35565b1115611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090614874565b60405180910390fd5b61142381336130e7565b50565b61142e612c72565b73ffffffffffffffffffffffffffffffffffffffff1661144c611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990614585565b60405180910390fd5b804710156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614bdb565b60405180910390fd5b6000612710905060005b60058110156115e9576000826017836005811061150f5761150e614bfb565b5b01548561151c9190614b35565b6115269190614c59565b90506115676012836005811061153f5761153e614bfb565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613180565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566012836005811061159c5761159b614bfb565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516115cd929190614c8a565b60405180910390a15080806115e190614cb3565b9150506114ef565b505050565b60095481565b600e60049054906101000a900460ff1681565b6116228383836040518060200160405280600081525061226a565b505050565b600e60019054906101000a900460ff1681565b600a5481565b611648612c72565b73ffffffffffffffffffffffffffffffffffffffff16611666611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614585565b60405180910390fd5b6116c68183613180565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516116f7929190614d5b565b60405180910390a15050565b60085481565b611711612c72565b73ffffffffffffffffffffffffffffffffffffffff1661172f611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90614585565b60405180910390fd5b600e60059054906101000a900460ff16156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061497c565b60405180910390fd5b80600f90805190602001906117eb929190613b45565b5050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614df6565b60405180910390fd5b80915050919050565b600b5481565b600f80546118ed906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611919906145d4565b80156119665780601f1061193b57610100808354040283529160200191611966565b820191906000526020600020905b81548152906001019060200180831161194957829003601f168201915b505050505081565b601e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614e88565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a4e612c72565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600e60039054906101000a900460ff1681565b600e60039054906101000a900460ff16611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90614ef4565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990614f60565b60405180910390fd5b611c9681611c88611c833386612237565b613274565b6132a490919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614fcc565b60405180910390fd5b6001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d8782336130e7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611dca906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611df6906145d4565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b611e55612c72565b73ffffffffffffffffffffffffffffffffffffffff16611e73611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614585565b60405180910390fd5b83600e60016101000a81548160ff02191690831515021790555082600e60006101000a81548160ff02191690831515021790555081600e60026101000a81548160ff02191690831515021790555080600e60036101000a81548160ff02191690831515021790555050505050565b611f3f612c72565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490615038565b60405180910390fd5b8060056000611fba612c72565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612067612c72565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120ac9190613c9c565b60405180910390a35050565b600e60059054906101000a900460ff1681565b6120d3612c72565b73ffffffffffffffffffffffffffffffffffffffff166120f1611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e90614585565b60405180910390fd5b82600b8190555081600c8190555080600d81905550505050565b612169612c72565b73ffffffffffffffffffffffffffffffffffffffff16612187611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614585565b60405180910390fd5b600e60059054906101000a900460ff161561222d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122249061497c565b60405180910390fd5b8060088190555050565b6000828260405160200161224c929190614c8a565b60405160208183030381529060405280519060200120905092915050565b61227b612275612c72565b83612d9f565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614a0e565b60405180910390fd5b6122c68484848461336e565b50505050565b6122d4612c72565b73ffffffffffffffffffffffffffffffffffffffff166122f2611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614585565b60405180910390fd5b600e60049054906101000a900460ff1615600e60046101000a81548160ff021916908315150217905550565b606061237f82612c7a565b6123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b5906150ca565b60405180910390fd5b60006123c86133ca565b905060008151116123e85760405180602001604052806000815250612413565b806123f28461345c565b604051602001612403929190615126565b6040516020818303038152906040525b915050919050565b600e60029054906101000a900460ff1661246a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246190615196565b60405180910390fd5b6008546124776007612e7d565b106124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae90615202565b60405180910390fd5b600a54601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061253a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125319061526e565b60405180910390fd5b34600c54111561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690614874565b60405180910390fd5b6001601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125cf919061528e565b925050819055506125e060076135bd565b6125f3336125ee6007612e7d565b6135d3565b7fc14ede6a7752e485f39a4fc2b32d563aac812ff7ca2d0a55c7b407fdea7e994d61261e6007612e7d565b8260405161262d929190614900565b60405180910390a150565b600e60009054906101000a900460ff16612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90615330565b60405180910390fd5b60095481601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126d5919061528e565b1115612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d9061526e565b60405180910390fd5b3481600b546127259190614b35565b1115612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614874565b60405180910390fd5b80601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b5919061528e565b925050819055506127c681336130e7565b50565b6127d1612c72565b73ffffffffffffffffffffffffffffffffffffffff166127ef611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90614585565b60405180910390fd5b61284f82826130e7565b5050565b601d6020528060005260406000206000915090505481565b612873612c72565b73ffffffffffffffffffffffffffffffffffffffff16612891611d8b565b73ffffffffffffffffffffffffffffffffffffffff16146128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de90614585565b60405180910390fd5b8160098190555080600a819055505050565b600881565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129a0612c72565b73ffffffffffffffffffffffffffffffffffffffff166129be611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0b90614585565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b612a39612c72565b73ffffffffffffffffffffffffffffffffffffffff16612a57611d8b565b73ffffffffffffffffffffffffffffffffffffffff1614612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614585565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b14906153c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60029054906101000a900460ff1681565b601c6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d5983611828565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612daa82612c7a565b612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090615454565b60405180910390fd5b6000612df483611828565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6357508373ffffffffffffffffffffffffffffffffffffffff16612e4b84610e9a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e745750612e738185612904565b5b91505092915050565b600081600001549050919050565b8273ffffffffffffffffffffffffffffffffffffffff16612eab82611828565b73ffffffffffffffffffffffffffffffffffffffff1614612f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef8906154e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6890615578565b60405180910390fd5b612f7c8383836135f1565b612f87600082612ce6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd79190615598565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461302e919061528e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600854826130f56007612e7d565b6130ff919061528e565b1115613140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313790615202565b60405180910390fd5b60005b8281101561317b5761315560076135bd565b613168826131636007612e7d565b6135d3565b808061317390614cb3565b915050613143565b505050565b804710156131c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ba90615618565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516131e990615669565b60006040518083038185875af1925050503d8060008114613226576040519150601f19603f3d011682016040523d82523d6000602084013e61322b565b606091505b505090508061326f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613266906156f0565b60405180910390fd5b505050565b600081604051602001613287919061577d565b604051602081830303815290604052805190602001209050919050565b6000806000806041855114156132d1576020850151925060408501519150606085015160001a9050613357565b60408551141561331b576040850151602086015193507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81169250601b8160ff1c01915050613356565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334d906157ef565b60405180910390fd5b5b613363868285856135f6565b935050505092915050565b613379848484612e8b565b61338584848484613781565b6133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb90615881565b60405180910390fd5b50505050565b6060600f80546133d9906145d4565b80601f0160208091040260200160405190810160405280929190818152602001828054613405906145d4565b80156134525780601f1061342757610100808354040283529160200191613452565b820191906000526020600020905b81548152906001019060200180831161343557829003601f168201915b5050505050905090565b606060008214156134a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135b8565b600082905060005b600082146134d65780806134bf90614cb3565b915050600a826134cf9190614c59565b91506134ac565b60008167ffffffffffffffff8111156134f2576134f1613ed4565b5b6040519080825280601f01601f1916602001820160405280156135245781602001600182028036833780820191505090505b5090505b600085146135b15760018261353d9190615598565b9150600a8561354c91906158a1565b6030613558919061528e565b60f81b81838151811061356e5761356d614bfb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135aa9190614c59565b9450613528565b8093505050505b919050565b6001816000016000828254019250508190555050565b6135ed828260405180602001604052806000815250613909565b5050565b505050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c111561365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590615944565b60405180910390fd5b601b8460ff1614806136735750601c8460ff16145b6136b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a9906159d6565b60405180910390fd5b6000600186868686604051600081526020016040526040516136d79493929190615a12565b6020604051602081039080840390855afa1580156136f9573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c90615aa3565b60405180910390fd5b80915050949350505050565b60006137a28473ffffffffffffffffffffffffffffffffffffffff16613964565b156138fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cb612c72565b8786866040518563ffffffff1660e01b81526004016137ed9493929190615b18565b6020604051808303816000875af192505050801561382957506040513d601f19601f820116820180604052508101906138269190615b79565b60015b6138ac573d8060008114613859576040519150601f19603f3d011682016040523d82523d6000602084013e61385e565b606091505b506000815114156138a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389b90615881565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613901565b600190505b949350505050565b6139138383613977565b6139206000848484613781565b61395f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395690615881565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139de90615bf2565b60405180910390fd5b6139f081612c7a565b15613a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2790615c5e565b60405180910390fd5b613a3c600083836135f1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a8c919061528e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b51906145d4565b90600052602060002090601f016020900481019282613b735760008555613bba565b82601f10613b8c57805160ff1916838001178555613bba565b82800160010185558215613bba579182015b82811115613bb9578251825591602001919060010190613b9e565b5b509050613bc79190613bcb565b5090565b5b80821115613be4576000816000905550600101613bcc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c3181613bfc565b8114613c3c57600080fd5b50565b600081359050613c4e81613c28565b92915050565b600060208284031215613c6a57613c69613bf2565b5b6000613c7884828501613c3f565b91505092915050565b60008115159050919050565b613c9681613c81565b82525050565b6000602082019050613cb16000830184613c8d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ce282613cb7565b9050919050565b613cf281613cd7565b8114613cfd57600080fd5b50565b600081359050613d0f81613ce9565b92915050565b600060208284031215613d2b57613d2a613bf2565b5b6000613d3984828501613d00565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d7c578082015181840152602081019050613d61565b83811115613d8b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dad82613d42565b613db78185613d4d565b9350613dc7818560208601613d5e565b613dd081613d91565b840191505092915050565b60006020820190508181036000830152613df58184613da2565b905092915050565b6000819050919050565b613e1081613dfd565b8114613e1b57600080fd5b50565b600081359050613e2d81613e07565b92915050565b600060208284031215613e4957613e48613bf2565b5b6000613e5784828501613e1e565b91505092915050565b613e6981613cd7565b82525050565b6000602082019050613e846000830184613e60565b92915050565b60008060408385031215613ea157613ea0613bf2565b5b6000613eaf85828601613d00565b9250506020613ec085828601613e1e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f0c82613d91565b810181811067ffffffffffffffff82111715613f2b57613f2a613ed4565b5b80604052505050565b6000613f3e613be8565b9050613f4a8282613f03565b919050565b600067ffffffffffffffff821115613f6a57613f69613ed4565b5b613f7382613d91565b9050602081019050919050565b82818337600083830152505050565b6000613fa2613f9d84613f4f565b613f34565b905082815260208101848484011115613fbe57613fbd613ecf565b5b613fc9848285613f80565b509392505050565b600082601f830112613fe657613fe5613eca565b5b8135613ff6848260208601613f8f565b91505092915050565b6000806040838503121561401657614015613bf2565b5b600061402485828601613e1e565b925050602083013567ffffffffffffffff81111561404557614044613bf7565b5b61405185828601613fd1565b9150509250929050565b60006020828403121561407157614070613bf2565b5b600082013567ffffffffffffffff81111561408f5761408e613bf7565b5b61409b84828501613fd1565b91505092915050565b6140ad81613dfd565b82525050565b60006020820190506140c860008301846140a4565b92915050565b6000806000606084860312156140e7576140e6613bf2565b5b60006140f586828701613d00565b935050602061410686828701613d00565b925050604061411786828701613e1e565b9150509250925092565b600061412c82613cb7565b9050919050565b61413c81614121565b811461414757600080fd5b50565b60008135905061415981614133565b92915050565b6000806040838503121561417657614175613bf2565b5b600061418485828601613e1e565b92505060206141958582860161414a565b9150509250929050565b600067ffffffffffffffff8211156141ba576141b9613ed4565b5b6141c382613d91565b9050602081019050919050565b60006141e36141de8461419f565b613f34565b9050828152602081018484840111156141ff576141fe613ecf565b5b61420a848285613f80565b509392505050565b600082601f83011261422757614226613eca565b5b81356142378482602086016141d0565b91505092915050565b6000806040838503121561425757614256613bf2565b5b600061426585828601613e1e565b925050602083013567ffffffffffffffff81111561428657614285613bf7565b5b61429285828601614212565b9150509250929050565b6142a581613c81565b81146142b057600080fd5b50565b6000813590506142c28161429c565b92915050565b600080600080608085870312156142e2576142e1613bf2565b5b60006142f0878288016142b3565b9450506020614301878288016142b3565b9350506040614312878288016142b3565b9250506060614323878288016142b3565b91505092959194509250565b6000806040838503121561434657614345613bf2565b5b600061435485828601613d00565b9250506020614365858286016142b3565b9150509250929050565b60008060006060848603121561438857614387613bf2565b5b600061439686828701613e1e565b93505060206143a786828701613e1e565b92505060406143b886828701613e1e565b9150509250925092565b6000819050919050565b6143d5816143c2565b82525050565b60006020820190506143f060008301846143cc565b92915050565b600080600080608085870312156144105761440f613bf2565b5b600061441e87828801613d00565b945050602061442f87828801613d00565b935050604061444087828801613e1e565b925050606085013567ffffffffffffffff81111561446157614460613bf7565b5b61446d87828801614212565b91505092959194509250565b600080604083850312156144905761448f613bf2565b5b600061449e85828601613e1e565b92505060206144af85828601613d00565b9150509250929050565b600080604083850312156144d0576144cf613bf2565b5b60006144de85828601613e1e565b92505060206144ef85828601613e1e565b9150509250929050565b600080604083850312156145105761450f613bf2565b5b600061451e85828601613d00565b925050602061452f85828601613d00565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061456f602083613d4d565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145ec57607f821691505b60208210811415614600576145ff6145a5565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614662602c83613d4d565b915061466d82614606565b604082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146f4602183613d4d565b91506146ff82614698565b604082019050919050565b60006020820190508181036000830152614723816146e7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614786603883613d4d565b91506147918261472a565b604082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b7f45766f6c7574696f6e206e6f74206c6976650000000000000000000000000000600082015250565b60006147f2601283613d4d565b91506147fd826147bc565b602082019050919050565b60006020820190508181036000830152614821816147e5565b9050919050565b7f496e636f72726563742065746865722076616c75650000000000000000000000600082015250565b600061485e601583613d4d565b915061486982614828565b602082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b7f43616c6c6572206e6f74206f776e6572206e6f7220617070726f766564000000600082015250565b60006148ca601d83613d4d565b91506148d582614894565b602082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b600060408201905061491560008301856140a4565b81810360208301526149278184613da2565b90509392505050565b7f4c6f636b65640000000000000000000000000000000000000000000000000000600082015250565b6000614966600683613d4d565b915061497182614930565b602082019050919050565b6000602082019050818103600083015261499581614959565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006149f8603183613d4d565b9150614a038261499c565b604082019050919050565b60006020820190508181036000830152614a27816149eb565b9050919050565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b6000614a64600d83613d4d565b9150614a6f82614a2e565b602082019050919050565b60006020820190508181036000830152614a9381614a57565b9050919050565b7f45786365656473206d6178207065722074786e00000000000000000000000000600082015250565b6000614ad0601383613d4d565b9150614adb82614a9a565b602082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b4082613dfd565b9150614b4b83613dfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8457614b83614b06565b5b828202905092915050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000614bc5601483613d4d565b9150614bd082614b8f565b602082019050919050565b60006020820190508181036000830152614bf481614bb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c6482613dfd565b9150614c6f83613dfd565b925082614c7f57614c7e614c2a565b5b828204905092915050565b6000604082019050614c9f6000830185613e60565b614cac60208301846140a4565b9392505050565b6000614cbe82613dfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cf157614cf0614b06565b5b600182019050919050565b6000819050919050565b6000614d21614d1c614d1784613cb7565b614cfc565b613cb7565b9050919050565b6000614d3382614d06565b9050919050565b6000614d4582614d28565b9050919050565b614d5581614d3a565b82525050565b6000604082019050614d706000830185614d4c565b614d7d60208301846140a4565b9392505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614de0602983613d4d565b9150614deb82614d84565b604082019050919050565b60006020820190508181036000830152614e0f81614dd3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e72602a83613d4d565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f46726565206d696e7473206e6f74206c69766500000000000000000000000000600082015250565b6000614ede601383613d4d565b9150614ee982614ea8565b602082019050919050565b60006020820190508181036000830152614f0d81614ed1565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000614f4a600f83613d4d565b9150614f5582614f14565b602082019050919050565b60006020820190508181036000830152614f7981614f3d565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614fb6601183613d4d565b9150614fc182614f80565b602082019050919050565b60006020820190508181036000830152614fe581614fa9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615022601983613d4d565b915061502d82614fec565b602082019050919050565b6000602082019050818103600083015261505181615015565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006150b4602f83613d4d565b91506150bf82615058565b604082019050919050565b600060208201905081810360008301526150e3816150a7565b9050919050565b600081905092915050565b600061510082613d42565b61510a81856150ea565b935061511a818560208601613d5e565b80840191505092915050565b600061513282856150f5565b915061513e82846150f5565b91508190509392505050565b7f52657365727665206d696e74696e67206e6f74206c6976650000000000000000600082015250565b6000615180601883613d4d565b915061518b8261514a565b602082019050919050565b600060208201905081810360008301526151af81615173565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006151ec601283613d4d565b91506151f7826151b6565b602082019050919050565b6000602082019050818103600083015261521b816151df565b9050919050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000615258601683613d4d565b915061526382615222565b602082019050919050565b600060208201905081810360008301526152878161524b565b9050919050565b600061529982613dfd565b91506152a483613dfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152d9576152d8614b06565b5b828201905092915050565b7f50726573616c65206e6f74206c69766500000000000000000000000000000000600082015250565b600061531a601083613d4d565b9150615325826152e4565b602082019050919050565b600060208201905081810360008301526153498161530d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153ac602683613d4d565b91506153b782615350565b604082019050919050565b600060208201905081810360008301526153db8161539f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061543e602c83613d4d565b9150615449826153e2565b604082019050919050565b6000602082019050818103600083015261546d81615431565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006154d0602983613d4d565b91506154db82615474565b604082019050919050565b600060208201905081810360008301526154ff816154c3565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615562602483613d4d565b915061556d82615506565b604082019050919050565b6000602082019050818103600083015261559181615555565b9050919050565b60006155a382613dfd565b91506155ae83613dfd565b9250828210156155c1576155c0614b06565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615602601d83613d4d565b915061560d826155cc565b602082019050919050565b60006020820190508181036000830152615631816155f5565b9050919050565b600081905092915050565b50565b6000615653600083615638565b915061565e82615643565b600082019050919050565b600061567482615646565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006156da603a83613d4d565b91506156e58261567e565b604082019050919050565b60006020820190508181036000830152615709816156cd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615746601c836150ea565b915061575182615710565b601c82019050919050565b6000819050919050565b615777615772826143c2565b61575c565b82525050565b600061578882615739565b91506157948284615766565b60208201915081905092915050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006157d9601f83613d4d565b91506157e4826157a3565b602082019050919050565b60006020820190508181036000830152615808816157cc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061586b603283613d4d565b91506158768261580f565b604082019050919050565b6000602082019050818103600083015261589a8161585e565b9050919050565b60006158ac82613dfd565b91506158b783613dfd565b9250826158c7576158c6614c2a565b5b828206905092915050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061592e602283613d4d565b9150615939826158d2565b604082019050919050565b6000602082019050818103600083015261595d81615921565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006159c0602283613d4d565b91506159cb82615964565b604082019050919050565b600060208201905081810360008301526159ef816159b3565b9050919050565b600060ff82169050919050565b615a0c816159f6565b82525050565b6000608082019050615a2760008301876143cc565b615a346020830186615a03565b615a4160408301856143cc565b615a4e60608301846143cc565b95945050505050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615a8d601883613d4d565b9150615a9882615a57565b602082019050919050565b60006020820190508181036000830152615abc81615a80565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615aea82615ac3565b615af48185615ace565b9350615b04818560208601613d5e565b615b0d81613d91565b840191505092915050565b6000608082019050615b2d6000830187613e60565b615b3a6020830186613e60565b615b4760408301856140a4565b8181036060830152615b598184615adf565b905095945050505050565b600081519050615b7381613c28565b92915050565b600060208284031215615b8f57615b8e613bf2565b5b6000615b9d84828501615b64565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615bdc602083613d4d565b9150615be782615ba6565b602082019050919050565b60006020820190508181036000830152615c0b81615bcf565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615c48601c83613d4d565b9150615c5382615c12565b602082019050919050565b60006020820190508181036000830152615c7781615c3b565b905091905056fea2646970667358221220fb04a3ae1faa52bbf3cf3242118a653a6f9f80a3b819960594d34ec7510a2bb064736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000000869447265616d6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000649445245414d0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): iDreamer
Arg [1] : symbol (string): IDREAM
Arg [2] : maxSupply (uint256): 3333
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 69447265616d6572000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 49445245414d0000000000000000000000000000000000000000000000000000
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.