ERC-721
Overview
Max Total Supply
177 SkyPunk Legacy
Holders
28
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 SkyPunk LegacyLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SkyPunkLegacy
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // Made by: NFT Stack // https://nftstack.info // pragma solidity ^0.8.1; import "./Ownable.sol"; import "./ERC721A.sol"; contract SkyPunkLegacy is ERC721A, Ownable { uint256 public mintPrice = 0.25 ether; uint256 public preSaleMintPrice = 0.15 ether; uint256 public preSaleBreakPoint1 = 125; uint256 public preSaleBreakPoint2 = 1875; uint256 private reserveAtATime = 50; uint256 private reservedCount = 0; uint256 private maxReserveCount = 100; string _baseTokenURI; bool public isMintActive = false; bool public isPreSaleMintActive = false; bool public isClosedMintForever = false; bool public isSellOpen = false; uint256 public maximumMintSupply = 2000; uint256 public maximumAllowedTokensPerPurchase = 1; uint256 public maximumAllowedTokensPerWallet = 2; uint256 public allowListMaxMint = 1; uint256 public immutable maxPerAddressDuringMint; address private OtherAddress1 = 0x809F6DC33a408974d271D1D2F5890dA7f00D65Df; address private OtherAddress2 = 0x0Fc0F78fc939606db65F5BBF2F3715262C0b2F6E; address private OtherAddress3 = 0xE4a5510402E17AD8bEd1D5f891f9c4D8F104E11c; address private OtherAddress4 = 0xb302a97dB500f51A9fc2500c0864768aEb160972; address private OtherAddress5 = 0x4F6568396EA576555288295904e246eA9CE182C2; mapping(address => bool) private _allowList; mapping(address => uint256) private _allowListClaimed; mapping(address => uint256) private _publicMintClaimed; event AssetMinted(uint256 tokenId, address sender); event SaleActivation(bool isMintActive); constructor( string memory baseURI, uint256 maxBatchSize_, uint256 collectionSize_ ) ERC721A("SkyPunk Legacy", "SkyPunk Legacy", maxBatchSize_, collectionSize_) { setBaseURI(baseURI); maxPerAddressDuringMint = maxBatchSize_; } modifier saleIsOpen { require(totalSupply() <= maximumMintSupply, "Sale has ended."); _; } modifier onlyAuthorized() { require(owner() == msg.sender); _; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized { maximumAllowedTokensPerPurchase = _count; } function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized { maximumAllowedTokensPerWallet = _count; } function setMintActive(bool val) public onlyAuthorized { isMintActive = val; emit SaleActivation(val); } function setMaxMintSupply(uint256 maxMintSupply) external onlyAuthorized { maximumMintSupply = maxMintSupply; } function setIsPreSaleMintActive(bool _isPreSaleMintActive) external onlyAuthorized { isPreSaleMintActive = _isPreSaleMintActive; } function setIsSellOpen(bool _isSellOpen) external onlyAuthorized { isSellOpen = _isSellOpen; } function setAllowListMaxMint(uint256 maxMint) external onlyAuthorized { allowListMaxMint = maxMint; } function addToAllowList(address[] calldata addresses) external onlyAuthorized { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); _allowList[addresses[i]] = true; _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0; } } function checkIfOnAllowList(address addr) external view returns (bool) { return _allowList[addr]; } function removeFromAllowList(address[] calldata addresses) external onlyAuthorized { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add a null address"); _allowList[addresses[i]] = false; } } function allowListClaimedBy(address owner) external view returns (uint256){ require(owner != address(0), 'Zero address not on Allow List'); return _allowListClaimed[owner]; } function publicMintClaimed(address owner) external view returns (uint256){ require(owner != address(0), 'Zero address not on Allow List'); return _publicMintClaimed[owner]; } function setReserveAtATime(uint256 val) public onlyAuthorized { reserveAtATime = val; } function setMaxReserve(uint256 val) public onlyAuthorized { maxReserveCount = val; } function setMintPrice(uint256 _price) public onlyAuthorized { mintPrice = _price; } function setPreSaleMintPrice(uint256 _price) public onlyAuthorized { preSaleMintPrice = _price; } function setBaseURI(string memory baseURI) public onlyAuthorized { _baseTokenURI = baseURI; } function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) { return maximumAllowedTokensPerPurchase; } function getMintPrice() external view returns (uint256) { return mintPrice; } function getPreSaleMintPrice() external view returns (uint256) { return preSaleMintPrice; } function getIsClosedMintForever() external view returns (bool) { return isClosedMintForever; } function setIsClosedMintForever() external onlyAuthorized { isClosedMintForever = true; } function getReserveAtATime() external view returns (uint256) { return reserveAtATime; } function getTotalSupply() external view returns (uint256) { return totalSupply(); } function getContractOwner() public view returns (address) { return owner(); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function reserveNft() public onlyAuthorized { require(reservedCount <= maxReserveCount, "Max Reserves taken already!"); require(totalSupply() + reserveAtATime <= maximumMintSupply, "Total supply exceeded."); require(totalSupply() <= maximumMintSupply, "Total supply spent."); reservedCount += reserveAtATime; _safeMint(msg.sender, reserveAtATime); } function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized { require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded."); require(totalSupply() <= maximumMintSupply, "Total supply spent."); _safeMint(_walletAddress, _count); } function mint(address _to, uint256 _count) public payable saleIsOpen callerIsUser { if (msg.sender != owner()) { require(isMintActive, "Sale is not active currently."); } if(_to != owner()) { require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached."); } require(_publicMintClaimed[msg.sender] + _count <= maximumAllowedTokensPerWallet, "Purchase exceeds max allowed"); require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded."); require(totalSupply() <= maximumMintSupply, "Total supply spent."); require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens" ); require( numberMinted(msg.sender) + _count <= maxPerAddressDuringMint, "can not mint this many" ); require(!isClosedMintForever, "Mint Closed Forever"); require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent."); _publicMintClaimed[msg.sender] += _count; _safeMint(_to, _count); } function preSaleMint(uint256 _count) public payable saleIsOpen { require(isPreSaleMintActive, 'Pre Sale Mint is not active'); require(_allowList[msg.sender], 'You are not on the Allow List'); require(totalSupply() < maximumMintSupply, 'All tokens have been minted'); require(_count <= allowListMaxMint, 'Cannot purchase this many tokens'); require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed'); require(msg.value >= preSaleMintPrice * _count, 'Insuffient ETH amount sent.'); require(!isClosedMintForever, 'Mint Closed Forever'); _allowListClaimed[msg.sender] += _count; if(totalSupply() + _count == preSaleBreakPoint1) { isPreSaleMintActive = false; preSaleMintPrice = 0.2 ether; } else if(totalSupply() + _count == preSaleBreakPoint2) { isPreSaleMintActive = false; } _safeMint(msg.sender, _count); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function walletOfOwner(address _owner) external view returns(uint256[] memory) { uint tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint i = 0; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function withdraw() external onlyAuthorized { uint balance = address(this).balance; payable(OtherAddress1).transfer(balance * 500 / 10000); payable(OtherAddress2).transfer(balance * 500 / 10000); payable(OtherAddress3).transfer(balance * 500 / 10000); payable(OtherAddress4).transfer(balance * 1000 / 10000); payable(OtherAddress5).transfer(balance * 7500 / 10000); payable(owner()).transfer(balance * 0 / 10000); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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 "./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; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isMintActive","type":"bool"}],"name":"SaleActivation","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","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":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSellOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"preSaleBreakPoint1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleBreakPoint2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","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":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleMintActive","type":"bool"}],"name":"setIsPreSaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSellOpen","type":"bool"}],"name":"setIsSellOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052600080805560078190556703782dace9d90000600955670214e8348c4f0000600a55607d600b55610753600c556032600d55600e556064600f556011805463ffffffff191690556107d0601255600160138190556002601455601555601680546001600160a01b031990811673809f6dc33a408974d271d1d2f5890da7f00d65df17909155601780548216730fc0f78fc939606db65f5bbf2f3715262c0b2f6e17905560188054821673e4a5510402e17ad8bed1d5f891f9c4d8f104e11c17905560198054821673b302a97db500f51a9fc2500c0864768aeb160972179055601a8054909116734f6568396ea576555288295904e246ea9ce182c21790553480156200010f57600080fd5b5060405162003ff338038062003ff3833981016040819052620001329162000376565b6040518060400160405280600e81526020016d536b7950756e6b204c656761637960901b8152506040518060400160405280600e81526020016d536b7950756e6b204c656761637960901b815250838360008111620001ae5760405162461bcd60e51b8152600401620001a590620004a7565b60405180910390fd5b60008211620001d15760405162461bcd60e51b8152600401620001a59062000460565b8351620001e6906001906020870190620002d0565b508251620001fc906002906020860190620002d0565b5060a091909152608052506200021d90506200021762000233565b62000237565b620002288362000289565b5060c0525062000548565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3362000294620002c1565b6001600160a01b031614620002a857600080fd5b8051620002bd906010906020840190620002d0565b5050565b6008546001600160a01b031690565b828054620002de90620004f5565b90600052602060002090601f0160209004810192826200030257600085556200034d565b82601f106200031d57805160ff19168380011785556200034d565b828001600101855582156200034d579182015b828111156200034d57825182559160200191906001019062000330565b506200035b9291506200035f565b5090565b5b808211156200035b576000815560010162000360565b6000806000606084860312156200038b578283fd5b83516001600160401b0380821115620003a2578485fd5b818601915086601f830112620003b6578485fd5b815181811115620003cb57620003cb62000532565b604051601f8201601f19908116603f01168101908382118183101715620003f657620003f662000532565b8160405282815260209350898484870101111562000412578788fd5b8791505b8282101562000435578482018401518183018501529083019062000416565b828211156200044657878484830101525b928801516040909801519299979850919695505050505050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200050a57607f821691505b602082108114156200052c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c051613a696200058a600039600081816112340152611ab00152600081816123df0152818161240901526127fe015260005050613a696000f3fe6080604052600436106103cd5760003560e01c80637403fde7116101fd578063ad06d75811610118578063e985e9c5116100ab578063f132dc291161007a578063f132dc2914610a50578063f2fde38b14610a65578063f4a0a52814610a85578063f6c9d9e314610aa5578063f7cb9e5414610ac5576103cd565b8063e985e9c5146109db578063ea6eb836146109fb578063ec7d099114610a1b578063ee1cc94414610a30576103cd565b8063cadf8818116100e7578063cadf88181461097c578063d7224ba014610991578063dc33e681146109a6578063e7b62d96146109c6576103cd565b8063ad06d75814610912578063b88d4fde14610927578063c4e41b2214610947578063c87b56dd1461095c576103cd565b8063932ecebc116101905780639ccb0fea1161015f5780639ccb0fea146108a8578063a22cb465146108bd578063a51312c8146108dd578063a7f93ebd146108fd576103cd565b8063932ecebc1461084957806395d89b411461085e57806398590a39146108735780639a3bf72814610893576103cd565b80637d26f470116101cc5780637d26f470146107f55780637f44ab2f1461080a5780638bc35c2f1461081f5780638da5cb5b14610834576103cd565b80637403fde71461078d57806377b501b9146107a25780637835c635146107c25780637a6685f1146107d5576103cd565b8063431adcb1116102ed5780635b92ac0d11610280578063715018a61161024f578063715018a61461072357806371e3500c146107385780637263cfe21461074d5780637389fbb71461076d576103cd565b80635b92ac0d146106b95780636352211e146106ce5780636817c76c146106ee57806370a0823114610703576103cd565b80634dfea627116102bc5780634dfea627146106395780634f6ccce71461065957806355f804b31461067957806356a87caa14610699576103cd565b8063431adcb1146105cd578063438b6300146105e2578063442890d51461060f5780634d0550de14610624576103cd565b806323b872dd116103655780633ccfd60b116103345780633ccfd60b146105655780633cfac5701461057a57806340c10f191461059a57806342842e0e146105ad576103cd565b806323b872dd146104e55780632c1205f4146105055780632f745c59146105255780633b9ee7e414610545576103cd565b8063095ea7b3116103a1578063095ea7b314610484578063159d2623146104a657806318160ddd146104bb57806321a911f8146104d0576103cd565b806208ffdd146103d257806301ffc9a71461040857806306fdde0314610435578063081812fc14610457575b600080fd5b3480156103de57600080fd5b506103f26103ed366004612b6f565b610ae5565b6040516103ff9190613879565b60405180910390f35b34801561041457600080fd5b50610428610423366004612d4a565b610b36565b6040516103ff9190612ed0565b34801561044157600080fd5b5061044a610b97565b6040516103ff9190612edb565b34801561046357600080fd5b50610477610472366004612dc8565b610c29565b6040516103ff9190612e3b565b34801561049057600080fd5b506104a461049f366004612c98565b610c6c565b005b3480156104b257600080fd5b506103f2610d05565b3480156104c757600080fd5b506103f2610d0b565b3480156104dc57600080fd5b506103f2610d11565b3480156104f157600080fd5b506104a4610500366004612bbb565b610d17565b34801561051157600080fd5b50610428610520366004612b6f565b610d22565b34801561053157600080fd5b506103f2610540366004612c98565b610d40565b34801561055157600080fd5b506104a4610560366004612dc8565b610e36565b34801561057157600080fd5b506104a4610e57565b34801561058657600080fd5b506104a4610595366004612d30565b611062565b6104a46105a8366004612c98565b611098565b3480156105b957600080fd5b506104a46105c8366004612bbb565b61130a565b3480156105d957600080fd5b50610428611325565b3480156105ee57600080fd5b506106026105fd366004612b6f565b611335565b6040516103ff9190612e8c565b34801561061b57600080fd5b506104776113f3565b34801561063057600080fd5b506103f2611402565b34801561064557600080fd5b506104a4610654366004612dc8565b611408565b34801561066557600080fd5b506103f2610674366004612dc8565b611429565b34801561068557600080fd5b506104a4610694366004612d82565b611455565b3480156106a557600080fd5b506104a46106b4366004612dc8565b611484565b3480156106c557600080fd5b506104286114a5565b3480156106da57600080fd5b506104776106e9366004612dc8565b6114ae565b3480156106fa57600080fd5b506103f26114c0565b34801561070f57600080fd5b506103f261071e366004612b6f565b6114c6565b34801561072f57600080fd5b506104a4611513565b34801561074457600080fd5b506104a461155e565b34801561075957600080fd5b506104a4610768366004612cc1565b611624565b34801561077957600080fd5b506104a4610788366004612dc8565b6117e2565b34801561079957600080fd5b506103f2611803565b3480156107ae57600080fd5b506104a46107bd366004612c98565b611809565b6104a46107d0366004612dc8565b61188c565b3480156107e157600080fd5b506104a46107f0366004612dc8565b611a78565b34801561080157600080fd5b50610428611a99565b34801561081657600080fd5b506103f2611aa8565b34801561082b57600080fd5b506103f2611aae565b34801561084057600080fd5b50610477611ad2565b34801561085557600080fd5b506104a4611ae1565b34801561086a57600080fd5b5061044a611b10565b34801561087f57600080fd5b506104a461088e366004612d30565b611b1f565b34801561089f57600080fd5b506103f2611b59565b3480156108b457600080fd5b50610428611b5f565b3480156108c957600080fd5b506104a46108d8366004612c6f565b611b6d565b3480156108e957600080fd5b506104a46108f8366004612cc1565b611c3b565b34801561090957600080fd5b506103f2611d35565b34801561091e57600080fd5b506103f2611d3b565b34801561093357600080fd5b506104a4610942366004612bf6565b611d60565b34801561095357600080fd5b506103f2611d99565b34801561096857600080fd5b5061044a610977366004612dc8565b611da3565b34801561098857600080fd5b506103f2611e26565b34801561099d57600080fd5b506103f2611e2c565b3480156109b257600080fd5b506103f26109c1366004612b6f565b611e32565b3480156109d257600080fd5b506103f2611e3d565b3480156109e757600080fd5b506104286109f6366004612b89565b611e43565b348015610a0757600080fd5b506104a4610a16366004612dc8565b611e71565b348015610a2757600080fd5b506103f2611e92565b348015610a3c57600080fd5b506104a4610a4b366004612d30565b611e98565b348015610a5c57600080fd5b50610428611efd565b348015610a7157600080fd5b506104a4610a80366004612b6f565b611f0c565b348015610a9157600080fd5b506104a4610aa0366004612dc8565b611f7a565b348015610ab157600080fd5b506104a4610ac0366004612dc8565b611f9b565b348015610ad157600080fd5b506103f2610ae0366004612b6f565b611fbc565b60006001600160a01b038216610b165760405162461bcd60e51b8152600401610b0d9061335c565b60405180910390fd5b506001600160a01b0381166000908152601c60205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610b6757506001600160e01b03198216635b5e139f60e01b145b80610b8257506001600160e01b0319821663780e9d6360e01b145b80610b915750610b9182612000565b92915050565b606060018054610ba690613971565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290613971565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3482612019565b610c505760405162461bcd60e51b8152600401610b0d906137b5565b506000908152600560205260409020546001600160a01b031690565b6000610c77826114ae565b9050806001600160a01b0316836001600160a01b03161415610cab5760405162461bcd60e51b8152600401610b0d906134d2565b806001600160a01b0316610cbd612020565b6001600160a01b03161480610cd95750610cd9816109f6612020565b610cf55760405162461bcd60e51b8152600401610b0d90613202565b610d00838383612024565b505050565b600b5481565b60005490565b600a5490565b610d00838383612080565b6001600160a01b03166000908152601b602052604090205460ff1690565b6000610d4b836114c6565b8210610d695760405162461bcd60e51b8152600401610b0d90612eee565b6000610d73610d0b565b905060008060005b83811015610e1d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dce57805192505b876001600160a01b0316836001600160a01b03161415610e0a5786841415610dfc57509350610b9192505050565b83610e06816139ac565b9450505b5080610e15816139ac565b915050610d7b565b5060405162461bcd60e51b8152600401610b0d906136aa565b33610e3f611ad2565b6001600160a01b031614610e5257600080fd5b600a55565b33610e60611ad2565b6001600160a01b031614610e7357600080fd5b60165447906001600160a01b03166108fc612710610e93846101f46138d0565b610e9d91906138bc565b6040518115909202916000818181858888f19350505050158015610ec5573d6000803e3d6000fd5b506017546001600160a01b03166108fc612710610ee4846101f46138d0565b610eee91906138bc565b6040518115909202916000818181858888f19350505050158015610f16573d6000803e3d6000fd5b506018546001600160a01b03166108fc612710610f35846101f46138d0565b610f3f91906138bc565b6040518115909202916000818181858888f19350505050158015610f67573d6000803e3d6000fd5b506019546001600160a01b03166108fc612710610f86846103e86138d0565b610f9091906138bc565b6040518115909202916000818181858888f19350505050158015610fb8573d6000803e3d6000fd5b50601a546001600160a01b03166108fc612710610fd784611d4c6138d0565b610fe191906138bc565b6040518115909202916000818181858888f19350505050158015611009573d6000803e3d6000fd5b50611012611ad2565b6001600160a01b03166108fc61271061102c8460006138d0565b61103691906138bc565b6040518115909202916000818181858888f1935050505015801561105e573d6000803e3d6000fd5b5050565b3361106b611ad2565b6001600160a01b03161461107e57600080fd5b601180549115156101000261ff0019909216919091179055565b6012546110a3610d0b565b11156110c15760405162461bcd60e51b8152600401610b0d9061310c565b3233146110e05760405162461bcd60e51b8152600401610b0d906131cb565b6110e8611ad2565b6001600160a01b0316336001600160a01b0316146111225760115460ff166111225760405162461bcd60e51b8152600401610b0d90612f9e565b61112a611ad2565b6001600160a01b0316826001600160a01b031614611177576014548161114f846114c6565b61115991906138a4565b11156111775760405162461bcd60e51b8152600401610b0d90613092565b601454336000908152601d60205260409020546111959083906138a4565b11156111b35760405162461bcd60e51b8152600401610b0d906136f8565b601254816111bf610d0b565b6111c991906138a4565b11156111e75760405162461bcd60e51b8152600401610b0d906134a2565b6012546111f2610d0b565b11156112105760405162461bcd60e51b8152600401610b0d90613646565b6013548111156112325760405162461bcd60e51b8152600401610b0d9061346b565b7f00000000000000000000000000000000000000000000000000000000000000008161125d33611e32565b61126791906138a4565b11156112855760405162461bcd60e51b8152600401610b0d906135df565b60115462010000900460ff16156112ae5760405162461bcd60e51b8152600401610b0d90613065565b806009546112bc91906138d0565b3410156112db5760405162461bcd60e51b8152600401610b0d90613673565b336000908152601d6020526040812080548392906112fa9084906138a4565b9091555061105e90508282612394565b610d0083838360405180602001604052806000815250611d60565b6011546301000000900460ff1681565b60606000611342836114c6565b905060008167ffffffffffffffff81111561136d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611396578160200160208202803683370190505b50905060005b828110156113eb576113ae8582610d40565b8282815181106113ce57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806113e3816139ac565b91505061139c565b509392505050565b60006113fd611ad2565b905090565b60125481565b33611411611ad2565b6001600160a01b03161461142457600080fd5b601355565b6000611433610d0b565b82106114515760405162461bcd60e51b8152600401610b0d906130c9565b5090565b3361145e611ad2565b6001600160a01b03161461147157600080fd5b805161105e906010906020840190612a26565b3361148d611ad2565b6001600160a01b0316146114a057600080fd5b600f55565b60115460ff1681565b60006114b9826123ae565b5192915050565b60095481565b60006001600160a01b0382166114ee5760405162461bcd60e51b8152600401610b0d9061325f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61151b612020565b6001600160a01b031661152c611ad2565b6001600160a01b0316146115525760405162461bcd60e51b8152600401610b0d90613327565b61155c60006124c1565b565b33611567611ad2565b6001600160a01b03161461157a57600080fd5b600f54600e54111561159e5760405162461bcd60e51b8152600401610b0d90612f30565b601254600d546115ac610d0b565b6115b691906138a4565b11156115d45760405162461bcd60e51b8152600401610b0d906134a2565b6012546115df610d0b565b11156115fd5760405162461bcd60e51b8152600401610b0d90613646565b600d54600e600082825461161191906138a4565b9250508190555061155c33600d54612394565b3361162d611ad2565b6001600160a01b03161461164057600080fd5b60005b81811015610d0057600083838381811061166d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116829190612b6f565b6001600160a01b031614156116a95760405162461bcd60e51b8152600401610b0d906132f0565b6001601b60008585858181106116cf57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116e49190612b6f565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601c8185858581811061173257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117479190612b6f565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117745760006117cf565b601c600084848481811061179857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117ad9190612b6f565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117da816139ac565b915050611643565b336117eb611ad2565b6001600160a01b0316146117fe57600080fd5b601255565b600c5481565b33611812611ad2565b6001600160a01b03161461182557600080fd5b60125481611831610d0b565b61183b91906138a4565b11156118595760405162461bcd60e51b8152600401610b0d906134a2565b601254611864610d0b565b11156118825760405162461bcd60e51b8152600401610b0d90613646565b61105e8282612394565b601254611897610d0b565b11156118b55760405162461bcd60e51b8152600401610b0d9061310c565b601154610100900460ff166118dc5760405162461bcd60e51b8152600401610b0d9061360f565b336000908152601b602052604090205460ff1661190b5760405162461bcd60e51b8152600401610b0d90612f67565b601254611916610d0b565b106119335760405162461bcd60e51b8152600401610b0d9061377e565b6015548111156119555760405162461bcd60e51b8152600401610b0d90613844565b601554336000908152601c60205260409020546119739083906138a4565b11156119915760405162461bcd60e51b8152600401610b0d906136f8565b80600a5461199f91906138d0565b3410156119be5760405162461bcd60e51b8152600401610b0d90613673565b60115462010000900460ff16156119e75760405162461bcd60e51b8152600401610b0d90613065565b336000908152601c602052604081208054839290611a069084906138a4565b9091555050600b5481611a17610d0b565b611a2191906138a4565b1415611a43576011805461ff00191690556702c68af0bb140000600a55611a6b565b600c5481611a4f610d0b565b611a5991906138a4565b1415611a6b576011805461ff00191690555b611a753382612394565b50565b33611a81611ad2565b6001600160a01b031614611a9457600080fd5b601555565b60115462010000900460ff1681565b60155481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6008546001600160a01b031690565b33611aea611ad2565b6001600160a01b031614611afd57600080fd5b6011805462ff0000191662010000179055565b606060028054610ba690613971565b33611b28611ad2565b6001600160a01b031614611b3b57600080fd5b6011805491151563010000000263ff00000019909216919091179055565b60135481565b601154610100900460ff1681565b611b75612020565b6001600160a01b0316826001600160a01b03161415611ba65760405162461bcd60e51b8152600401610b0d906133e2565b8060066000611bb3612020565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611bf7612020565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2f9190612ed0565b60405180910390a35050565b33611c44611ad2565b6001600160a01b031614611c5757600080fd5b60005b81811015610d00576000838383818110611c8457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c999190612b6f565b6001600160a01b03161415611cc05760405162461bcd60e51b8152600401610b0d906132f0565b6000601b6000858585818110611ce657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611cfb9190612b6f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d2d816139ac565b915050611c5a565b60095490565b600033611d46611ad2565b6001600160a01b031614611d5957600080fd5b5060135490565b611d6b848484612080565b611d7784848484612513565b611d935760405162461bcd60e51b8152600401610b0d90613514565b50505050565b60006113fd610d0b565b6060611dae82612019565b611dca5760405162461bcd60e51b8152600401610b0d90613393565b6000611dd461262f565b90506000815111611df45760405180602001604052806000815250611e1f565b80611dfe8461263e565b604051602001611e0f929190612e0c565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b6000610b9182612759565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611e7a611ad2565b6001600160a01b031614611e8d57600080fd5b601455565b600a5481565b33611ea1611ad2565b6001600160a01b031614611eb457600080fd5b6011805460ff19168215151790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f90611ef2908390612ed0565b60405180910390a150565b60115462010000900460ff1690565b611f14612020565b6001600160a01b0316611f25611ad2565b6001600160a01b031614611f4b5760405162461bcd60e51b8152600401610b0d90613327565b6001600160a01b038116611f715760405162461bcd60e51b8152600401610b0d90612fd5565b611a75816124c1565b33611f83611ad2565b6001600160a01b031614611f9657600080fd5b600955565b33611fa4611ad2565b6001600160a01b031614611fb757600080fd5b600d55565b60006001600160a01b038216611fe45760405162461bcd60e51b8152600401610b0d9061335c565b506001600160a01b03166000908152601d602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061208b826123ae565b9050600081600001516001600160a01b03166120a5612020565b6001600160a01b031614806120da57506120bd612020565b6001600160a01b03166120cf84610c29565b6001600160a01b0316145b806120ee575081516120ee906109f6612020565b90508061210d5760405162461bcd60e51b8152600401610b0d90613419565b846001600160a01b031682600001516001600160a01b0316146121425760405162461bcd60e51b8152600401610b0d906132aa565b6001600160a01b0384166121685760405162461bcd60e51b8152600401610b0d90613135565b6121758585856001611d93565b6121856000848460000151612024565b6001600160a01b03851660009081526004602052604081208054600192906121b79084906001600160801b03166138ef565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261220391859116613882565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556122998460016138a4565b6000818152600360205260409020549091506001600160a01b031661233e576122c181612019565b1561233e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461238c8686866001611d93565b505050505050565b61105e8282604051806020016040528060008152506127ad565b6123b6612aa6565b6123bf82612019565b6123db5760405162461bcd60e51b8152600401610b0d9061301b565b60007f0000000000000000000000000000000000000000000000000000000000000000831061243c5761242e7f000000000000000000000000000000000000000000000000000000000000000084613917565b6124399060016138a4565b90505b825b8181106124a8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612495579250610b31915050565b50806124a08161395a565b91505061243e565b5060405162461bcd60e51b8152600401610b0d9061372f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612527846001600160a01b0316612a20565b1561262357836001600160a01b031663150b7a02612543612020565b8786866040518563ffffffff1660e01b81526004016125659493929190612e4f565b602060405180830381600087803b15801561257f57600080fd5b505af19250505080156125af575060408051601f3d908101601f191682019092526125ac91810190612d66565b60015b612609573d8080156125dd576040519150601f19603f3d011682016040523d82523d6000602084013e6125e2565b606091505b5080516126015760405162461bcd60e51b8152600401610b0d90613514565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612627565b5060015b949350505050565b606060108054610ba690613971565b60608161266357506040805180820190915260018152600360fc1b6020820152610b31565b8160005b811561268d5780612677816139ac565b91506126869050600a836138bc565b9150612667565b60008167ffffffffffffffff8111156126b657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126e0576020820181803683370190505b5090505b8415612627576126f5600183613917565b9150612702600a866139c7565b61270d9060306138a4565b60f81b81838151811061273057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612752600a866138bc565b94506126e4565b60006001600160a01b0382166127815760405162461bcd60e51b8152600401610b0d9061317a565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166127d65760405162461bcd60e51b8152600401610b0d9061359e565b6127df81612019565b156127fc5760405162461bcd60e51b8152600401610b0d90613567565b7f000000000000000000000000000000000000000000000000000000000000000083111561283c5760405162461bcd60e51b8152600401610b0d90613802565b6128496000858386611d93565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906128a5908790613882565b6001600160801b031681526020018583602001516128c39190613882565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612a0e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129d26000888488612513565b6129ee5760405162461bcd60e51b8152600401610b0d90613514565b816129f8816139ac565b9250508080612a06906139ac565b915050612985565b50600081815561238c90878588611d93565b3b151590565b828054612a3290613971565b90600052602060002090601f016020900481019282612a545760008555612a9a565b82601f10612a6d57805160ff1916838001178555612a9a565b82800160010185558215612a9a579182015b82811115612a9a578251825591602001919060010190612a7f565b50611451929150612abd565b604080518082019091526000808252602082015290565b5b808211156114515760008155600101612abe565b600067ffffffffffffffff80841115612aed57612aed613a07565b604051601f8501601f19908116603f01168101908282118183101715612b1557612b15613a07565b81604052809350858152868686011115612b2e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610b3157600080fd5b80358015158114610b3157600080fd5b600060208284031215612b80578081fd5b611e1f82612b48565b60008060408385031215612b9b578081fd5b612ba483612b48565b9150612bb260208401612b48565b90509250929050565b600080600060608486031215612bcf578081fd5b612bd884612b48565b9250612be660208501612b48565b9150604084013590509250925092565b60008060008060808587031215612c0b578081fd5b612c1485612b48565b9350612c2260208601612b48565b925060408501359150606085013567ffffffffffffffff811115612c44578182fd5b8501601f81018713612c54578182fd5b612c6387823560208401612ad2565b91505092959194509250565b60008060408385031215612c81578182fd5b612c8a83612b48565b9150612bb260208401612b5f565b60008060408385031215612caa578182fd5b612cb383612b48565b946020939093013593505050565b60008060208385031215612cd3578182fd5b823567ffffffffffffffff80821115612cea578384fd5b818501915085601f830112612cfd578384fd5b813581811115612d0b578485fd5b8660208083028501011115612d1e578485fd5b60209290920196919550909350505050565b600060208284031215612d41578081fd5b611e1f82612b5f565b600060208284031215612d5b578081fd5b8135611e1f81613a1d565b600060208284031215612d77578081fd5b8151611e1f81613a1d565b600060208284031215612d93578081fd5b813567ffffffffffffffff811115612da9578182fd5b8201601f81018413612db9578182fd5b61262784823560208401612ad2565b600060208284031215612dd9578081fd5b5035919050565b60008151808452612df881602086016020860161392e565b601f01601f19169290920160200192915050565b60008351612e1e81846020880161392e565b835190830190612e3281836020880161392e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e8290830184612de0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ec457835183529284019291840191600101612ea8565b50909695505050505050565b901515815260200190565b600060208252611e1f6020830184612de0565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60006001600160801b03808316818516808303821115612e3257612e326139db565b600082198211156138b7576138b76139db565b500190565b6000826138cb576138cb6139f1565b500490565b60008160001904831182151516156138ea576138ea6139db565b500290565b60006001600160801b038381169083168181101561390f5761390f6139db565b039392505050565b600082821015613929576139296139db565b500390565b60005b83811015613949578181015183820152602001613931565b83811115611d935750506000910152565b600081613969576139696139db565b506000190190565b60028104600182168061398557607f821691505b602082108114156139a657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139c0576139c06139db565b5060010190565b6000826139d6576139d66139f1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7557600080fdfea26469706673582212201ead87255dedb9bec8889f7b1d7d0d4eda4177614b50926ad26fdf70c94f9ea664736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f6e656f6e736b6965732e6d7970696e6174612e636c6f75642f697066732f516d565a6335774b46526873726f6a5438647969485256507963654b473846394455666f484354446d5a355153692f0000000000000000000000
Deployed Bytecode
0x6080604052600436106103cd5760003560e01c80637403fde7116101fd578063ad06d75811610118578063e985e9c5116100ab578063f132dc291161007a578063f132dc2914610a50578063f2fde38b14610a65578063f4a0a52814610a85578063f6c9d9e314610aa5578063f7cb9e5414610ac5576103cd565b8063e985e9c5146109db578063ea6eb836146109fb578063ec7d099114610a1b578063ee1cc94414610a30576103cd565b8063cadf8818116100e7578063cadf88181461097c578063d7224ba014610991578063dc33e681146109a6578063e7b62d96146109c6576103cd565b8063ad06d75814610912578063b88d4fde14610927578063c4e41b2214610947578063c87b56dd1461095c576103cd565b8063932ecebc116101905780639ccb0fea1161015f5780639ccb0fea146108a8578063a22cb465146108bd578063a51312c8146108dd578063a7f93ebd146108fd576103cd565b8063932ecebc1461084957806395d89b411461085e57806398590a39146108735780639a3bf72814610893576103cd565b80637d26f470116101cc5780637d26f470146107f55780637f44ab2f1461080a5780638bc35c2f1461081f5780638da5cb5b14610834576103cd565b80637403fde71461078d57806377b501b9146107a25780637835c635146107c25780637a6685f1146107d5576103cd565b8063431adcb1116102ed5780635b92ac0d11610280578063715018a61161024f578063715018a61461072357806371e3500c146107385780637263cfe21461074d5780637389fbb71461076d576103cd565b80635b92ac0d146106b95780636352211e146106ce5780636817c76c146106ee57806370a0823114610703576103cd565b80634dfea627116102bc5780634dfea627146106395780634f6ccce71461065957806355f804b31461067957806356a87caa14610699576103cd565b8063431adcb1146105cd578063438b6300146105e2578063442890d51461060f5780634d0550de14610624576103cd565b806323b872dd116103655780633ccfd60b116103345780633ccfd60b146105655780633cfac5701461057a57806340c10f191461059a57806342842e0e146105ad576103cd565b806323b872dd146104e55780632c1205f4146105055780632f745c59146105255780633b9ee7e414610545576103cd565b8063095ea7b3116103a1578063095ea7b314610484578063159d2623146104a657806318160ddd146104bb57806321a911f8146104d0576103cd565b806208ffdd146103d257806301ffc9a71461040857806306fdde0314610435578063081812fc14610457575b600080fd5b3480156103de57600080fd5b506103f26103ed366004612b6f565b610ae5565b6040516103ff9190613879565b60405180910390f35b34801561041457600080fd5b50610428610423366004612d4a565b610b36565b6040516103ff9190612ed0565b34801561044157600080fd5b5061044a610b97565b6040516103ff9190612edb565b34801561046357600080fd5b50610477610472366004612dc8565b610c29565b6040516103ff9190612e3b565b34801561049057600080fd5b506104a461049f366004612c98565b610c6c565b005b3480156104b257600080fd5b506103f2610d05565b3480156104c757600080fd5b506103f2610d0b565b3480156104dc57600080fd5b506103f2610d11565b3480156104f157600080fd5b506104a4610500366004612bbb565b610d17565b34801561051157600080fd5b50610428610520366004612b6f565b610d22565b34801561053157600080fd5b506103f2610540366004612c98565b610d40565b34801561055157600080fd5b506104a4610560366004612dc8565b610e36565b34801561057157600080fd5b506104a4610e57565b34801561058657600080fd5b506104a4610595366004612d30565b611062565b6104a46105a8366004612c98565b611098565b3480156105b957600080fd5b506104a46105c8366004612bbb565b61130a565b3480156105d957600080fd5b50610428611325565b3480156105ee57600080fd5b506106026105fd366004612b6f565b611335565b6040516103ff9190612e8c565b34801561061b57600080fd5b506104776113f3565b34801561063057600080fd5b506103f2611402565b34801561064557600080fd5b506104a4610654366004612dc8565b611408565b34801561066557600080fd5b506103f2610674366004612dc8565b611429565b34801561068557600080fd5b506104a4610694366004612d82565b611455565b3480156106a557600080fd5b506104a46106b4366004612dc8565b611484565b3480156106c557600080fd5b506104286114a5565b3480156106da57600080fd5b506104776106e9366004612dc8565b6114ae565b3480156106fa57600080fd5b506103f26114c0565b34801561070f57600080fd5b506103f261071e366004612b6f565b6114c6565b34801561072f57600080fd5b506104a4611513565b34801561074457600080fd5b506104a461155e565b34801561075957600080fd5b506104a4610768366004612cc1565b611624565b34801561077957600080fd5b506104a4610788366004612dc8565b6117e2565b34801561079957600080fd5b506103f2611803565b3480156107ae57600080fd5b506104a46107bd366004612c98565b611809565b6104a46107d0366004612dc8565b61188c565b3480156107e157600080fd5b506104a46107f0366004612dc8565b611a78565b34801561080157600080fd5b50610428611a99565b34801561081657600080fd5b506103f2611aa8565b34801561082b57600080fd5b506103f2611aae565b34801561084057600080fd5b50610477611ad2565b34801561085557600080fd5b506104a4611ae1565b34801561086a57600080fd5b5061044a611b10565b34801561087f57600080fd5b506104a461088e366004612d30565b611b1f565b34801561089f57600080fd5b506103f2611b59565b3480156108b457600080fd5b50610428611b5f565b3480156108c957600080fd5b506104a46108d8366004612c6f565b611b6d565b3480156108e957600080fd5b506104a46108f8366004612cc1565b611c3b565b34801561090957600080fd5b506103f2611d35565b34801561091e57600080fd5b506103f2611d3b565b34801561093357600080fd5b506104a4610942366004612bf6565b611d60565b34801561095357600080fd5b506103f2611d99565b34801561096857600080fd5b5061044a610977366004612dc8565b611da3565b34801561098857600080fd5b506103f2611e26565b34801561099d57600080fd5b506103f2611e2c565b3480156109b257600080fd5b506103f26109c1366004612b6f565b611e32565b3480156109d257600080fd5b506103f2611e3d565b3480156109e757600080fd5b506104286109f6366004612b89565b611e43565b348015610a0757600080fd5b506104a4610a16366004612dc8565b611e71565b348015610a2757600080fd5b506103f2611e92565b348015610a3c57600080fd5b506104a4610a4b366004612d30565b611e98565b348015610a5c57600080fd5b50610428611efd565b348015610a7157600080fd5b506104a4610a80366004612b6f565b611f0c565b348015610a9157600080fd5b506104a4610aa0366004612dc8565b611f7a565b348015610ab157600080fd5b506104a4610ac0366004612dc8565b611f9b565b348015610ad157600080fd5b506103f2610ae0366004612b6f565b611fbc565b60006001600160a01b038216610b165760405162461bcd60e51b8152600401610b0d9061335c565b60405180910390fd5b506001600160a01b0381166000908152601c60205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610b6757506001600160e01b03198216635b5e139f60e01b145b80610b8257506001600160e01b0319821663780e9d6360e01b145b80610b915750610b9182612000565b92915050565b606060018054610ba690613971565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290613971565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3482612019565b610c505760405162461bcd60e51b8152600401610b0d906137b5565b506000908152600560205260409020546001600160a01b031690565b6000610c77826114ae565b9050806001600160a01b0316836001600160a01b03161415610cab5760405162461bcd60e51b8152600401610b0d906134d2565b806001600160a01b0316610cbd612020565b6001600160a01b03161480610cd95750610cd9816109f6612020565b610cf55760405162461bcd60e51b8152600401610b0d90613202565b610d00838383612024565b505050565b600b5481565b60005490565b600a5490565b610d00838383612080565b6001600160a01b03166000908152601b602052604090205460ff1690565b6000610d4b836114c6565b8210610d695760405162461bcd60e51b8152600401610b0d90612eee565b6000610d73610d0b565b905060008060005b83811015610e1d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dce57805192505b876001600160a01b0316836001600160a01b03161415610e0a5786841415610dfc57509350610b9192505050565b83610e06816139ac565b9450505b5080610e15816139ac565b915050610d7b565b5060405162461bcd60e51b8152600401610b0d906136aa565b33610e3f611ad2565b6001600160a01b031614610e5257600080fd5b600a55565b33610e60611ad2565b6001600160a01b031614610e7357600080fd5b60165447906001600160a01b03166108fc612710610e93846101f46138d0565b610e9d91906138bc565b6040518115909202916000818181858888f19350505050158015610ec5573d6000803e3d6000fd5b506017546001600160a01b03166108fc612710610ee4846101f46138d0565b610eee91906138bc565b6040518115909202916000818181858888f19350505050158015610f16573d6000803e3d6000fd5b506018546001600160a01b03166108fc612710610f35846101f46138d0565b610f3f91906138bc565b6040518115909202916000818181858888f19350505050158015610f67573d6000803e3d6000fd5b506019546001600160a01b03166108fc612710610f86846103e86138d0565b610f9091906138bc565b6040518115909202916000818181858888f19350505050158015610fb8573d6000803e3d6000fd5b50601a546001600160a01b03166108fc612710610fd784611d4c6138d0565b610fe191906138bc565b6040518115909202916000818181858888f19350505050158015611009573d6000803e3d6000fd5b50611012611ad2565b6001600160a01b03166108fc61271061102c8460006138d0565b61103691906138bc565b6040518115909202916000818181858888f1935050505015801561105e573d6000803e3d6000fd5b5050565b3361106b611ad2565b6001600160a01b03161461107e57600080fd5b601180549115156101000261ff0019909216919091179055565b6012546110a3610d0b565b11156110c15760405162461bcd60e51b8152600401610b0d9061310c565b3233146110e05760405162461bcd60e51b8152600401610b0d906131cb565b6110e8611ad2565b6001600160a01b0316336001600160a01b0316146111225760115460ff166111225760405162461bcd60e51b8152600401610b0d90612f9e565b61112a611ad2565b6001600160a01b0316826001600160a01b031614611177576014548161114f846114c6565b61115991906138a4565b11156111775760405162461bcd60e51b8152600401610b0d90613092565b601454336000908152601d60205260409020546111959083906138a4565b11156111b35760405162461bcd60e51b8152600401610b0d906136f8565b601254816111bf610d0b565b6111c991906138a4565b11156111e75760405162461bcd60e51b8152600401610b0d906134a2565b6012546111f2610d0b565b11156112105760405162461bcd60e51b8152600401610b0d90613646565b6013548111156112325760405162461bcd60e51b8152600401610b0d9061346b565b7f00000000000000000000000000000000000000000000000000000000000007d08161125d33611e32565b61126791906138a4565b11156112855760405162461bcd60e51b8152600401610b0d906135df565b60115462010000900460ff16156112ae5760405162461bcd60e51b8152600401610b0d90613065565b806009546112bc91906138d0565b3410156112db5760405162461bcd60e51b8152600401610b0d90613673565b336000908152601d6020526040812080548392906112fa9084906138a4565b9091555061105e90508282612394565b610d0083838360405180602001604052806000815250611d60565b6011546301000000900460ff1681565b60606000611342836114c6565b905060008167ffffffffffffffff81111561136d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611396578160200160208202803683370190505b50905060005b828110156113eb576113ae8582610d40565b8282815181106113ce57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806113e3816139ac565b91505061139c565b509392505050565b60006113fd611ad2565b905090565b60125481565b33611411611ad2565b6001600160a01b03161461142457600080fd5b601355565b6000611433610d0b565b82106114515760405162461bcd60e51b8152600401610b0d906130c9565b5090565b3361145e611ad2565b6001600160a01b03161461147157600080fd5b805161105e906010906020840190612a26565b3361148d611ad2565b6001600160a01b0316146114a057600080fd5b600f55565b60115460ff1681565b60006114b9826123ae565b5192915050565b60095481565b60006001600160a01b0382166114ee5760405162461bcd60e51b8152600401610b0d9061325f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61151b612020565b6001600160a01b031661152c611ad2565b6001600160a01b0316146115525760405162461bcd60e51b8152600401610b0d90613327565b61155c60006124c1565b565b33611567611ad2565b6001600160a01b03161461157a57600080fd5b600f54600e54111561159e5760405162461bcd60e51b8152600401610b0d90612f30565b601254600d546115ac610d0b565b6115b691906138a4565b11156115d45760405162461bcd60e51b8152600401610b0d906134a2565b6012546115df610d0b565b11156115fd5760405162461bcd60e51b8152600401610b0d90613646565b600d54600e600082825461161191906138a4565b9250508190555061155c33600d54612394565b3361162d611ad2565b6001600160a01b03161461164057600080fd5b60005b81811015610d0057600083838381811061166d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116829190612b6f565b6001600160a01b031614156116a95760405162461bcd60e51b8152600401610b0d906132f0565b6001601b60008585858181106116cf57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116e49190612b6f565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601c8185858581811061173257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117479190612b6f565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117745760006117cf565b601c600084848481811061179857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117ad9190612b6f565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117da816139ac565b915050611643565b336117eb611ad2565b6001600160a01b0316146117fe57600080fd5b601255565b600c5481565b33611812611ad2565b6001600160a01b03161461182557600080fd5b60125481611831610d0b565b61183b91906138a4565b11156118595760405162461bcd60e51b8152600401610b0d906134a2565b601254611864610d0b565b11156118825760405162461bcd60e51b8152600401610b0d90613646565b61105e8282612394565b601254611897610d0b565b11156118b55760405162461bcd60e51b8152600401610b0d9061310c565b601154610100900460ff166118dc5760405162461bcd60e51b8152600401610b0d9061360f565b336000908152601b602052604090205460ff1661190b5760405162461bcd60e51b8152600401610b0d90612f67565b601254611916610d0b565b106119335760405162461bcd60e51b8152600401610b0d9061377e565b6015548111156119555760405162461bcd60e51b8152600401610b0d90613844565b601554336000908152601c60205260409020546119739083906138a4565b11156119915760405162461bcd60e51b8152600401610b0d906136f8565b80600a5461199f91906138d0565b3410156119be5760405162461bcd60e51b8152600401610b0d90613673565b60115462010000900460ff16156119e75760405162461bcd60e51b8152600401610b0d90613065565b336000908152601c602052604081208054839290611a069084906138a4565b9091555050600b5481611a17610d0b565b611a2191906138a4565b1415611a43576011805461ff00191690556702c68af0bb140000600a55611a6b565b600c5481611a4f610d0b565b611a5991906138a4565b1415611a6b576011805461ff00191690555b611a753382612394565b50565b33611a81611ad2565b6001600160a01b031614611a9457600080fd5b601555565b60115462010000900460ff1681565b60155481565b7f00000000000000000000000000000000000000000000000000000000000007d081565b6008546001600160a01b031690565b33611aea611ad2565b6001600160a01b031614611afd57600080fd5b6011805462ff0000191662010000179055565b606060028054610ba690613971565b33611b28611ad2565b6001600160a01b031614611b3b57600080fd5b6011805491151563010000000263ff00000019909216919091179055565b60135481565b601154610100900460ff1681565b611b75612020565b6001600160a01b0316826001600160a01b03161415611ba65760405162461bcd60e51b8152600401610b0d906133e2565b8060066000611bb3612020565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611bf7612020565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2f9190612ed0565b60405180910390a35050565b33611c44611ad2565b6001600160a01b031614611c5757600080fd5b60005b81811015610d00576000838383818110611c8457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611c999190612b6f565b6001600160a01b03161415611cc05760405162461bcd60e51b8152600401610b0d906132f0565b6000601b6000858585818110611ce657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611cfb9190612b6f565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d2d816139ac565b915050611c5a565b60095490565b600033611d46611ad2565b6001600160a01b031614611d5957600080fd5b5060135490565b611d6b848484612080565b611d7784848484612513565b611d935760405162461bcd60e51b8152600401610b0d90613514565b50505050565b60006113fd610d0b565b6060611dae82612019565b611dca5760405162461bcd60e51b8152600401610b0d90613393565b6000611dd461262f565b90506000815111611df45760405180602001604052806000815250611e1f565b80611dfe8461263e565b604051602001611e0f929190612e0c565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b6000610b9182612759565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611e7a611ad2565b6001600160a01b031614611e8d57600080fd5b601455565b600a5481565b33611ea1611ad2565b6001600160a01b031614611eb457600080fd5b6011805460ff19168215151790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f90611ef2908390612ed0565b60405180910390a150565b60115462010000900460ff1690565b611f14612020565b6001600160a01b0316611f25611ad2565b6001600160a01b031614611f4b5760405162461bcd60e51b8152600401610b0d90613327565b6001600160a01b038116611f715760405162461bcd60e51b8152600401610b0d90612fd5565b611a75816124c1565b33611f83611ad2565b6001600160a01b031614611f9657600080fd5b600955565b33611fa4611ad2565b6001600160a01b031614611fb757600080fd5b600d55565b60006001600160a01b038216611fe45760405162461bcd60e51b8152600401610b0d9061335c565b506001600160a01b03166000908152601d602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061208b826123ae565b9050600081600001516001600160a01b03166120a5612020565b6001600160a01b031614806120da57506120bd612020565b6001600160a01b03166120cf84610c29565b6001600160a01b0316145b806120ee575081516120ee906109f6612020565b90508061210d5760405162461bcd60e51b8152600401610b0d90613419565b846001600160a01b031682600001516001600160a01b0316146121425760405162461bcd60e51b8152600401610b0d906132aa565b6001600160a01b0384166121685760405162461bcd60e51b8152600401610b0d90613135565b6121758585856001611d93565b6121856000848460000151612024565b6001600160a01b03851660009081526004602052604081208054600192906121b79084906001600160801b03166138ef565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261220391859116613882565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556122998460016138a4565b6000818152600360205260409020549091506001600160a01b031661233e576122c181612019565b1561233e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461238c8686866001611d93565b505050505050565b61105e8282604051806020016040528060008152506127ad565b6123b6612aa6565b6123bf82612019565b6123db5760405162461bcd60e51b8152600401610b0d9061301b565b60007f00000000000000000000000000000000000000000000000000000000000007d0831061243c5761242e7f00000000000000000000000000000000000000000000000000000000000007d084613917565b6124399060016138a4565b90505b825b8181106124a8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612495579250610b31915050565b50806124a08161395a565b91505061243e565b5060405162461bcd60e51b8152600401610b0d9061372f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612527846001600160a01b0316612a20565b1561262357836001600160a01b031663150b7a02612543612020565b8786866040518563ffffffff1660e01b81526004016125659493929190612e4f565b602060405180830381600087803b15801561257f57600080fd5b505af19250505080156125af575060408051601f3d908101601f191682019092526125ac91810190612d66565b60015b612609573d8080156125dd576040519150601f19603f3d011682016040523d82523d6000602084013e6125e2565b606091505b5080516126015760405162461bcd60e51b8152600401610b0d90613514565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612627565b5060015b949350505050565b606060108054610ba690613971565b60608161266357506040805180820190915260018152600360fc1b6020820152610b31565b8160005b811561268d5780612677816139ac565b91506126869050600a836138bc565b9150612667565b60008167ffffffffffffffff8111156126b657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126e0576020820181803683370190505b5090505b8415612627576126f5600183613917565b9150612702600a866139c7565b61270d9060306138a4565b60f81b81838151811061273057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612752600a866138bc565b94506126e4565b60006001600160a01b0382166127815760405162461bcd60e51b8152600401610b0d9061317a565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166127d65760405162461bcd60e51b8152600401610b0d9061359e565b6127df81612019565b156127fc5760405162461bcd60e51b8152600401610b0d90613567565b7f00000000000000000000000000000000000000000000000000000000000007d083111561283c5760405162461bcd60e51b8152600401610b0d90613802565b6128496000858386611d93565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906128a5908790613882565b6001600160801b031681526020018583602001516128c39190613882565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612a0e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46129d26000888488612513565b6129ee5760405162461bcd60e51b8152600401610b0d90613514565b816129f8816139ac565b9250508080612a06906139ac565b915050612985565b50600081815561238c90878588611d93565b3b151590565b828054612a3290613971565b90600052602060002090601f016020900481019282612a545760008555612a9a565b82601f10612a6d57805160ff1916838001178555612a9a565b82800160010185558215612a9a579182015b82811115612a9a578251825591602001919060010190612a7f565b50611451929150612abd565b604080518082019091526000808252602082015290565b5b808211156114515760008155600101612abe565b600067ffffffffffffffff80841115612aed57612aed613a07565b604051601f8501601f19908116603f01168101908282118183101715612b1557612b15613a07565b81604052809350858152868686011115612b2e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610b3157600080fd5b80358015158114610b3157600080fd5b600060208284031215612b80578081fd5b611e1f82612b48565b60008060408385031215612b9b578081fd5b612ba483612b48565b9150612bb260208401612b48565b90509250929050565b600080600060608486031215612bcf578081fd5b612bd884612b48565b9250612be660208501612b48565b9150604084013590509250925092565b60008060008060808587031215612c0b578081fd5b612c1485612b48565b9350612c2260208601612b48565b925060408501359150606085013567ffffffffffffffff811115612c44578182fd5b8501601f81018713612c54578182fd5b612c6387823560208401612ad2565b91505092959194509250565b60008060408385031215612c81578182fd5b612c8a83612b48565b9150612bb260208401612b5f565b60008060408385031215612caa578182fd5b612cb383612b48565b946020939093013593505050565b60008060208385031215612cd3578182fd5b823567ffffffffffffffff80821115612cea578384fd5b818501915085601f830112612cfd578384fd5b813581811115612d0b578485fd5b8660208083028501011115612d1e578485fd5b60209290920196919550909350505050565b600060208284031215612d41578081fd5b611e1f82612b5f565b600060208284031215612d5b578081fd5b8135611e1f81613a1d565b600060208284031215612d77578081fd5b8151611e1f81613a1d565b600060208284031215612d93578081fd5b813567ffffffffffffffff811115612da9578182fd5b8201601f81018413612db9578182fd5b61262784823560208401612ad2565b600060208284031215612dd9578081fd5b5035919050565b60008151808452612df881602086016020860161392e565b601f01601f19169290920160200192915050565b60008351612e1e81846020880161392e565b835190830190612e3281836020880161392e565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e8290830184612de0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ec457835183529284019291840191600101612ea8565b50909695505050505050565b901515815260200190565b600060208252611e1f6020830184612de0565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b90815260200190565b60006001600160801b03808316818516808303821115612e3257612e326139db565b600082198211156138b7576138b76139db565b500190565b6000826138cb576138cb6139f1565b500490565b60008160001904831182151516156138ea576138ea6139db565b500290565b60006001600160801b038381169083168181101561390f5761390f6139db565b039392505050565b600082821015613929576139296139db565b500390565b60005b83811015613949578181015183820152602001613931565b83811115611d935750506000910152565b600081613969576139696139db565b506000190190565b60028104600182168061398557607f821691505b602082108114156139a657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139c0576139c06139db565b5060010190565b6000826139d6576139d66139f1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a7557600080fdfea26469706673582212201ead87255dedb9bec8889f7b1d7d0d4eda4177614b50926ad26fdf70c94f9ea664736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f6e656f6e736b6965732e6d7970696e6174612e636c6f75642f697066732f516d565a6335774b46526873726f6a5438647969485256507963654b473846394455666f484354446d5a355153692f0000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://neonskies.mypinata.cloud/ipfs/QmVZc5wKFRhsrojT8dyiHRVPyceKG8F9DUfoHCTDmZ5QSi/
Arg [1] : maxBatchSize_ (uint256): 2000
Arg [2] : collectionSize_ (uint256): 2000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [4] : 68747470733a2f2f6e656f6e736b6965732e6d7970696e6174612e636c6f7564
Arg [5] : 2f697066732f516d565a6335774b46526873726f6a5438647969485256507963
Arg [6] : 654b473846394455666f484354446d5a355153692f0000000000000000000000
Deployed Bytecode Sourcemap
166:8810:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3696:184;;;;;;;;;;-1:-1:-1;3696:184:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5490:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6533:369::-;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;304:39:10;;;;;;;;;;;;;:::i;2432:92:3:-;;;;;;;;;;;;;:::i;4786:97:10:-;;;;;;;;;;;;;:::i;7773:136:3:-;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;3325:105:10:-;;;;;;;;;;-1:-1:-1;3325:105:10;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;4356:103:10:-;;;;;;;;;;-1:-1:-1;4356:103:10;;;;;:::i;:::-;;:::i;8529:445::-;;;;;;;;;;;;;:::i;2632:136::-;;;;;;;;;;-1:-1:-1;2632:136:10;;;;;:::i;:::-;;:::i;6151:1034::-;;;;;;:::i;:::-;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;657:30:10:-;;;;;;;;;;;;;:::i;8219:306::-;;;;;;;;;;-1:-1:-1;8219:306:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5280:83::-;;;;;;;;;;;;;:::i;692:39::-;;;;;;;;;;;;;:::i;2133:122::-;;;;;;;;;;-1:-1:-1;2133:122:10;;;;;:::i;:::-;;:::i;2588:174:3:-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;4463:99:10:-;;;;;;;;;;-1:-1:-1;4463:99:10;;;;;:::i;:::-;;:::i;4169:90::-;;;;;;;;;;-1:-1:-1;4169:90:10;;;;;:::i;:::-;;:::i;535:32::-;;;;;;;;;;;;;:::i;5320:116:3:-;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;213:37:10:-;;;;;;;;;;;;;:::i;4235:208:3:-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1598:92:9:-;;;;;;;;;;;;;:::i;5477:372:10:-;;;;;;;;;;;;;:::i;2988:333::-;;;;;;;;;;-1:-1:-1;2988:333:10;;;;;:::i;:::-;;:::i;2510:118::-;;;;;;;;;;-1:-1:-1;2510:118:10;;;;;:::i;:::-;;:::i;347:40::-;;;;;;;;;;;;;:::i;5853:294::-;;;;;;;;;;-1:-1:-1;5853:294:10;;;;;:::i;:::-;;:::i;7189:917::-;;;;;;:::i;:::-;;:::i;2876:108::-;;;;;;;;;;-1:-1:-1;2876:108:10;;;;;:::i;:::-;;:::i;614:39::-;;;;;;;;;;;;;:::i;841:35::-;;;;;;;;;;;;;:::i;880:48::-;;;;;;;;;;;;;:::i;966:85:9:-;;;;;;;;;;;;;:::i;4991:95:10:-;;;;;;;;;;;;;:::i;5638:96:3:-;;;;;;;;;;;;;:::i;2772:100:10:-;;;;;;;;;;-1:-1:-1;2772:100:10;;;;;:::i;:::-;;:::i;735:50::-;;;;;;;;;;;;;:::i;571:39::-;;;;;;;;;;;;;:::i;7214:269:3:-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;3434:258:10:-;;;;;;;;;;-1:-1:-1;3434:258:10;;;;;:::i;:::-;;:::i;4699:83::-;;;;;;;;;;;;;:::i;4566:129::-;;;;;;;;;;;;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;5187:89:10:-;;;;;;;;;;;;;:::i;5792:377:3:-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;789:48:10:-;;;;;;;;;;;;;:::i;12446:43:3:-;;;;;;;;;;;;;:::i;8110:105:10:-;;;;;;;;;;-1:-1:-1;8110:105:10;;;;;:::i;:::-;;:::i;5090:93::-;;;;;;;;;;;;;:::i;7541:178:3:-;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;;:::i;2259:129:10:-;;;;;;;;;;-1:-1:-1;2259:129:10;;;;;:::i;:::-;;:::i;254:45::-;;;;;;;;;;;;;:::i;2392:114::-;;;;;;;;;;-1:-1:-1;2392:114:10;;;;;:::i;:::-;;:::i;4887:100::-;;;;;;;;;;;;;:::i;1839:189:9:-;;;;;;;;;;-1:-1:-1;1839:189:9;;;;;:::i;:::-;;:::i;4263:89:10:-;;;;;;;;;;-1:-1:-1;4263:89:10;;;;;:::i;:::-;;:::i;4072:93::-;;;;;;;;;;-1:-1:-1;4072:93:10;;;;;:::i;:::-;;:::i;3884:184::-;;;;;;;;;;-1:-1:-1;3884:184:10;;;;;:::i;:::-;;:::i;3696:::-;3762:7;-1:-1:-1;;;;;3784:19:10;;3776:62;;;;-1:-1:-1;;;3776:62:10;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;3851:24:10;;;;;;:17;:24;;;;;;3696:184;;;;:::o;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;;4143:36;4167:11;4143:23;:36::i;:::-;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;7046;:16::i;:::-;7038:74;;;;-1:-1:-1;;;7038:74:3;;;;;;;:::i;:::-;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;;;;;;:::i;:::-;6743:5;-1:-1:-1;;;;;6727:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6727:21:3;;:62;;;;6752:37;6769:5;6776:12;:10;:12::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;;;;;;:::i;:::-;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6533:369;;;:::o;304:39:10:-;;;;:::o;2432:92:3:-;2485:7;2507:12;2432:92;:::o;4786:97:10:-;4862:16;;4786:97;:::o;7773:136:3:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;3325:105:10:-;-1:-1:-1;;;;;3409:16:10;3390:4;3409:16;;;:10;:16;;;;;;;;;3325:105::o;3046:721:3:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;;;;;;:::i;:::-;3245:22;3270:13;:11;:13::i;:::-;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;;3706:56;;-1:-1:-1;;;3706:56:3;;;;;;;:::i;4356:103:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;4429:16:::1;:25:::0;4356:103::o;8529:445::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;8629:13:::1;::::0;8594:21:::1;::::0;-1:-1:-1;;;;;8629:13:10::1;8621:54;8669:5;8653:13;8594:21:::0;8663:3:::1;8653:13;:::i;:::-;:21;;;;:::i;:::-;8621:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8689:13:10::1;::::0;-1:-1:-1;;;;;8689:13:10::1;8681:54;8729:5;8713:13;:7:::0;8723:3:::1;8713:13;:::i;:::-;:21;;;;:::i;:::-;8681:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8749:13:10::1;::::0;-1:-1:-1;;;;;8749:13:10::1;8741:54;8789:5;8773:13;:7:::0;8783:3:::1;8773:13;:::i;:::-;:21;;;;:::i;:::-;8741:54;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8809:13:10::1;::::0;-1:-1:-1;;;;;8809:13:10::1;8801:55;8850:5;8833:14;:7:::0;8843:4:::1;8833:14;:::i;:::-;:22;;;;:::i;:::-;8801:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8870:13:10::1;::::0;-1:-1:-1;;;;;8870:13:10::1;8862:55;8911:5;8894:14;:7:::0;8904:4:::1;8894:14;:::i;:::-;:22;;;;:::i;:::-;8862:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;8931:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;8923:25:10::1;:46;8963:5;8949:11;:7:::0;8959:1:::1;8949:11;:::i;:::-;:19;;;;:::i;:::-;8923:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2011:1;8529:445::o:0;2632:136::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2721:19:::1;:42:::0;;;::::1;;;;-1:-1:-1::0;;2721:42:10;;::::1;::::0;;;::::1;::::0;;2632:136::o;6151:1034::-;1890:17;;1873:13;:11;:13::i;:::-;:34;;1865:62;;;;-1:-1:-1;;;1865:62:10;;;;;;;:::i;:::-;2059:9:::1;2072:10;2059:23;2051:66;;;;-1:-1:-1::0;;;2051:66:10::1;;;;;;;:::i;:::-;6257:7:::2;:5;:7::i;:::-;-1:-1:-1::0;;;;;6243:21:10::2;:10;-1:-1:-1::0;;;;;6243:21:10::2;;6239:96;;6282:12;::::0;::::2;;6274:54;;;;-1:-1:-1::0;;;6274:54:10::2;;;;;;;:::i;:::-;6351:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;6344:14:10::2;:3;-1:-1:-1::0;;;;;6344:14:10::2;;6341:127;;6403:29;;6393:6;6376:14;6386:3;6376:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;6368:93;;;;-1:-1:-1::0;;;6368:93:10::2;;;;;;;:::i;:::-;6525:29;::::0;6501:10:::2;6482:30;::::0;;;:18:::2;:30;::::0;;;;;:39:::2;::::0;6515:6;;6482:39:::2;:::i;:::-;:72;;6474:113;;;;-1:-1:-1::0;;;6474:113:10::2;;;;;;;:::i;:::-;6627:17;;6617:6;6601:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6593:78;;;;-1:-1:-1::0;;;6593:78:10::2;;;;;;;:::i;:::-;6702:17;;6685:13;:11;:13::i;:::-;:34;;6677:66;;;;-1:-1:-1::0;;;6677:66:10::2;;;;;;;:::i;:::-;6774:31;;6764:6;:41;;6749:102;;;;-1:-1:-1::0;;;6749:102:10::2;;;;;;;:::i;:::-;6909:23;6899:6;6872:24;6885:10;6872:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;6857:113;;;;-1:-1:-1::0;;;6857:113:10::2;;;;;;;:::i;:::-;6985:19;::::0;;;::::2;;;6984:20;6976:52;;;;-1:-1:-1::0;;;6976:52:10::2;;;;;;;:::i;:::-;7067:6;7055:9;;:18;;;;:::i;:::-;7042:9;:31;;7034:71;;;;-1:-1:-1::0;;;7034:71:10::2;;;;;;;:::i;:::-;7131:10;7112:30;::::0;;;:18:::2;:30;::::0;;;;:40;;7146:6;;7112:30;:40:::2;::::0;7146:6;;7112:40:::2;:::i;:::-;::::0;;;-1:-1:-1;7158:22:10::2;::::0;-1:-1:-1;7168:3:10;7173:6;7158:9:::2;:22::i;7967:151:3:-:0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;657:30:10:-;;;;;;;;;:::o;8219:306::-;8280:16;8304:15;8322:17;8332:6;8322:9;:17::i;:::-;8304:35;;8345:25;8387:10;8373:25;;;;;;-1:-1:-1;;;8373:25:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8373:25:10;;8345:53;;8409:6;8405:95;8425:10;8421:1;:14;8405:95;;;8463:30;8483:6;8491:1;8463:19;:30::i;:::-;8449:8;8458:1;8449:11;;;;;;-1:-1:-1;;;8449:11:10;;;;;;;;;;;;;;;;;;:44;8437:3;;;;:::i;:::-;;;;8405:95;;;-1:-1:-1;8512:8:10;8219:306;-1:-1:-1;;;8219:306:10:o;5280:83::-;5329:7;5351;:5;:7::i;:::-;5344:14;;5280:83;:::o;692:39::-;;;;:::o;2133:122::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2210:31:::1;:40:::0;2133:122::o;2588:174:3:-;2655:7;2686:13;:11;:13::i;:::-;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;;;;;;:::i;:::-;-1:-1:-1;2752:5:3;2588:174::o;4463:99:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;4534:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;4169:90::-:0;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;4233:15:::1;:21:::0;4169:90::o;535:32::-;;;;;;:::o;5320:116:3:-;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;213:37:10:-;;;;:::o;4235:208:3:-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1598:92:9:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:9;;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;5477:372:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;5552:15:::1;;5535:13;;:32;;5527:72;;;;-1:-1:-1::0;;;5527:72:10::1;;;;;;;:::i;:::-;5647:17;;5629:14;;5613:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:51;;5605:86;;;;-1:-1:-1::0;;;5605:86:10::1;;;;;;;:::i;:::-;5722:17;;5705:13;:11;:13::i;:::-;:34;;5697:66;;;;-1:-1:-1::0;;;5697:66:10::1;;;;;;;:::i;:::-;5787:14;;5770:13;;:31;;;;;;;:::i;:::-;;;;;;;;5807:37;5817:10;5829:14;;5807:9;:37::i;2988:333::-:0;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;3077:9:::1;3072:245;3092:20:::0;;::::1;3072:245;;;3159:1;3135:9:::0;;3145:1;3135:12;;::::1;;;-1:-1:-1::0;;;3135:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3135:26:10::1;;;3127:63;;;;-1:-1:-1::0;;;3127:63:10::1;;;;;;;:::i;:::-;3225:4;3198:10;:24;3209:9;;3219:1;3209:12;;;;;-1:-1:-1::0;;;3209:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3198:24:10::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3198:24:10;;;:31;;-1:-1:-1;;3198:31:10::1;::::0;::::1;;::::0;;;::::1;::::0;;;3237:17:::1;-1:-1:-1::0;3255:9:10;;3265:1;3255:12;;::::1;;;-1:-1:-1::0;;;3255:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3237:31:10::1;-1:-1:-1::0;;;;;3237:31:10::1;;;;;;;;;;;;;:35;:73;;3309:1;3237:73;;;3275:17;:31;3293:9;;3303:1;3293:12;;;;;-1:-1:-1::0;;;3293:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3275:31:10::1;-1:-1:-1::0;;;;;3275:31:10::1;;;;;;;;;;;;;3237:73;-1:-1:-1::0;3114:3:10;::::1;::::0;::::1;:::i;:::-;;;;3072:245;;2510:118:::0;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2590:17:::1;:33:::0;2510:118::o;347:40::-;;;;:::o;5853:294::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;5986:17:::1;;5976:6;5960:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;5952:78;;;;-1:-1:-1::0;;;5952:78:10::1;;;;;;;:::i;:::-;6061:17;;6044:13;:11;:13::i;:::-;:34;;6036:66;;;;-1:-1:-1::0;;;6036:66:10::1;;;;;;;:::i;:::-;6109:33;6119:14;6135:6;6109:9;:33::i;7189:917::-:0;1890:17;;1873:13;:11;:13::i;:::-;:34;;1865:62;;;;-1:-1:-1;;;1865:62:10;;;;;;;:::i;:::-;7266:19:::1;::::0;::::1;::::0;::::1;;;7258:59;;;;-1:-1:-1::0;;;7258:59:10::1;;;;;;;:::i;:::-;7342:10;7331:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;7323:64;;;;-1:-1:-1::0;;;7323:64:10::1;;;;;;;:::i;:::-;7417:17;;7401:13;:11;:13::i;:::-;:33;7393:73;;;;-1:-1:-1::0;;;7393:73:10::1;;;;;;;:::i;:::-;7490:16;;7480:6;:26;;7472:71;;;;-1:-1:-1::0;;;7472:71:10::1;;;;;;;:::i;:::-;7599:16;::::0;7575:10:::1;7557:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;7589:6;;7557:38:::1;:::i;:::-;:58;;7549:99;;;;-1:-1:-1::0;;;7549:99:10::1;;;;;;;:::i;:::-;7694:6;7675:16;;:25;;;;:::i;:::-;7662:9;:38;;7654:78;;;;-1:-1:-1::0;;;7654:78:10::1;;;;;;;:::i;:::-;7747:19;::::0;;;::::1;;;7746:20;7738:52;;;;-1:-1:-1::0;;;7738:52:10::1;;;;;;;:::i;:::-;7814:10;7796:29;::::0;;;:17:::1;:29;::::0;;;;:39;;7829:6;;7796:29;:39:::1;::::0;7829:6;;7796:39:::1;:::i;:::-;::::0;;;-1:-1:-1;;7871:18:10::1;::::0;7861:6;7845:13:::1;:11;:13::i;:::-;:22;;;;:::i;:::-;:44;7842:224;;;7899:19;:27:::0;;-1:-1:-1;;7899:27:10::1;::::0;;7953:9:::1;7934:16;:28:::0;7842:224:::1;;;8004:18;;7994:6;7978:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:44;7975:91;;;8032:19;:27:::0;;-1:-1:-1;;8032:27:10::1;::::0;;7975:91:::1;8072:29;8082:10;8094:6;8072:9;:29::i;:::-;7189:917:::0;:::o;2876:108::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2953:16:::1;:26:::0;2876:108::o;614:39::-;;;;;;;;;:::o;841:35::-;;;;:::o;880:48::-;;;:::o;966:85:9:-;1038:6;;-1:-1:-1;;;;;1038:6:9;966:85;:::o;4991:95:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;5055:19:::1;:26:::0;;-1:-1:-1;;5055:26:10::1;::::0;::::1;::::0;;4991:95::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;2772:100:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2843:10:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2843:24:10;;::::1;::::0;;;::::1;::::0;;2772:100::o;735:50::-;;;;:::o;571:39::-;;;;;;;;;:::o;7214:269:3:-;7316:12;:10;:12::i;:::-;-1:-1:-1;;;;;7304:24:3;:8;-1:-1:-1;;;;;7304:24:3;;;7296:63;;;;-1:-1:-1;;;7296:63:3;;;;;;;:::i;:::-;7411:8;7366:18;:32;7385:12;:10;:12::i;:::-;-1:-1:-1;;;;;7366:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;7366:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;;7445:12;:10;:12::i;:::-;-1:-1:-1;;;;;7430:48:3;;7469:8;7430:48;;;;;;:::i;:::-;;;;;;;;7214:269;;:::o;3434:258:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;3528:9:::1;3523:165;3543:20:::0;;::::1;3523:165;;;3610:1;3586:9:::0;;3596:1;3586:12;;::::1;;;-1:-1:-1::0;;;3586:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3586:26:10::1;;;3578:63;;;;-1:-1:-1::0;;;3578:63:10::1;;;;;;;:::i;:::-;3676:5;3649:10;:24;3660:9;;3670:1;3660:12;;;;;-1:-1:-1::0;;;3660:12:10::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3649:24:10::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3649:24:10;:32;;-1:-1:-1;;3649:32:10::1;::::0;::::1;;::::0;;;::::1;::::0;;3565:3;::::1;::::0;::::1;:::i;:::-;;;;3523:165;;4699:83:::0;4768:9;;4699:83;:::o;4566:129::-;4637:7;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;-1:-1:-1;4659:31:10::1;::::0;4566:129;:::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;:::-;8176:300;;;;:::o;5187:89:10:-;5236:7;5258:13;:11;:13::i;5792:377:3:-;5885:13;5923:16;5931:7;5923;:16::i;:::-;5908:94;;;;-1:-1:-1;;;5908:94:3;;;;;;;:::i;:::-;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;789:48:10:-;;;;:::o;12446:43:3:-;;;;:::o;8110:105:10:-;8168:7;8190:20;8204:5;8190:13;:20::i;5090:93::-;5164:14;;5090:93;:::o;7541:178:3:-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178::o;2259:129:10:-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2345:29:::1;:38:::0;2259:129::o;254:45::-;;;;:::o;2392:114::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;2453:12:::1;:18:::0;;-1:-1:-1;;2453:18:10::1;::::0;::::1;;;::::0;;2482:19:::1;::::0;::::1;::::0;::::1;::::0;2453:18;;2482:19:::1;:::i;:::-;;;;;;;;2392:114:::0;:::o;4887:100::-;4963:19;;;;;;;;4887:100::o;1839:189:9:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1178:23:9;;1170:68;;;;-1:-1:-1;;;1170:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:9;::::1;1919:73;;;;-1:-1:-1::0;;;1919:73:9::1;;;;;;;:::i;:::-;2002:19;2012:8;2002:9;:19::i;4263:89:10:-:0;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;4329:9:::1;:18:::0;4263:89::o;4072:93::-;1994:10;1983:7;:5;:7::i;:::-;-1:-1:-1;;;;;1983:21:10;;1975:30;;;;;;4140:14:::1;:20:::0;4072:93::o;3884:184::-;3949:7;-1:-1:-1;;;;;3971:19:10;;3963:62;;;;-1:-1:-1;;;3963:62:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4038:25:10;;;;;:18;:25;;;;;;;3884:184::o;763:155:2:-;-1:-1:-1;;;;;;871:40:2;;-1:-1:-1;;;871:40:2;763:155;;;:::o;8706:103:3:-;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103::o;587:96:1:-;666:10;587:96;:::o;12277:165:3:-;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10786:58;;10851:22;10893:13;:18;;;-1:-1:-1;;;;;10877:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10877:34:3;;:80;;;;10945:12;:10;:12::i;:::-;-1:-1:-1;;;;;10921:36:3;:20;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;11004:12;:10;:12::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;;;;;;:::i;:::-;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;;;;;;:::i;:::-;11304:43;11326:4;11332:2;11336:7;11345:1;11304:21;:43::i;:::-;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;;11578:15;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;11529:66:3;;;;-1:-1:-1;;;;;;11529:66:3;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;11919:7;:20::i;:::-;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;11978:94;;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;-1:-1:-1;;;;11951:121:3;-1:-1:-1;;;11951:121:3;;;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;12152:4;12158:2;12162:7;12171:1;12131:20;:42::i;:::-;10694:1484;;;;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;4758:21;;:::i;:::-;4797:16;4805:7;4797;:16::i;:::-;4789:71;;;;-1:-1:-1;;;4789:71:3;;;;;;;:::i;:::-;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;;;;;;;;;;5132:28;5128:69;;5179:9;-1:-1:-1;5172:16:3;;-1:-1:-1;;5172:16:3;5128:69;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;;5209:57;;-1:-1:-1;;;5209:57:3;;;;;;;:::i;2034:169:9:-;2108:6;;;-1:-1:-1;;;;;2124:17:9;;;-1:-1:-1;;;;;;2124:17:9;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2034:169;;:::o;13947:667:3:-;14079:4;14095:15;:2;-1:-1:-1;;;;;14095:13:3;;:15::i;:::-;14091:519;;;14148:2;-1:-1:-1;;;;;14132:36:3;;14169:12;:10;:12::i;:::-;14183:4;14189:7;14198:5;14132:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;5367:106:10:-;5427:13;5455;5448:20;;;;;:::i;275:703:11:-;331:13;548:10;544:51;;-1:-1:-1;574:10:11;;;;;;;;;;;;-1:-1:-1;;;574:10:11;;;;;;544:51;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:11;;-1:-1:-1;720:2:11;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;-1:-1:-1;;;764:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:11;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:11;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;-1:-1:-1;;;849:14:11;;;;;;;;;;;;:56;-1:-1:-1;;;;;849:56:11;;;;;;;;-1:-1:-1;919:11:11;928:2;919:11;;:::i;:::-;;;791:150;;4447:234:3;4508:7;-1:-1:-1;;;;;4538:19:3;;4523:99;;;;-1:-1:-1;;;4523:99:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4643:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:3;;-1:-1:-1;;;;;4643:32:3;;4447:234::o;9235:1239::-;9335:20;9358:12;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;;;;;;:::i;:::-;9573:21;9581:12;9573:7;:21::i;:::-;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;;;;;;:::i;:::-;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;;;;;;:::i;:::-;9712:61;9742:1;9746:2;9750:12;9764:8;9712:21;:61::i;:::-;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;-1:-1:-1;;;9835:135:3;;;;-1:-1:-1;;9835:135:3;;;;;;;;;;;;;;;;;10004:43;;;;;;;;;;;10030:15;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;9976:71:3;;;;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;;10442:2;10446:12;10460:8;10409:20;:60::i;718:377:0:-;1034:20;1080:8;;;718:377::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:12;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:12;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:12;;761:42;;751:2;;817:1;814;807:12;832:162;899:20;;955:13;;948:21;938:32;;928:2;;984:1;981;974:12;999:198;;1111:2;1099:9;1090:7;1086:23;1082:32;1079:2;;;1132:6;1124;1117:22;1079:2;1160:31;1181:9;1160:31;:::i;1202:274::-;;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1352:6;1344;1337:22;1299:2;1380:31;1401:9;1380:31;:::i;:::-;1370:41;;1430:40;1466:2;1455:9;1451:18;1430:40;:::i;:::-;1420:50;;1289:187;;;;;:::o;1481:342::-;;;;1627:2;1615:9;1606:7;1602:23;1598:32;1595:2;;;1648:6;1640;1633:22;1595:2;1676:31;1697:9;1676:31;:::i;:::-;1666:41;;1726:40;1762:2;1751:9;1747:18;1726:40;:::i;:::-;1716:50;;1813:2;1802:9;1798:18;1785:32;1775:42;;1585:238;;;;;:::o;1828:702::-;;;;;2000:3;1988:9;1979:7;1975:23;1971:33;1968:2;;;2022:6;2014;2007:22;1968:2;2050:31;2071:9;2050:31;:::i;:::-;2040:41;;2100:40;2136:2;2125:9;2121:18;2100:40;:::i;:::-;2090:50;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:2;;;2306:6;2298;2291:22;2255:2;2334:22;;2387:4;2379:13;;2375:27;-1:-1:-1;2365:2:12;;2421:6;2413;2406:22;2365:2;2449:75;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2449:75;:::i;:::-;2439:85;;;1958:572;;;;;;;:::o;2535:268::-;;;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;2682:6;2674;2667:22;2629:2;2710:31;2731:9;2710:31;:::i;:::-;2700:41;;2760:37;2793:2;2782:9;2778:18;2760:37;:::i;2808:266::-;;;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2958:6;2950;2943:22;2905:2;2986:31;3007:9;2986:31;:::i;:::-;2976:41;3064:2;3049:18;;;;3036:32;;-1:-1:-1;;;2895:179:12:o;3079:666::-;;;3226:2;3214:9;3205:7;3201:23;3197:32;3194:2;;;3247:6;3239;3232:22;3194:2;3292:9;3279:23;3321:18;3362:2;3354:6;3351:14;3348:2;;;3383:6;3375;3368:22;3348:2;3426:6;3415:9;3411:22;3401:32;;3471:7;3464:4;3460:2;3456:13;3452:27;3442:2;;3498:6;3490;3483:22;3442:2;3543;3530:16;3569:2;3561:6;3558:14;3555:2;;;3590:6;3582;3575:22;3555:2;3649:7;3644:2;3638;3630:6;3626:15;3622:2;3618:24;3614:33;3611:46;3608:2;;;3675:6;3667;3660:22;3608:2;3711;3703:11;;;;;3733:6;;-1:-1:-1;3184:561:12;;-1:-1:-1;;;;3184:561:12:o;3750:192::-;;3859:2;3847:9;3838:7;3834:23;3830:32;3827:2;;;3880:6;3872;3865:22;3827:2;3908:28;3926:9;3908:28;:::i;3947:257::-;;4058:2;4046:9;4037:7;4033:23;4029:32;4026:2;;;4079:6;4071;4064:22;4026:2;4123:9;4110:23;4142:32;4168:5;4142:32;:::i;4209:261::-;;4331:2;4319:9;4310:7;4306:23;4302:32;4299:2;;;4352:6;4344;4337:22;4299:2;4389:9;4383:16;4408:32;4434:5;4408:32;:::i;4475:482::-;;4597:2;4585:9;4576:7;4572:23;4568:32;4565:2;;;4618:6;4610;4603:22;4565:2;4663:9;4650:23;4696:18;4688:6;4685:30;4682:2;;;4733:6;4725;4718:22;4682:2;4761:22;;4814:4;4806:13;;4802:27;-1:-1:-1;4792:2:12;;4848:6;4840;4833:22;4792:2;4876:75;4943:7;4938:2;4925:16;4920:2;4916;4912:11;4876:75;:::i;4962:190::-;;5074:2;5062:9;5053:7;5049:23;5045:32;5042:2;;;5095:6;5087;5080:22;5042:2;-1:-1:-1;5123:23:12;;5032:120;-1:-1:-1;5032:120:12:o;5157:259::-;;5238:5;5232:12;5265:6;5260:3;5253:19;5281:63;5337:6;5330:4;5325:3;5321:14;5314:4;5307:5;5303:16;5281:63;:::i;:::-;5398:2;5377:15;-1:-1:-1;;5373:29:12;5364:39;;;;5405:4;5360:50;;5208:208;-1:-1:-1;;5208:208:12:o;5421:470::-;;5638:6;5632:13;5654:53;5700:6;5695:3;5688:4;5680:6;5676:17;5654:53;:::i;:::-;5770:13;;5729:16;;;;5792:57;5770:13;5729:16;5826:4;5814:17;;5792:57;:::i;:::-;5865:20;;5608:283;-1:-1:-1;;;;5608:283:12:o;5896:203::-;-1:-1:-1;;;;;6060:32:12;;;;6042:51;;6030:2;6015:18;;5997:102::o;6104:490::-;-1:-1:-1;;;;;6373:15:12;;;6355:34;;6425:15;;6420:2;6405:18;;6398:43;6472:2;6457:18;;6450:34;;;6520:3;6515:2;6500:18;;6493:31;;;6104:490;;6541:47;;6568:19;;6560:6;6541:47;:::i;:::-;6533:55;6307:287;-1:-1:-1;;;;;;6307:287:12:o;6599:635::-;6770:2;6822:21;;;6892:13;;6795:18;;;6914:22;;;6599:635;;6770:2;6993:15;;;;6967:2;6952:18;;;6599:635;7039:169;7053:6;7050:1;7047:13;7039:169;;;7114:13;;7102:26;;7183:15;;;;7148:12;;;;7075:1;7068:9;7039:169;;;-1:-1:-1;7225:3:12;;6750:484;-1:-1:-1;;;;;;6750:484:12:o;7239:187::-;7404:14;;7397:22;7379:41;;7367:2;7352:18;;7334:92::o;7431:221::-;;7580:2;7569:9;7562:21;7600:46;7642:2;7631:9;7627:18;7619:6;7600:46;:::i;7657:398::-;7859:2;7841:21;;;7898:2;7878:18;;;7871:30;7937:34;7932:2;7917:18;;7910:62;-1:-1:-1;;;8003:2:12;7988:18;;7981:32;8045:3;8030:19;;7831:224::o;8060:351::-;8262:2;8244:21;;;8301:2;8281:18;;;8274:30;8340:29;8335:2;8320:18;;8313:57;8402:2;8387:18;;8234:177::o;8416:353::-;8618:2;8600:21;;;8657:2;8637:18;;;8630:30;8696:31;8691:2;8676:18;;8669:59;8760:2;8745:18;;8590:179::o;8774:353::-;8976:2;8958:21;;;9015:2;8995:18;;;8988:30;9054:31;9049:2;9034:18;;9027:59;9118:2;9103:18;;8948:179::o;9132:402::-;9334:2;9316:21;;;9373:2;9353:18;;;9346:30;9412:34;9407:2;9392:18;;9385:62;-1:-1:-1;;;9478:2:12;9463:18;;9456:36;9524:3;9509:19;;9306:228::o;9539:406::-;9741:2;9723:21;;;9780:2;9760:18;;;9753:30;9819:34;9814:2;9799:18;;9792:62;-1:-1:-1;;;9885:2:12;9870:18;;9863:40;9935:3;9920:19;;9713:232::o;9950:343::-;10152:2;10134:21;;;10191:2;10171:18;;;10164:30;-1:-1:-1;;;10225:2:12;10210:18;;10203:49;10284:2;10269:18;;10124:169::o;10298:348::-;10500:2;10482:21;;;10539:2;10519:18;;;10512:30;10578:26;10573:2;10558:18;;10551:54;10637:2;10622:18;;10472:174::o;10651:399::-;10853:2;10835:21;;;10892:2;10872:18;;;10865:30;10931:34;10926:2;10911:18;;10904:62;-1:-1:-1;;;10997:2:12;10982:18;;10975:33;11040:3;11025:19;;10825:225::o;11055:339::-;11257:2;11239:21;;;11296:2;11276:18;;;11269:30;-1:-1:-1;;;11330:2:12;11315:18;;11308:45;11385:2;11370:18;;11229:165::o;11399:401::-;11601:2;11583:21;;;11640:2;11620:18;;;11613:30;11679:34;11674:2;11659:18;;11652:62;-1:-1:-1;;;11745:2:12;11730:18;;11723:35;11790:3;11775:19;;11573:227::o;11805:413::-;12007:2;11989:21;;;12046:2;12026:18;;;12019:30;12085:34;12080:2;12065:18;;12058:62;-1:-1:-1;;;12151:2:12;12136:18;;12129:47;12208:3;12193:19;;11979:239::o;12223:354::-;12425:2;12407:21;;;12464:2;12444:18;;;12437:30;12503:32;12498:2;12483:18;;12476:60;12568:2;12553:18;;12397:180::o;12582:421::-;12784:2;12766:21;;;12823:2;12803:18;;;12796:30;12862:34;12857:2;12842:18;;12835:62;12933:27;12928:2;12913:18;;12906:55;12993:3;12978:19;;12756:247::o;13008:407::-;13210:2;13192:21;;;13249:2;13229:18;;;13222:30;13288:34;13283:2;13268:18;;13261:62;-1:-1:-1;;;13354:2:12;13339:18;;13332:41;13405:3;13390:19;;13182:233::o;13420:402::-;13622:2;13604:21;;;13661:2;13641:18;;;13634:30;13700:34;13695:2;13680:18;;13673:62;-1:-1:-1;;;13766:2:12;13751:18;;13744:36;13812:3;13797:19;;13594:228::o;13827:348::-;14029:2;14011:21;;;14068:2;14048:18;;;14041:30;14107:26;14102:2;14087:18;;14080:54;14166:2;14151:18;;14001:174::o;14180:356::-;14382:2;14364:21;;;14401:18;;;14394:30;14460:34;14455:2;14440:18;;14433:62;14527:2;14512:18;;14354:182::o;14541:354::-;14743:2;14725:21;;;14782:2;14762:18;;;14755:30;14821:32;14816:2;14801:18;;14794:60;14886:2;14871:18;;14715:180::o;14900:411::-;15102:2;15084:21;;;15141:2;15121:18;;;15114:30;15180:34;15175:2;15160:18;;15153:62;-1:-1:-1;;;15246:2:12;15231:18;;15224:45;15301:3;15286:19;;15074:237::o;15316:350::-;15518:2;15500:21;;;15557:2;15537:18;;;15530:30;15596:28;15591:2;15576:18;;15569:56;15657:2;15642:18;;15490:176::o;15671:414::-;15873:2;15855:21;;;15912:2;15892:18;;;15885:30;15951:34;15946:2;15931:18;;15924:62;-1:-1:-1;;;16017:2:12;16002:18;;15995:48;16075:3;16060:19;;15845:240::o;16090:354::-;16292:2;16274:21;;;16331:2;16311:18;;;16304:30;16370:32;16365:2;16350:18;;16343:60;16435:2;16420:18;;16264:180::o;16449:346::-;16651:2;16633:21;;;16690:2;16670:18;;;16663:30;-1:-1:-1;;;16724:2:12;16709:18;;16702:52;16786:2;16771:18;;16623:172::o;16800:398::-;17002:2;16984:21;;;17041:2;17021:18;;;17014:30;17080:34;17075:2;17060:18;;17053:62;-1:-1:-1;;;17146:2:12;17131:18;;17124:32;17188:3;17173:19;;16974:224::o;17203:415::-;17405:2;17387:21;;;17444:2;17424:18;;;17417:30;17483:34;17478:2;17463:18;;17456:62;-1:-1:-1;;;17549:2:12;17534:18;;17527:49;17608:3;17593:19;;17377:241::o;17623:353::-;17825:2;17807:21;;;17864:2;17844:18;;;17837:30;17903:31;17898:2;17883:18;;17876:59;17967:2;17952:18;;17797:179::o;17981:397::-;18183:2;18165:21;;;18222:2;18202:18;;;18195:30;18261:34;18256:2;18241:18;;18234:62;-1:-1:-1;;;18327:2:12;18312:18;;18305:31;18368:3;18353:19;;18155:223::o;18383:346::-;18585:2;18567:21;;;18624:2;18604:18;;;18597:30;-1:-1:-1;;;18658:2:12;18643:18;;18636:52;18720:2;18705:18;;18557:172::o;18734:351::-;18936:2;18918:21;;;18975:2;18955:18;;;18948:30;19014:29;19009:2;18994:18;;18987:57;19076:2;19061:18;;18908:177::o;19090:343::-;19292:2;19274:21;;;19331:2;19311:18;;;19304:30;-1:-1:-1;;;19365:2:12;19350:18;;19343:49;19424:2;19409:18;;19264:169::o;19438:351::-;19640:2;19622:21;;;19679:2;19659:18;;;19652:30;19718:29;19713:2;19698:18;;19691:57;19780:2;19765:18;;19612:177::o;19794:410::-;19996:2;19978:21;;;20035:2;20015:18;;;20008:30;20074:34;20069:2;20054:18;;20047:62;-1:-1:-1;;;20140:2:12;20125:18;;20118:44;20194:3;20179:19;;19968:236::o;20209:352::-;20411:2;20393:21;;;20450:2;20430:18;;;20423:30;20489;20484:2;20469:18;;20462:58;20552:2;20537:18;;20383:178::o;20566:411::-;20768:2;20750:21;;;20807:2;20787:18;;;20780:30;20846:34;20841:2;20826:18;;20819:62;-1:-1:-1;;;20912:2:12;20897:18;;20890:45;20967:3;20952:19;;20740:237::o;20982:351::-;21184:2;21166:21;;;21223:2;21203:18;;;21196:30;21262:29;21257:2;21242:18;;21235:57;21324:2;21309:18;;21156:177::o;21338:409::-;21540:2;21522:21;;;21579:2;21559:18;;;21552:30;21618:34;21613:2;21598:18;;21591:62;-1:-1:-1;;;21684:2:12;21669:18;;21662:43;21737:3;21722:19;;21512:235::o;21752:398::-;21954:2;21936:21;;;21993:2;21973:18;;;21966:30;22032:34;22027:2;22012:18;;22005:62;-1:-1:-1;;;22098:2:12;22083:18;;22076:32;22140:3;22125:19;;21926:224::o;22155:356::-;22357:2;22339:21;;;22376:18;;;22369:30;22435:34;22430:2;22415:18;;22408:62;22502:2;22487:18;;22329:182::o;22516:177::-;22662:25;;;22650:2;22635:18;;22617:76::o;22698:253::-;;-1:-1:-1;;;;;22827:2:12;22824:1;22820:10;22857:2;22854:1;22850:10;22888:3;22884:2;22880:12;22875:3;22872:21;22869:2;;;22896:18;;:::i;22956:128::-;;23027:1;23023:6;23020:1;23017:13;23014:2;;;23033:18;;:::i;:::-;-1:-1:-1;23069:9:12;;23004:80::o;23089:120::-;;23155:1;23145:2;;23160:18;;:::i;:::-;-1:-1:-1;23194:9:12;;23135:74::o;23214:168::-;;23320:1;23316;23312:6;23308:14;23305:1;23302:21;23297:1;23290:9;23283:17;23279:45;23276:2;;;23327:18;;:::i;:::-;-1:-1:-1;23367:9:12;;23266:116::o;23387:246::-;;-1:-1:-1;;;;;23540:10:12;;;;23510;;23562:12;;;23559:2;;;23577:18;;:::i;:::-;23614:13;;23436:197;-1:-1:-1;;;23436:197:12:o;23638:125::-;;23706:1;23703;23700:8;23697:2;;;23711:18;;:::i;:::-;-1:-1:-1;23748:9:12;;23687:76::o;23768:258::-;23840:1;23850:113;23864:6;23861:1;23858:13;23850:113;;;23940:11;;;23934:18;23921:11;;;23914:39;23886:2;23879:10;23850:113;;;23981:6;23978:1;23975:13;23972:2;;;-1:-1:-1;;24016:1:12;23998:16;;23991:27;23821:205::o;24031:136::-;;24098:5;24088:2;;24107:18;;:::i;:::-;-1:-1:-1;;;24143:18:12;;24078:89::o;24172:380::-;24257:1;24247:12;;24304:1;24294:12;;;24315:2;;24369:4;24361:6;24357:17;24347:27;;24315:2;24422;24414:6;24411:14;24391:18;24388:38;24385:2;;;24468:10;24463:3;24459:20;24456:1;24449:31;24503:4;24500:1;24493:15;24531:4;24528:1;24521:15;24385:2;;24227:325;;;:::o;24557:135::-;;-1:-1:-1;;24617:17:12;;24614:2;;;24637:18;;:::i;:::-;-1:-1:-1;24684:1:12;24673:13;;24604:88::o;24697:112::-;;24755:1;24745:2;;24760:18;;:::i;:::-;-1:-1:-1;24794:9:12;;24735:74::o;24814:127::-;24875:10;24870:3;24866:20;24863:1;24856:31;24906:4;24903:1;24896:15;24930:4;24927:1;24920:15;24946:127;25007:10;25002:3;24998:20;24995:1;24988:31;25038:4;25035:1;25028:15;25062:4;25059:1;25052:15;25078:127;25139:10;25134:3;25130:20;25127:1;25120:31;25170:4;25167:1;25160:15;25194:4;25191:1;25184:15;25210:133;-1:-1:-1;;;;;;25286:32:12;;25276:43;;25266:2;;25333:1;25330;25323:12
Swarm Source
ipfs://1ead87255dedb9bec8889f7b1d7d0d4eda4177614b50926ad26fdf70c94f9ea6
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.