ERC-721
Overview
Max Total Supply
364 CHIBIDBS
Holders
71
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CHIBIDBSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChibiDB
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // chibidbs.com pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721Accesslist.sol"; /* * @title ChibiDBs * ChibiDBs - a contract for the ChibiDBs @@%%%%%%%%%%%%%%%%%%%%%@@ @@.... .@@ @@** @@@@@@@@ * @@ @@.. @@ @@.. .@@ @@@@*@@ @@.. .@@ @@ @@ @@.. .@@ @@. @@@ @@... ..@@ ..@....@ */ contract ChibiDB is ERC721Accesslist { // set the max supply ever - although we may lock this to a lower number this sets a total upper bound uint256 constant maxEverSupply = 6969; uint256 public maxSupply = 1000; // current release limit - can change to allow second mint, or to allow accesslist limits bool public changeSupplyLocked = false; // fix the max supply for good bool public publicSaleActive = false; //public sale active uint256 public basePrice = 40000000000000000; //0.040 ETH uint256 public accesslistPrice = 40000000000000000; //0.040 ETH uint public maxTokenPurchase = 10; // what's the max someone can buy uint public maxAccesslistPurchase = 2; // what's the max someone on the access list can buy address constant withdrawAddress = 0xEF8087375c2Cc1DCdF7B753802117fF9Dc935a57; // set provenance string public PROVENANCE; // url data for the meta data string public tokenURIPrefix = ""; constructor() ERC721Accesslist("ChibiDBs", "CHIBIDBS") { } // allow transfer to the owner or a preconfigured address function withdraw() external { require(owner() == _msgSender() || withdrawAddress == _msgSender() , "Ownable: caller is not the owner"); uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } // token meta data url functions function baseTokenURI() override public view returns (string memory) { return tokenURIPrefix; } function updateTokenURIPrefix(string memory newPrefix) external onlyOwner { tokenURIPrefix = newPrefix; } // get and set the public sale state function setPublicSale(bool _setSaleState) public onlyOwner{ publicSaleActive = _setSaleState; } // allow us to slowly release up to the max ever supply function setMaxSupply(uint _maxSupply) public onlyOwner{ if (_maxSupply <= maxEverSupply && !changeSupplyLocked) maxSupply = _maxSupply; } function lockSupply() virtual public onlyOwner{ changeSupplyLocked = true; } function setProvenance(string memory provenance) public onlyOwner { PROVENANCE = provenance; } // set a new price for the main mint function updatePrice(uint _newPrice) public onlyOwner{ basePrice = _newPrice; } // set a new price for the access list mint function updateAccesslistPrice(uint newPrice) public onlyOwner{ accesslistPrice = newPrice; } // update the max number that can be minted in a single transaction in a public mint function updateMaxTokenPurchase(uint _maxTokenPurchase) public onlyOwner{ maxTokenPurchase = _maxTokenPurchase; } // update the total number that can be minted via an accesslist function updateMaxAccesslistPurchase(uint _maxAccesslistPurchase) public onlyOwner{ maxAccesslistPurchase = _maxAccesslistPurchase; } // allow the owner to pre-mint or save a number of tokens function reserveTokens(uint _amount, address _receiver) public onlyOwner { uint256 newSupply = totalSupply + _amount; require(newSupply <= maxSupply, "MAX_SUPPLY_EXCEEDED"); for (uint256 i = 0; i < _amount; i++) { _mint(_receiver, totalSupply + i); } // update the total supply totalSupply = newSupply; } // mint function mint(uint256 amount) external payable { require(amount != 0, "INVALID_AMOUNT"); require(publicSaleActive, "SALE_CLOSED"); require(amount <= maxTokenPurchase, "AMOUNT_EXCEEDS_MAX_PER_CALL"); require(amount * basePrice <= msg.value, "WRONG_ETH_AMOUNT"); uint256 newSupply = totalSupply + amount; require(newSupply <= maxSupply, "MAX_SUPPLY_EXCEEDED"); for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, totalSupply + i); } // update the totaly supply totalSupply = newSupply; } function accesslistMint(uint256 amount, bytes32[] calldata proof) public payable { // string memory payload = string(abi.encodePacked(msg.sender)); require(MerkleProof.verify(proof, accesslistRoot, keccak256(abi.encodePacked(msg.sender))), "BAD_MERKLE_PROOF"); require(accesslistSaleActive, "SALE_CLOSED"); require(amount <= maxTokenPurchase, "AMOUNT_EXCEEDS_MAX_PER_CALL"); require(amount * accesslistPrice <= msg.value, "WRONG_ETH_AMOUNT"); require(accesslistMinted[msg.sender] + amount <= maxAccesslistPurchase, "EXCEEDS_ALLOWANCE"); uint256 newSupply = totalSupply + amount; require(newSupply <= maxSupply, "MAX_SUPPLY_EXCEEDED"); accesslistMinted[msg.sender] += amount; for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, totalSupply + i); } // update the totaly supply totalSupply = newSupply; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; //import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /** * @title ERC721Accesslist * ERC721Accesslist - ERC721 contract that has a Merkle based accesslist - which could also be used as a raffle */ abstract contract ERC721Accesslist is ERC721, Ownable { using SafeMath for uint256; uint256 public totalSupply; bytes32 public accesslistRoot; bool public accesslistSaleActive; mapping(address => uint) public accesslistMinted; constructor( string memory _name, string memory _symbol ) ERC721(_name, _symbol) { } function baseTokenURI() virtual public view returns (string memory); function tokenURI(uint256 _tokenId) override public view returns (string memory) { return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json")); } // get a list of tokens owned by someone function tokensOfOwner(address _owner) external view returns(uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalItems = totalSupply; uint256 resultIndex = 0; // We count on the fact that all items have IDs starting at 1 and increasing // sequentially up to the totalItems count. uint256 itemId; for (itemId = 1; itemId <= totalItems; itemId++) { if (ownerOf(itemId) == _owner) { result[resultIndex] = itemId; resultIndex++; } } return result; } } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) { return super.supportsInterface(interfaceId); } // get and set the accesslist sale state function setAccesslistSale(bool _setSaleState) public onlyOwner{ accesslistSaleActive = _setSaleState; } // set the accesslist root function setAccesslistRoot(bytes32 _accesslistRoot) external onlyOwner { accesslistRoot = _accesslistRoot; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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 Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"accesslistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accesslistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accesslistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accesslistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accesslistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeSupplyLocked","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAccesslistPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_accesslistRoot","type":"bytes32"}],"name":"setAccesslistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_setSaleState","type":"bool"}],"name":"setAccesslistSale","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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_setSaleState","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURIPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateAccesslistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAccesslistPurchase","type":"uint256"}],"name":"updateMaxAccesslistPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokenPurchase","type":"uint256"}],"name":"updateMaxTokenPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newPrefix","type":"string"}],"name":"updateTokenURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e8600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550668e1bc9bf040000600d55668e1bc9bf040000600e55600a600f5560026010556040518060200160405280600081525060129080519060200190620000879291906200022e565b503480156200009557600080fd5b506040518060400160405280600881526020017f43686962694442730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4348494249444253000000000000000000000000000000000000000000000000815250818181600090805190602001906200011c9291906200022e565b508060019080519060200190620001359291906200022e565b505050620001586200014c6200016060201b60201c565b6200016860201b60201c565b505062000343565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023c90620002de565b90600052602060002090601f016020900481019282620002605760008555620002ac565b82601f106200027b57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ab5782518255916020019190600101906200028e565b5b509050620002bb9190620002bf565b5090565b5b80821115620002da576000816000905550600101620002c0565b5090565b60006002820490506001821680620002f757607f821691505b602082108114156200030e576200030d62000314565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a0b80620003536000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063bc8893b4116100c1578063d547cfb71161007a578063d547cfb714610940578063d5abeb011461096b578063e45be46114610996578063e985e9c5146109c1578063f2fde38b146109fe578063ffe630b514610a275761027d565b8063bc8893b414610830578063c0ac99831461085b578063c7876ea414610886578063c87b56dd146108b1578063c9b20f14146108ee578063cc77a83e146109175761027d565b806395d89b411161011357806395d89b4114610743578063a0712d681461076e578063a22cb4651461078a578063a9875558146107b3578063b88d4fde146107dc578063bbb64dab146108055761027d565b8063715018a61461068457806381eaf99b1461069b5780638462151c146106b25780638d6cc56d146106ef5780638da5cb5b146107185761027d565b806323b872dd116101f357806358d81a41116101ac57806358d81a41146105645780635aca1bb61461058d5780636352211e146105b65780636373a6b1146105f35780636f8b44b01461061e57806370a08231146106475761027d565b806323b872dd1461046c57806335f067cf146104955780633ccfd60b146104be57806342842e0e146104d557806353d4c775146104fe57806357d190c9146105275761027d565b806309aa3dcf1161024557806309aa3dcf1461037b5780630a78d85a146103a65780630d191d40146103c2578063123bd23b146103ed57806318160ddd146104185780631f32b057146104435761027d565b806301ffc9a7146102825780630628e2f9146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906134fb565b610a50565b6040516102b69190613bde565b60405180910390f35b3480156102cb57600080fd5b506102d4610a62565b6040516102e19190613bde565b60405180910390f35b3480156102f657600080fd5b506102ff610a75565b60405161030c9190613c14565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061359e565b610b07565b6040516103499190613b55565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613461565b610b8c565b005b34801561038757600080fd5b50610390610ca4565b60405161039d9190613ef6565b60405180910390f35b6103c060048036038101906103bb919061360b565b610caa565b005b3480156103ce57600080fd5b506103d7610fc0565b6040516103e49190613bf9565b60405180910390f35b3480156103f957600080fd5b50610402610fc6565b60405161040f9190613ef6565b60405180910390f35b34801561042457600080fd5b5061042d610fcc565b60405161043a9190613ef6565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906134ce565b610fd2565b005b34801561047857600080fd5b50610493600480360381019061048e919061334b565b611058565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613555565b6110b8565b005b3480156104ca57600080fd5b506104d361114e565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061334b565b61126a565b005b34801561050a57600080fd5b50610525600480360381019061052091906135cb565b61128a565b005b34801561053357600080fd5b5061054e600480360381019061054991906132de565b61139f565b60405161055b9190613ef6565b60405180910390f35b34801561057057600080fd5b5061058b6004803603810190610586919061359e565b6113b7565b005b34801561059957600080fd5b506105b460048036038101906105af91906134a1565b61143d565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061359e565b6114d6565b6040516105ea9190613b55565b60405180910390f35b3480156105ff57600080fd5b50610608611588565b6040516106159190613c14565b60405180910390f35b34801561062a57600080fd5b506106456004803603810190610640919061359e565b611616565b005b34801561065357600080fd5b5061066e600480360381019061066991906132de565b6116c1565b60405161067b9190613ef6565b60405180910390f35b34801561069057600080fd5b50610699611779565b005b3480156106a757600080fd5b506106b0611801565b005b3480156106be57600080fd5b506106d960048036038101906106d491906132de565b61189a565b6040516106e69190613bbc565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061359e565b6119f3565b005b34801561072457600080fd5b5061072d611a79565b60405161073a9190613b55565b60405180910390f35b34801561074f57600080fd5b50610758611aa3565b6040516107659190613c14565b60405180910390f35b6107886004803603810190610783919061359e565b611b35565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613421565b611cf5565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061359e565b611e76565b005b3480156107e857600080fd5b5061080360048036038101906107fe919061339e565b611efc565b005b34801561081157600080fd5b5061081a611f5e565b6040516108279190613bde565b60405180910390f35b34801561083c57600080fd5b50610845611f71565b6040516108529190613bde565b60405180910390f35b34801561086757600080fd5b50610870611f84565b60405161087d9190613c14565b60405180910390f35b34801561089257600080fd5b5061089b612012565b6040516108a89190613ef6565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d3919061359e565b612018565b6040516108e59190613c14565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061359e565b612052565b005b34801561092357600080fd5b5061093e600480360381019061093991906134a1565b6120d8565b005b34801561094c57600080fd5b50610955612171565b6040516109629190613c14565b60405180910390f35b34801561097757600080fd5b50610980612203565b60405161098d9190613ef6565b60405180910390f35b3480156109a257600080fd5b506109ab612209565b6040516109b89190613ef6565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e3919061330b565b61220f565b6040516109f59190613bde565b60405180910390f35b348015610a0a57600080fd5b50610a256004803603810190610a2091906132de565b6122a3565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190613555565b61239b565b005b6000610a5b82612431565b9050919050565b600c60009054906101000a900460ff1681565b606060008054610a84906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab0906141e9565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b1282612513565b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613dd6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b97826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613e76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2761257f565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c5061257f565b61220f565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613d56565b60405180910390fd5b610c9f8383612587565b505050565b600f5481565b610d1e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085433604051602001610d039190613b0b565b60405160208183030381529060405280519060200120612640565b610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613e16565b60405180910390fd5b600960009054906101000a900460ff16610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613d16565b60405180910390fd5b600f54831115610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890613eb6565b60405180910390fd5b34600e5484610e00919061409b565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613e56565b60405180910390fd5b60105483600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8f9190614014565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613c96565b60405180910390fd5b600083600754610ee09190614014565b9050600b54811115610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613cf6565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f769190614014565b9250508190555060005b84811015610fb257610f9f3382600754610f9a9190614014565b612657565b8080610faa9061424c565b915050610f80565b508060078190555050505050565b60085481565b600e5481565b60075481565b610fda61257f565b73ffffffffffffffffffffffffffffffffffffffff16610ff8611a79565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613df6565b60405180910390fd5b8060088190555050565b61106961106361257f565b82612825565b6110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90613e96565b60405180910390fd5b6110b3838383612903565b505050565b6110c061257f565b73ffffffffffffffffffffffffffffffffffffffff166110de611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613df6565b60405180910390fd5b806012908051906020019061114a929190613087565b5050565b61115661257f565b73ffffffffffffffffffffffffffffffffffffffff16611174611a79565b73ffffffffffffffffffffffffffffffffffffffff1614806111dc575061119961257f565b73ffffffffffffffffffffffffffffffffffffffff1673ef8087375c2cc1dcdf7b753802117ff9dc935a5773ffffffffffffffffffffffffffffffffffffffff16145b61121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613df6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b5050565b61128583838360405180602001604052806000815250611efc565b505050565b61129261257f565b73ffffffffffffffffffffffffffffffffffffffff166112b0611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613df6565b60405180910390fd5b6000826007546113169190614014565b9050600b5481111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613cf6565b60405180910390fd5b60005b838110156113925761137f838260075461137a9190614014565b612657565b808061138a9061424c565b915050611360565b5080600781905550505050565b600a6020528060005260406000206000915090505481565b6113bf61257f565b73ffffffffffffffffffffffffffffffffffffffff166113dd611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613df6565b60405180910390fd5b8060108190555050565b61144561257f565b73ffffffffffffffffffffffffffffffffffffffff16611463611a79565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090613df6565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613d96565b60405180910390fd5b80915050919050565b60118054611595906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546115c1906141e9565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b505050505081565b61161e61257f565b73ffffffffffffffffffffffffffffffffffffffff1661163c611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613df6565b60405180910390fd5b611b3981111580156116b15750600c60009054906101000a900460ff16155b156116be5780600b819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613d76565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178161257f565b73ffffffffffffffffffffffffffffffffffffffff1661179f611a79565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613df6565b60405180910390fd5b6117ff6000612b5f565b565b61180961257f565b73ffffffffffffffffffffffffffffffffffffffff16611827611a79565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613df6565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b606060006118a7836116c1565b9050600081141561190457600067ffffffffffffffff8111156118cd576118cc6143a6565b5b6040519080825280602002602001820160405280156118fb5781602001602082028036833780820191505090505b509150506119ee565b60008167ffffffffffffffff8111156119205761191f6143a6565b5b60405190808252806020026020018201604052801561194e5781602001602082028036833780820191505090505b50905060006007549050600080600190505b8281116119e5578673ffffffffffffffffffffffffffffffffffffffff16611987826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614156119d257808483815181106119b7576119b6614377565b5b60200260200101818152505081806119ce9061424c565b9250505b80806119dd9061424c565b915050611960565b83955050505050505b919050565b6119fb61257f565b73ffffffffffffffffffffffffffffffffffffffff16611a19611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613df6565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ab2906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ade906141e9565b8015611b2b5780601f10611b0057610100808354040283529160200191611b2b565b820191906000526020600020905b815481529060010190602001808311611b0e57829003601f168201915b5050505050905090565b6000811415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613ed6565b60405180910390fd5b600c60019054906101000a900460ff16611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613d16565b60405180910390fd5b600f54811115611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613eb6565b60405180910390fd5b34600d5482611c1c919061409b565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613e56565b60405180910390fd5b600081600754611c6d9190614014565b9050600b54811115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613cf6565b60405180910390fd5b60005b82811015611ce957611cd63382600754611cd19190614014565b612657565b8080611ce19061424c565b915050611cb7565b50806007819055505050565b611cfd61257f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613cd6565b60405180910390fd5b8060056000611d7861257f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e2561257f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6a9190613bde565b60405180910390a35050565b611e7e61257f565b73ffffffffffffffffffffffffffffffffffffffff16611e9c611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613df6565b60405180910390fd5b80600e8190555050565b611f0d611f0761257f565b83612825565b611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613e96565b60405180910390fd5b611f5884848484612c25565b50505050565b600960009054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b60128054611f91906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fbd906141e9565b801561200a5780601f10611fdf5761010080835404028352916020019161200a565b820191906000526020600020905b815481529060010190602001808311611fed57829003601f168201915b505050505081565b600d5481565b6060612022612171565b61202b83612c81565b60405160200161203c929190613b26565b6040516020818303038152906040529050919050565b61205a61257f565b73ffffffffffffffffffffffffffffffffffffffff16612078611a79565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590613df6565b60405180910390fd5b80600f8190555050565b6120e061257f565b73ffffffffffffffffffffffffffffffffffffffff166120fe611a79565b73ffffffffffffffffffffffffffffffffffffffff1614612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90613df6565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060128054612180906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546121ac906141e9565b80156121f95780601f106121ce576101008083540402835291602001916121f9565b820191906000526020600020905b8154815290600101906020018083116121dc57829003601f168201915b5050505050905090565b600b5481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ab61257f565b73ffffffffffffffffffffffffffffffffffffffff166122c9611a79565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613df6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690613c56565b60405180910390fd5b61239881612b5f565b50565b6123a361257f565b73ffffffffffffffffffffffffffffffffffffffff166123c1611a79565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90613df6565b60405180910390fd5b806011908051906020019061242d929190613087565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061250c575061250b82612de2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125fa836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008261264d8584612e4c565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90613db6565b60405180910390fd5b6126d081612513565b15612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613c76565b60405180910390fd5b61271c60008383612ec1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276c9190614014565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061283082612513565b61286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613d36565b60405180910390fd5b600061287a836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e957508373ffffffffffffffffffffffffffffffffffffffff166128d184610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b806128fa57506128f9818561220f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612923826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297090613e36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090613cb6565b60405180910390fd5b6129f4838383612ec1565b6129ff600082612587565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f91906140f5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa69190614014565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c30848484612903565b612c3c84848484612ec6565b612c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7290613c36565b60405180910390fd5b50505050565b60606000821415612cc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ddd565b600082905060005b60008214612cfb578080612ce49061424c565b915050600a82612cf4919061406a565b9150612cd1565b60008167ffffffffffffffff811115612d1757612d166143a6565b5b6040519080825280601f01601f191660200182016040528015612d495781602001600182028036833780820191505090505b5090505b60008514612dd657600182612d6291906140f5565b9150600a85612d7191906142b9565b6030612d7d9190614014565b60f81b818381518110612d9357612d92614377565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dcf919061406a565b9450612d4d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b8451811015612eb6576000858281518110612e7357612e72614377565b5b60200260200101519050808311612e9557612e8e838261305d565b9250612ea2565b612e9f818461305d565b92505b508080612eae9061424c565b915050612e55565b508091505092915050565b505050565b6000612ee78473ffffffffffffffffffffffffffffffffffffffff16613074565b15613050578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f1061257f565b8786866040518563ffffffff1660e01b8152600401612f329493929190613b70565b602060405180830381600087803b158015612f4c57600080fd5b505af1925050508015612f7d57506040513d601f19601f82011682018060405250810190612f7a9190613528565b60015b613000573d8060008114612fad576040519150601f19603f3d011682016040523d82523d6000602084013e612fb2565b606091505b50600081511415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90613c36565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613055565b600190505b949350505050565b600082600052816020526040600020905092915050565b600080823b905060008111915050919050565b828054613093906141e9565b90600052602060002090601f0160209004810192826130b557600085556130fc565b82601f106130ce57805160ff19168380011785556130fc565b828001600101855582156130fc579182015b828111156130fb5782518255916020019190600101906130e0565b5b509050613109919061310d565b5090565b5b8082111561312657600081600090555060010161310e565b5090565b600061313d61313884613f36565b613f11565b905082815260208101848484011115613159576131586143e4565b5b6131648482856141a7565b509392505050565b600061317f61317a84613f67565b613f11565b90508281526020810184848401111561319b5761319a6143e4565b5b6131a68482856141a7565b509392505050565b6000813590506131bd81614962565b92915050565b60008083601f8401126131d9576131d86143da565b5b8235905067ffffffffffffffff8111156131f6576131f56143d5565b5b602083019150836020820283011115613212576132116143df565b5b9250929050565b60008135905061322881614979565b92915050565b60008135905061323d81614990565b92915050565b600081359050613252816149a7565b92915050565b600081519050613267816149a7565b92915050565b600082601f830112613282576132816143da565b5b813561329284826020860161312a565b91505092915050565b600082601f8301126132b0576132af6143da565b5b81356132c084826020860161316c565b91505092915050565b6000813590506132d8816149be565b92915050565b6000602082840312156132f4576132f36143ee565b5b6000613302848285016131ae565b91505092915050565b60008060408385031215613322576133216143ee565b5b6000613330858286016131ae565b9250506020613341858286016131ae565b9150509250929050565b600080600060608486031215613364576133636143ee565b5b6000613372868287016131ae565b9350506020613383868287016131ae565b9250506040613394868287016132c9565b9150509250925092565b600080600080608085870312156133b8576133b76143ee565b5b60006133c6878288016131ae565b94505060206133d7878288016131ae565b93505060406133e8878288016132c9565b925050606085013567ffffffffffffffff811115613409576134086143e9565b5b6134158782880161326d565b91505092959194509250565b60008060408385031215613438576134376143ee565b5b6000613446858286016131ae565b925050602061345785828601613219565b9150509250929050565b60008060408385031215613478576134776143ee565b5b6000613486858286016131ae565b9250506020613497858286016132c9565b9150509250929050565b6000602082840312156134b7576134b66143ee565b5b60006134c584828501613219565b91505092915050565b6000602082840312156134e4576134e36143ee565b5b60006134f28482850161322e565b91505092915050565b600060208284031215613511576135106143ee565b5b600061351f84828501613243565b91505092915050565b60006020828403121561353e5761353d6143ee565b5b600061354c84828501613258565b91505092915050565b60006020828403121561356b5761356a6143ee565b5b600082013567ffffffffffffffff811115613589576135886143e9565b5b6135958482850161329b565b91505092915050565b6000602082840312156135b4576135b36143ee565b5b60006135c2848285016132c9565b91505092915050565b600080604083850312156135e2576135e16143ee565b5b60006135f0858286016132c9565b9250506020613601858286016131ae565b9150509250929050565b600080600060408486031215613624576136236143ee565b5b6000613632868287016132c9565b935050602084013567ffffffffffffffff811115613653576136526143e9565b5b61365f868287016131c3565b92509250509250925092565b60006136778383613aed565b60208301905092915050565b61368c81614129565b82525050565b6136a361369e82614129565b614295565b82525050565b60006136b482613fa8565b6136be8185613fd6565b93506136c983613f98565b8060005b838110156136fa5781516136e1888261366b565b97506136ec83613fc9565b9250506001810190506136cd565b5085935050505092915050565b6137108161413b565b82525050565b61371f81614147565b82525050565b600061373082613fb3565b61373a8185613fe7565b935061374a8185602086016141b6565b613753816143f3565b840191505092915050565b600061376982613fbe565b6137738185613ff8565b93506137838185602086016141b6565b61378c816143f3565b840191505092915050565b60006137a282613fbe565b6137ac8185614009565b93506137bc8185602086016141b6565b80840191505092915050565b60006137d5603283613ff8565b91506137e082614411565b604082019050919050565b60006137f8602683613ff8565b915061380382614460565b604082019050919050565b600061381b601c83613ff8565b9150613826826144af565b602082019050919050565b600061383e601183613ff8565b9150613849826144d8565b602082019050919050565b6000613861602483613ff8565b915061386c82614501565b604082019050919050565b6000613884601983613ff8565b915061388f82614550565b602082019050919050565b60006138a7601383613ff8565b91506138b282614579565b602082019050919050565b60006138ca600b83613ff8565b91506138d5826145a2565b602082019050919050565b60006138ed602c83613ff8565b91506138f8826145cb565b604082019050919050565b6000613910603883613ff8565b915061391b8261461a565b604082019050919050565b6000613933602a83613ff8565b915061393e82614669565b604082019050919050565b6000613956602983613ff8565b9150613961826146b8565b604082019050919050565b6000613979602083613ff8565b915061398482614707565b602082019050919050565b600061399c602c83613ff8565b91506139a782614730565b604082019050919050565b60006139bf600583614009565b91506139ca8261477f565b600582019050919050565b60006139e2602083613ff8565b91506139ed826147a8565b602082019050919050565b6000613a05601083613ff8565b9150613a10826147d1565b602082019050919050565b6000613a28602983613ff8565b9150613a33826147fa565b604082019050919050565b6000613a4b601083613ff8565b9150613a5682614849565b602082019050919050565b6000613a6e602183613ff8565b9150613a7982614872565b604082019050919050565b6000613a91603183613ff8565b9150613a9c826148c1565b604082019050919050565b6000613ab4601b83613ff8565b9150613abf82614910565b602082019050919050565b6000613ad7600e83613ff8565b9150613ae282614939565b602082019050919050565b613af68161419d565b82525050565b613b058161419d565b82525050565b6000613b178284613692565b60148201915081905092915050565b6000613b328285613797565b9150613b3e8284613797565b9150613b49826139b2565b91508190509392505050565b6000602082019050613b6a6000830184613683565b92915050565b6000608082019050613b856000830187613683565b613b926020830186613683565b613b9f6040830185613afc565b8181036060830152613bb18184613725565b905095945050505050565b60006020820190508181036000830152613bd681846136a9565b905092915050565b6000602082019050613bf36000830184613707565b92915050565b6000602082019050613c0e6000830184613716565b92915050565b60006020820190508181036000830152613c2e818461375e565b905092915050565b60006020820190508181036000830152613c4f816137c8565b9050919050565b60006020820190508181036000830152613c6f816137eb565b9050919050565b60006020820190508181036000830152613c8f8161380e565b9050919050565b60006020820190508181036000830152613caf81613831565b9050919050565b60006020820190508181036000830152613ccf81613854565b9050919050565b60006020820190508181036000830152613cef81613877565b9050919050565b60006020820190508181036000830152613d0f8161389a565b9050919050565b60006020820190508181036000830152613d2f816138bd565b9050919050565b60006020820190508181036000830152613d4f816138e0565b9050919050565b60006020820190508181036000830152613d6f81613903565b9050919050565b60006020820190508181036000830152613d8f81613926565b9050919050565b60006020820190508181036000830152613daf81613949565b9050919050565b60006020820190508181036000830152613dcf8161396c565b9050919050565b60006020820190508181036000830152613def8161398f565b9050919050565b60006020820190508181036000830152613e0f816139d5565b9050919050565b60006020820190508181036000830152613e2f816139f8565b9050919050565b60006020820190508181036000830152613e4f81613a1b565b9050919050565b60006020820190508181036000830152613e6f81613a3e565b9050919050565b60006020820190508181036000830152613e8f81613a61565b9050919050565b60006020820190508181036000830152613eaf81613a84565b9050919050565b60006020820190508181036000830152613ecf81613aa7565b9050919050565b60006020820190508181036000830152613eef81613aca565b9050919050565b6000602082019050613f0b6000830184613afc565b92915050565b6000613f1b613f2c565b9050613f27828261421b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5157613f506143a6565b5b613f5a826143f3565b9050602081019050919050565b600067ffffffffffffffff821115613f8257613f816143a6565b5b613f8b826143f3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061401f8261419d565b915061402a8361419d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405f5761405e6142ea565b5b828201905092915050565b60006140758261419d565b91506140808361419d565b9250826140905761408f614319565b5b828204905092915050565b60006140a68261419d565b91506140b18361419d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ea576140e96142ea565b5b828202905092915050565b60006141008261419d565b915061410b8361419d565b92508282101561411e5761411d6142ea565b5b828203905092915050565b60006141348261417d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d45780820151818401526020810190506141b9565b838111156141e3576000848401525b50505050565b6000600282049050600182168061420157607f821691505b6020821081141561421557614214614348565b5b50919050565b614224826143f3565b810181811067ffffffffffffffff82111715614243576142426143a6565b5b80604052505050565b60006142578261419d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561428a576142896142ea565b5b600182019050919050565b60006142a0826142a7565b9050919050565b60006142b282614404565b9050919050565b60006142c48261419d565b91506142cf8361419d565b9250826142df576142de614319565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f455843454544535f414c4c4f57414e4345000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d41585f535550504c595f455843454544454400000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4241445f4d45524b4c455f50524f4f4600000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f57524f4e475f4554485f414d4f554e5400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f414d4f554e545f455843454544535f4d41585f5045525f43414c4c0000000000600082015250565b7f494e56414c49445f414d4f554e54000000000000000000000000000000000000600082015250565b61496b81614129565b811461497657600080fd5b50565b6149828161413b565b811461498d57600080fd5b50565b61499981614147565b81146149a457600080fd5b50565b6149b081614151565b81146149bb57600080fd5b50565b6149c78161419d565b81146149d257600080fd5b5056fea2646970667358221220421bd609fc5c1caa28929ca3ba94967741b629bad565c17a94be602d2bbecdbe64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c8063715018a61161014f578063bc8893b4116100c1578063d547cfb71161007a578063d547cfb714610940578063d5abeb011461096b578063e45be46114610996578063e985e9c5146109c1578063f2fde38b146109fe578063ffe630b514610a275761027d565b8063bc8893b414610830578063c0ac99831461085b578063c7876ea414610886578063c87b56dd146108b1578063c9b20f14146108ee578063cc77a83e146109175761027d565b806395d89b411161011357806395d89b4114610743578063a0712d681461076e578063a22cb4651461078a578063a9875558146107b3578063b88d4fde146107dc578063bbb64dab146108055761027d565b8063715018a61461068457806381eaf99b1461069b5780638462151c146106b25780638d6cc56d146106ef5780638da5cb5b146107185761027d565b806323b872dd116101f357806358d81a41116101ac57806358d81a41146105645780635aca1bb61461058d5780636352211e146105b65780636373a6b1146105f35780636f8b44b01461061e57806370a08231146106475761027d565b806323b872dd1461046c57806335f067cf146104955780633ccfd60b146104be57806342842e0e146104d557806353d4c775146104fe57806357d190c9146105275761027d565b806309aa3dcf1161024557806309aa3dcf1461037b5780630a78d85a146103a65780630d191d40146103c2578063123bd23b146103ed57806318160ddd146104185780631f32b057146104435761027d565b806301ffc9a7146102825780630628e2f9146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906134fb565b610a50565b6040516102b69190613bde565b60405180910390f35b3480156102cb57600080fd5b506102d4610a62565b6040516102e19190613bde565b60405180910390f35b3480156102f657600080fd5b506102ff610a75565b60405161030c9190613c14565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061359e565b610b07565b6040516103499190613b55565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613461565b610b8c565b005b34801561038757600080fd5b50610390610ca4565b60405161039d9190613ef6565b60405180910390f35b6103c060048036038101906103bb919061360b565b610caa565b005b3480156103ce57600080fd5b506103d7610fc0565b6040516103e49190613bf9565b60405180910390f35b3480156103f957600080fd5b50610402610fc6565b60405161040f9190613ef6565b60405180910390f35b34801561042457600080fd5b5061042d610fcc565b60405161043a9190613ef6565b60405180910390f35b34801561044f57600080fd5b5061046a600480360381019061046591906134ce565b610fd2565b005b34801561047857600080fd5b50610493600480360381019061048e919061334b565b611058565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613555565b6110b8565b005b3480156104ca57600080fd5b506104d361114e565b005b3480156104e157600080fd5b506104fc60048036038101906104f7919061334b565b61126a565b005b34801561050a57600080fd5b50610525600480360381019061052091906135cb565b61128a565b005b34801561053357600080fd5b5061054e600480360381019061054991906132de565b61139f565b60405161055b9190613ef6565b60405180910390f35b34801561057057600080fd5b5061058b6004803603810190610586919061359e565b6113b7565b005b34801561059957600080fd5b506105b460048036038101906105af91906134a1565b61143d565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061359e565b6114d6565b6040516105ea9190613b55565b60405180910390f35b3480156105ff57600080fd5b50610608611588565b6040516106159190613c14565b60405180910390f35b34801561062a57600080fd5b506106456004803603810190610640919061359e565b611616565b005b34801561065357600080fd5b5061066e600480360381019061066991906132de565b6116c1565b60405161067b9190613ef6565b60405180910390f35b34801561069057600080fd5b50610699611779565b005b3480156106a757600080fd5b506106b0611801565b005b3480156106be57600080fd5b506106d960048036038101906106d491906132de565b61189a565b6040516106e69190613bbc565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061359e565b6119f3565b005b34801561072457600080fd5b5061072d611a79565b60405161073a9190613b55565b60405180910390f35b34801561074f57600080fd5b50610758611aa3565b6040516107659190613c14565b60405180910390f35b6107886004803603810190610783919061359e565b611b35565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613421565b611cf5565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061359e565b611e76565b005b3480156107e857600080fd5b5061080360048036038101906107fe919061339e565b611efc565b005b34801561081157600080fd5b5061081a611f5e565b6040516108279190613bde565b60405180910390f35b34801561083c57600080fd5b50610845611f71565b6040516108529190613bde565b60405180910390f35b34801561086757600080fd5b50610870611f84565b60405161087d9190613c14565b60405180910390f35b34801561089257600080fd5b5061089b612012565b6040516108a89190613ef6565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d3919061359e565b612018565b6040516108e59190613c14565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061359e565b612052565b005b34801561092357600080fd5b5061093e600480360381019061093991906134a1565b6120d8565b005b34801561094c57600080fd5b50610955612171565b6040516109629190613c14565b60405180910390f35b34801561097757600080fd5b50610980612203565b60405161098d9190613ef6565b60405180910390f35b3480156109a257600080fd5b506109ab612209565b6040516109b89190613ef6565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e3919061330b565b61220f565b6040516109f59190613bde565b60405180910390f35b348015610a0a57600080fd5b50610a256004803603810190610a2091906132de565b6122a3565b005b348015610a3357600080fd5b50610a4e6004803603810190610a499190613555565b61239b565b005b6000610a5b82612431565b9050919050565b600c60009054906101000a900460ff1681565b606060008054610a84906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab0906141e9565b8015610afd5780601f10610ad257610100808354040283529160200191610afd565b820191906000526020600020905b815481529060010190602001808311610ae057829003601f168201915b5050505050905090565b6000610b1282612513565b610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890613dd6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b97826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613e76565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2761257f565b73ffffffffffffffffffffffffffffffffffffffff161480610c565750610c5581610c5061257f565b61220f565b5b610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613d56565b60405180910390fd5b610c9f8383612587565b505050565b600f5481565b610d1e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085433604051602001610d039190613b0b565b60405160208183030381529060405280519060200120612640565b610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613e16565b60405180910390fd5b600960009054906101000a900460ff16610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390613d16565b60405180910390fd5b600f54831115610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890613eb6565b60405180910390fd5b34600e5484610e00919061409b565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613e56565b60405180910390fd5b60105483600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e8f9190614014565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613c96565b60405180910390fd5b600083600754610ee09190614014565b9050600b54811115610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e90613cf6565b60405180910390fd5b83600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f769190614014565b9250508190555060005b84811015610fb257610f9f3382600754610f9a9190614014565b612657565b8080610faa9061424c565b915050610f80565b508060078190555050505050565b60085481565b600e5481565b60075481565b610fda61257f565b73ffffffffffffffffffffffffffffffffffffffff16610ff8611a79565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613df6565b60405180910390fd5b8060088190555050565b61106961106361257f565b82612825565b6110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90613e96565b60405180910390fd5b6110b3838383612903565b505050565b6110c061257f565b73ffffffffffffffffffffffffffffffffffffffff166110de611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613df6565b60405180910390fd5b806012908051906020019061114a929190613087565b5050565b61115661257f565b73ffffffffffffffffffffffffffffffffffffffff16611174611a79565b73ffffffffffffffffffffffffffffffffffffffff1614806111dc575061119961257f565b73ffffffffffffffffffffffffffffffffffffffff1673ef8087375c2cc1dcdf7b753802117ff9dc935a5773ffffffffffffffffffffffffffffffffffffffff16145b61121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613df6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b5050565b61128583838360405180602001604052806000815250611efc565b505050565b61129261257f565b73ffffffffffffffffffffffffffffffffffffffff166112b0611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613df6565b60405180910390fd5b6000826007546113169190614014565b9050600b5481111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613cf6565b60405180910390fd5b60005b838110156113925761137f838260075461137a9190614014565b612657565b808061138a9061424c565b915050611360565b5080600781905550505050565b600a6020528060005260406000206000915090505481565b6113bf61257f565b73ffffffffffffffffffffffffffffffffffffffff166113dd611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613df6565b60405180910390fd5b8060108190555050565b61144561257f565b73ffffffffffffffffffffffffffffffffffffffff16611463611a79565b73ffffffffffffffffffffffffffffffffffffffff16146114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090613df6565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690613d96565b60405180910390fd5b80915050919050565b60118054611595906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546115c1906141e9565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b505050505081565b61161e61257f565b73ffffffffffffffffffffffffffffffffffffffff1661163c611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613df6565b60405180910390fd5b611b3981111580156116b15750600c60009054906101000a900460ff16155b156116be5780600b819055505b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613d76565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178161257f565b73ffffffffffffffffffffffffffffffffffffffff1661179f611a79565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613df6565b60405180910390fd5b6117ff6000612b5f565b565b61180961257f565b73ffffffffffffffffffffffffffffffffffffffff16611827611a79565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613df6565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b606060006118a7836116c1565b9050600081141561190457600067ffffffffffffffff8111156118cd576118cc6143a6565b5b6040519080825280602002602001820160405280156118fb5781602001602082028036833780820191505090505b509150506119ee565b60008167ffffffffffffffff8111156119205761191f6143a6565b5b60405190808252806020026020018201604052801561194e5781602001602082028036833780820191505090505b50905060006007549050600080600190505b8281116119e5578673ffffffffffffffffffffffffffffffffffffffff16611987826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614156119d257808483815181106119b7576119b6614377565b5b60200260200101818152505081806119ce9061424c565b9250505b80806119dd9061424c565b915050611960565b83955050505050505b919050565b6119fb61257f565b73ffffffffffffffffffffffffffffffffffffffff16611a19611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613df6565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ab2906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611ade906141e9565b8015611b2b5780601f10611b0057610100808354040283529160200191611b2b565b820191906000526020600020905b815481529060010190602001808311611b0e57829003601f168201915b5050505050905090565b6000811415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613ed6565b60405180910390fd5b600c60019054906101000a900460ff16611bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbf90613d16565b60405180910390fd5b600f54811115611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490613eb6565b60405180910390fd5b34600d5482611c1c919061409b565b1115611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613e56565b60405180910390fd5b600081600754611c6d9190614014565b9050600b54811115611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613cf6565b60405180910390fd5b60005b82811015611ce957611cd63382600754611cd19190614014565b612657565b8080611ce19061424c565b915050611cb7565b50806007819055505050565b611cfd61257f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613cd6565b60405180910390fd5b8060056000611d7861257f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e2561257f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e6a9190613bde565b60405180910390a35050565b611e7e61257f565b73ffffffffffffffffffffffffffffffffffffffff16611e9c611a79565b73ffffffffffffffffffffffffffffffffffffffff1614611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee990613df6565b60405180910390fd5b80600e8190555050565b611f0d611f0761257f565b83612825565b611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613e96565b60405180910390fd5b611f5884848484612c25565b50505050565b600960009054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b60128054611f91906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611fbd906141e9565b801561200a5780601f10611fdf5761010080835404028352916020019161200a565b820191906000526020600020905b815481529060010190602001808311611fed57829003601f168201915b505050505081565b600d5481565b6060612022612171565b61202b83612c81565b60405160200161203c929190613b26565b6040516020818303038152906040529050919050565b61205a61257f565b73ffffffffffffffffffffffffffffffffffffffff16612078611a79565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c590613df6565b60405180910390fd5b80600f8190555050565b6120e061257f565b73ffffffffffffffffffffffffffffffffffffffff166120fe611a79565b73ffffffffffffffffffffffffffffffffffffffff1614612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b90613df6565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060128054612180906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546121ac906141e9565b80156121f95780601f106121ce576101008083540402835291602001916121f9565b820191906000526020600020905b8154815290600101906020018083116121dc57829003601f168201915b5050505050905090565b600b5481565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122ab61257f565b73ffffffffffffffffffffffffffffffffffffffff166122c9611a79565b73ffffffffffffffffffffffffffffffffffffffff161461231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613df6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690613c56565b60405180910390fd5b61239881612b5f565b50565b6123a361257f565b73ffffffffffffffffffffffffffffffffffffffff166123c1611a79565b73ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90613df6565b60405180910390fd5b806011908051906020019061242d929190613087565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061250c575061250b82612de2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125fa836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008261264d8584612e4c565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90613db6565b60405180910390fd5b6126d081612513565b15612710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270790613c76565b60405180910390fd5b61271c60008383612ec1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276c9190614014565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061283082612513565b61286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613d36565b60405180910390fd5b600061287a836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e957508373ffffffffffffffffffffffffffffffffffffffff166128d184610b07565b73ffffffffffffffffffffffffffffffffffffffff16145b806128fa57506128f9818561220f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612923826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297090613e36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e090613cb6565b60405180910390fd5b6129f4838383612ec1565b6129ff600082612587565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4f91906140f5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa69190614014565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c30848484612903565b612c3c84848484612ec6565b612c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7290613c36565b60405180910390fd5b50505050565b60606000821415612cc9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ddd565b600082905060005b60008214612cfb578080612ce49061424c565b915050600a82612cf4919061406a565b9150612cd1565b60008167ffffffffffffffff811115612d1757612d166143a6565b5b6040519080825280601f01601f191660200182016040528015612d495781602001600182028036833780820191505090505b5090505b60008514612dd657600182612d6291906140f5565b9150600a85612d7191906142b9565b6030612d7d9190614014565b60f81b818381518110612d9357612d92614377565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dcf919061406a565b9450612d4d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082905060005b8451811015612eb6576000858281518110612e7357612e72614377565b5b60200260200101519050808311612e9557612e8e838261305d565b9250612ea2565b612e9f818461305d565b92505b508080612eae9061424c565b915050612e55565b508091505092915050565b505050565b6000612ee78473ffffffffffffffffffffffffffffffffffffffff16613074565b15613050578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f1061257f565b8786866040518563ffffffff1660e01b8152600401612f329493929190613b70565b602060405180830381600087803b158015612f4c57600080fd5b505af1925050508015612f7d57506040513d601f19601f82011682018060405250810190612f7a9190613528565b60015b613000573d8060008114612fad576040519150601f19603f3d011682016040523d82523d6000602084013e612fb2565b606091505b50600081511415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90613c36565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613055565b600190505b949350505050565b600082600052816020526040600020905092915050565b600080823b905060008111915050919050565b828054613093906141e9565b90600052602060002090601f0160209004810192826130b557600085556130fc565b82601f106130ce57805160ff19168380011785556130fc565b828001600101855582156130fc579182015b828111156130fb5782518255916020019190600101906130e0565b5b509050613109919061310d565b5090565b5b8082111561312657600081600090555060010161310e565b5090565b600061313d61313884613f36565b613f11565b905082815260208101848484011115613159576131586143e4565b5b6131648482856141a7565b509392505050565b600061317f61317a84613f67565b613f11565b90508281526020810184848401111561319b5761319a6143e4565b5b6131a68482856141a7565b509392505050565b6000813590506131bd81614962565b92915050565b60008083601f8401126131d9576131d86143da565b5b8235905067ffffffffffffffff8111156131f6576131f56143d5565b5b602083019150836020820283011115613212576132116143df565b5b9250929050565b60008135905061322881614979565b92915050565b60008135905061323d81614990565b92915050565b600081359050613252816149a7565b92915050565b600081519050613267816149a7565b92915050565b600082601f830112613282576132816143da565b5b813561329284826020860161312a565b91505092915050565b600082601f8301126132b0576132af6143da565b5b81356132c084826020860161316c565b91505092915050565b6000813590506132d8816149be565b92915050565b6000602082840312156132f4576132f36143ee565b5b6000613302848285016131ae565b91505092915050565b60008060408385031215613322576133216143ee565b5b6000613330858286016131ae565b9250506020613341858286016131ae565b9150509250929050565b600080600060608486031215613364576133636143ee565b5b6000613372868287016131ae565b9350506020613383868287016131ae565b9250506040613394868287016132c9565b9150509250925092565b600080600080608085870312156133b8576133b76143ee565b5b60006133c6878288016131ae565b94505060206133d7878288016131ae565b93505060406133e8878288016132c9565b925050606085013567ffffffffffffffff811115613409576134086143e9565b5b6134158782880161326d565b91505092959194509250565b60008060408385031215613438576134376143ee565b5b6000613446858286016131ae565b925050602061345785828601613219565b9150509250929050565b60008060408385031215613478576134776143ee565b5b6000613486858286016131ae565b9250506020613497858286016132c9565b9150509250929050565b6000602082840312156134b7576134b66143ee565b5b60006134c584828501613219565b91505092915050565b6000602082840312156134e4576134e36143ee565b5b60006134f28482850161322e565b91505092915050565b600060208284031215613511576135106143ee565b5b600061351f84828501613243565b91505092915050565b60006020828403121561353e5761353d6143ee565b5b600061354c84828501613258565b91505092915050565b60006020828403121561356b5761356a6143ee565b5b600082013567ffffffffffffffff811115613589576135886143e9565b5b6135958482850161329b565b91505092915050565b6000602082840312156135b4576135b36143ee565b5b60006135c2848285016132c9565b91505092915050565b600080604083850312156135e2576135e16143ee565b5b60006135f0858286016132c9565b9250506020613601858286016131ae565b9150509250929050565b600080600060408486031215613624576136236143ee565b5b6000613632868287016132c9565b935050602084013567ffffffffffffffff811115613653576136526143e9565b5b61365f868287016131c3565b92509250509250925092565b60006136778383613aed565b60208301905092915050565b61368c81614129565b82525050565b6136a361369e82614129565b614295565b82525050565b60006136b482613fa8565b6136be8185613fd6565b93506136c983613f98565b8060005b838110156136fa5781516136e1888261366b565b97506136ec83613fc9565b9250506001810190506136cd565b5085935050505092915050565b6137108161413b565b82525050565b61371f81614147565b82525050565b600061373082613fb3565b61373a8185613fe7565b935061374a8185602086016141b6565b613753816143f3565b840191505092915050565b600061376982613fbe565b6137738185613ff8565b93506137838185602086016141b6565b61378c816143f3565b840191505092915050565b60006137a282613fbe565b6137ac8185614009565b93506137bc8185602086016141b6565b80840191505092915050565b60006137d5603283613ff8565b91506137e082614411565b604082019050919050565b60006137f8602683613ff8565b915061380382614460565b604082019050919050565b600061381b601c83613ff8565b9150613826826144af565b602082019050919050565b600061383e601183613ff8565b9150613849826144d8565b602082019050919050565b6000613861602483613ff8565b915061386c82614501565b604082019050919050565b6000613884601983613ff8565b915061388f82614550565b602082019050919050565b60006138a7601383613ff8565b91506138b282614579565b602082019050919050565b60006138ca600b83613ff8565b91506138d5826145a2565b602082019050919050565b60006138ed602c83613ff8565b91506138f8826145cb565b604082019050919050565b6000613910603883613ff8565b915061391b8261461a565b604082019050919050565b6000613933602a83613ff8565b915061393e82614669565b604082019050919050565b6000613956602983613ff8565b9150613961826146b8565b604082019050919050565b6000613979602083613ff8565b915061398482614707565b602082019050919050565b600061399c602c83613ff8565b91506139a782614730565b604082019050919050565b60006139bf600583614009565b91506139ca8261477f565b600582019050919050565b60006139e2602083613ff8565b91506139ed826147a8565b602082019050919050565b6000613a05601083613ff8565b9150613a10826147d1565b602082019050919050565b6000613a28602983613ff8565b9150613a33826147fa565b604082019050919050565b6000613a4b601083613ff8565b9150613a5682614849565b602082019050919050565b6000613a6e602183613ff8565b9150613a7982614872565b604082019050919050565b6000613a91603183613ff8565b9150613a9c826148c1565b604082019050919050565b6000613ab4601b83613ff8565b9150613abf82614910565b602082019050919050565b6000613ad7600e83613ff8565b9150613ae282614939565b602082019050919050565b613af68161419d565b82525050565b613b058161419d565b82525050565b6000613b178284613692565b60148201915081905092915050565b6000613b328285613797565b9150613b3e8284613797565b9150613b49826139b2565b91508190509392505050565b6000602082019050613b6a6000830184613683565b92915050565b6000608082019050613b856000830187613683565b613b926020830186613683565b613b9f6040830185613afc565b8181036060830152613bb18184613725565b905095945050505050565b60006020820190508181036000830152613bd681846136a9565b905092915050565b6000602082019050613bf36000830184613707565b92915050565b6000602082019050613c0e6000830184613716565b92915050565b60006020820190508181036000830152613c2e818461375e565b905092915050565b60006020820190508181036000830152613c4f816137c8565b9050919050565b60006020820190508181036000830152613c6f816137eb565b9050919050565b60006020820190508181036000830152613c8f8161380e565b9050919050565b60006020820190508181036000830152613caf81613831565b9050919050565b60006020820190508181036000830152613ccf81613854565b9050919050565b60006020820190508181036000830152613cef81613877565b9050919050565b60006020820190508181036000830152613d0f8161389a565b9050919050565b60006020820190508181036000830152613d2f816138bd565b9050919050565b60006020820190508181036000830152613d4f816138e0565b9050919050565b60006020820190508181036000830152613d6f81613903565b9050919050565b60006020820190508181036000830152613d8f81613926565b9050919050565b60006020820190508181036000830152613daf81613949565b9050919050565b60006020820190508181036000830152613dcf8161396c565b9050919050565b60006020820190508181036000830152613def8161398f565b9050919050565b60006020820190508181036000830152613e0f816139d5565b9050919050565b60006020820190508181036000830152613e2f816139f8565b9050919050565b60006020820190508181036000830152613e4f81613a1b565b9050919050565b60006020820190508181036000830152613e6f81613a3e565b9050919050565b60006020820190508181036000830152613e8f81613a61565b9050919050565b60006020820190508181036000830152613eaf81613a84565b9050919050565b60006020820190508181036000830152613ecf81613aa7565b9050919050565b60006020820190508181036000830152613eef81613aca565b9050919050565b6000602082019050613f0b6000830184613afc565b92915050565b6000613f1b613f2c565b9050613f27828261421b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5157613f506143a6565b5b613f5a826143f3565b9050602081019050919050565b600067ffffffffffffffff821115613f8257613f816143a6565b5b613f8b826143f3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061401f8261419d565b915061402a8361419d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405f5761405e6142ea565b5b828201905092915050565b60006140758261419d565b91506140808361419d565b9250826140905761408f614319565b5b828204905092915050565b60006140a68261419d565b91506140b18361419d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ea576140e96142ea565b5b828202905092915050565b60006141008261419d565b915061410b8361419d565b92508282101561411e5761411d6142ea565b5b828203905092915050565b60006141348261417d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d45780820151818401526020810190506141b9565b838111156141e3576000848401525b50505050565b6000600282049050600182168061420157607f821691505b6020821081141561421557614214614348565b5b50919050565b614224826143f3565b810181811067ffffffffffffffff82111715614243576142426143a6565b5b80604052505050565b60006142578261419d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561428a576142896142ea565b5b600182019050919050565b60006142a0826142a7565b9050919050565b60006142b282614404565b9050919050565b60006142c48261419d565b91506142cf8361419d565b9250826142df576142de614319565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f455843454544535f414c4c4f57414e4345000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d41585f535550504c595f455843454544454400000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4241445f4d45524b4c455f50524f4f4600000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f57524f4e475f4554485f414d4f554e5400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f414d4f554e545f455843454544535f4d41585f5045525f43414c4c0000000000600082015250565b7f494e56414c49445f414d4f554e54000000000000000000000000000000000000600082015250565b61496b81614129565b811461497657600080fd5b50565b6149828161413b565b811461498d57600080fd5b50565b61499981614147565b81146149a457600080fd5b50565b6149b081614151565b81146149bb57600080fd5b50565b6149c78161419d565b81146149d257600080fd5b5056fea2646970667358221220421bd609fc5c1caa28929ca3ba94967741b629bad565c17a94be602d2bbecdbe64736f6c63430008070033
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.