Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,500 AlienVerse
Holders
189
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AlienVerseLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlienVerse
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 10000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./tokens/NFT721/ERC721ARoyalties.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; contract AlienVerse is ERC721ARoyalties, EIP712, ReentrancyGuard { using Strings for uint256; string private constant version = "1"; address public cfo = address(0xBF7eFb268A82F3b9AFCFF31b919B24fD1DFAE032); address private _validator; uint256 public auctionStartTime; mapping(address => uint256) public auctionMintsByAddress; uint256 public auctionMinted; uint256 public lastAuctionPrice; uint256 public constant WL_QTY_PER_ADDRESS = 1; uint256 public constant AUCTION_MAX_MINT = 1000; uint256 public constant AUCTION_MAX_MINT_BY_ADDRESS = 30; uint256 public constant AUCTION_START_PRICE = 0.25 ether; uint256 public constant AUCTION_END_PRICE = 0.01 ether; uint256 public constant AUCTION_TIME = 60 * 24 minutes; uint256 public constant AUCTION_DROP_INTERVAL = 60 minutes; uint256 public constant AUCTION_DROP_PER_STEP = (AUCTION_START_PRICE - AUCTION_END_PRICE) / (AUCTION_TIME / AUCTION_DROP_INTERVAL); mapping(address => uint256) public whiteMintsByAddress; uint256 public whiteMintStart; uint256 public whiteMintEnd; mapping(string => bool) public minted_code; bytes32 private constant WHITELIST_MINT_TYPEHASH = keccak256( "whiteListMint(address to,string code)" ); error InvalidSign(); constructor( string memory name, string memory symbol, uint256 maxSupply, string memory baseUri, uint256 maxBatchSize, RoyaltyInfo memory royaltyInfo, address validator, uint256 auctionStartTime_, uint256 whiteMintStart_, uint256 whiteMintEnd_ ) ERC721ARoyalties(name, symbol, maxSupply, baseUri, maxBatchSize, royaltyInfo) EIP712(name, version) { _validator = validator; auctionStartTime = auctionStartTime_; whiteMintStart = whiteMintStart_; whiteMintEnd = whiteMintEnd_; } function getWhiteMintPrice() public view returns (uint256) { if (lastAuctionPrice >= 0.01 ether) { return lastAuctionPrice * 7 / 10; } else { return AUCTION_START_PRICE * 7 / 10; } } function getAuctionPrice() public view returns (uint256) { uint256 _auctionStartTime = auctionStartTime;//For gas saving if (block.timestamp < _auctionStartTime) { return AUCTION_START_PRICE; } else if (block.timestamp - _auctionStartTime >= AUCTION_TIME) { return AUCTION_END_PRICE; } else { uint256 steps = (block.timestamp - _auctionStartTime) / AUCTION_DROP_INTERVAL; return AUCTION_START_PRICE - (steps * AUCTION_DROP_PER_STEP); } } function auctionMint(uint256 quantity, address to) external payable nonReentrant { uint256 _auctionStartTime = auctionStartTime;//For gas saving require( _auctionStartTime == 0 || (block.timestamp <= _auctionStartTime + AUCTION_TIME && block.timestamp >= _auctionStartTime), "auction has not started or has ended" ); uint256 _auctionMinted = auctionMinted + quantity; require( _auctionMinted <= AUCTION_MAX_MINT, "not enough remaining reserved" ); auctionMinted = _auctionMinted; uint256 minted = auctionMintsByAddress[to] + quantity; require( minted <= AUCTION_MAX_MINT_BY_ADDRESS, "reach max mints per address"); auctionMintsByAddress[to] = minted; uint256 auctionPrice = getAuctionPrice(); uint256 totalCost = auctionPrice * quantity; require(msg.value >= totalCost, "Need to send more ETH."); mintTo(to, quantity); payable(cfo).transfer(totalCost); // refund if (msg.value > totalCost) { payable(to).transfer(msg.value - totalCost); } lastAuctionPrice = auctionPrice; } function verifySignature( address to, string memory code, bytes calldata signature ) public view returns (address) { bytes32 digest = _hashTypedDataV4( keccak256( abi.encode( WHITELIST_MINT_TYPEHASH, to, keccak256(bytes(code)) ) ) ); if (ECDSA.recover(digest, signature) != _validator) { revert InvalidSign(); } return _validator; } function whiteListMint(string memory code, address to, bytes calldata signature) public payable { require( whiteMintStart == 0 || block.timestamp >= whiteMintStart, "sale has not started yet" ); require( whiteMintEnd == 0 || block.timestamp <= whiteMintEnd, "sale has end" ); require(minted_code[code] == false, "mint code has been used"); minted_code[code] = true; uint256 totalCost = getWhiteMintPrice() * WL_QTY_PER_ADDRESS; require(msg.value == totalCost, "Need to check ETH value."); payable(cfo).transfer(totalCost); verifySignature(to, code, signature); mintTo(to, WL_QTY_PER_ADDRESS); } function setValidator(address validator) public onlyOwner { _validator = validator; } function setAuctionStartTime(uint256 auctionStartTime_) public onlyOwner { auctionStartTime = auctionStartTime_; } function setWhiteMintStart(uint256 whiteMintStart_) public onlyOwner { whiteMintStart = whiteMintStart_; } function setWhiteMintEnd(uint256 whiteMintEnd_) public onlyOwner { whiteMintEnd = whiteMintEnd_; } function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function setCFO(address _cfo) public onlyOwner { cfo = _cfo; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) 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); /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; // EIP-712 is Final as of 2022-08-11. This file is deprecated. import "./EIP712.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSA.sol"; import "../ShortStrings.sol"; import "../../interfaces/IERC5267.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; import "./StorageSlot.sol"; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(_FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import './IERC2981Royalties.sol'; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 abstract contract ERC2981Base is ERC165, IERC2981Royalties { /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC2981Royalties).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // https://github.com/dievardump/EIP2981-implementation/blob/main/contracts/ERC2981PerTokenRoyalties.sol pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./ERC2981Base.sol"; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 abstract contract ERC2981PerTokenRoyalties is ERC2981Base { uint256 public constant percentBase = 1e4; RoyaltyInfo _royaltyInfo; /// @dev Sets token royalties /// @param royaltyInfo.recipient recipient of the royalties /// @param royaltyInfo.royalAmount percentage (using 4 decimals - 10000 = 100, 0 = 0) function _setTokenRoyalty(RoyaltyInfo memory royaltyInfo) internal { //percentBase = 1e4, so 1e4 : 100% Percent require( royaltyInfo.royalAmount <= percentBase, "ERC2981Royalties: Too high" ); _royaltyInfo = royaltyInfo; } function royaltyInfo( uint256 tokenId, uint256 value ) external view override returns (address recipient, uint256 royaltyAmount) { return ( _royaltyInfo.recipient, (_royaltyInfo.royalAmount * value) / percentBase ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title IERC2981Royalties /// @dev Interface for the ERC2981 - Token Royalty standard interface IERC2981Royalties { struct RoyaltyInfo { address recipient; uint256 royalAmount; } function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view returns ( address receiver, uint256 royaltyAmount ); }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/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..). * * 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 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. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @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(totalSupply). 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: * * - `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 > currentIndex - 1) { endIndex = currentIndex - 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; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "../ERC721A.sol"; import "../ERC2981/ERC2981PerTokenRoyalties.sol"; contract ERC721ARoyalties is Context, ERC721A, Ownable, ERC2981PerTokenRoyalties { uint256 public immutable _maxSupply; string private _baseUri; /** @dev @param _maxSupply, if maxSupply==0; means unlimited */ constructor( string memory name, string memory symbol, uint256 maxSupply, string memory baseUri, uint256 maxBatchSize, RoyaltyInfo memory royaltyInfo ) ERC721A(name, symbol, maxBatchSize) ERC2981PerTokenRoyalties() { //if maxSupply==0; means unlimited _maxSupply = maxSupply; _baseUri = baseUri; _setTokenRoyalty(royaltyInfo); } function mintTo(address to, uint256 quantity) internal { require( _maxSupply == 0 || totalSupply() + quantity <= _maxSupply, "Mint count exceed MAX_SUPPLY!" ); _safeMint(to, quantity, ""); } function _baseURI() internal view override returns (string memory) { return _baseUri; } function setBaseURI(string memory newBaseUri) public onlyOwner { _baseUri = newBaseUri; } function getBaseURI() public view returns (string memory) { return _baseURI(); } function setTokenRoyalty( address recipient, uint256 royaltyAmount ) external onlyOwner { RoyaltyInfo memory royaltyInfo_ = RoyaltyInfo(recipient, royaltyAmount); _setTokenRoyalty(royaltyInfo_); } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721A, ERC2981Base) returns (bool) { return super.supportsInterface(interfaceId); } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 10000000, "details": { "peephole": true, "inliner": true, "jumpdestRemover": true, "orderLiterals": true, "deduplicate": true, "cse": true, "constantOptimizer": true, "yulDetails": { "stackAllocation": true } } }, "metadata": { "bytecodeHash": "none" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"maxBatchSize","type":"uint256"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royalAmount","type":"uint256"}],"internalType":"struct IERC2981Royalties.RoyaltyInfo","name":"royaltyInfo","type":"tuple"},{"internalType":"address","name":"validator","type":"address"},{"internalType":"uint256","name":"auctionStartTime_","type":"uint256"},{"internalType":"uint256","name":"whiteMintStart_","type":"uint256"},{"internalType":"uint256","name":"whiteMintEnd_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"InvalidSign","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AUCTION_DROP_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_DROP_PER_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_END_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_MAX_MINT_BY_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_START_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AUCTION_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_QTY_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","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":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"auctionMintsByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cfo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteMintPrice","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":"lastAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"minted_code","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"percentBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionStartTime_","type":"uint256"}],"name":"setAuctionStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cfo","type":"address"}],"name":"setCFO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"validator","type":"address"}],"name":"setValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"whiteMintEnd_","type":"uint256"}],"name":"setWhiteMintEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"whiteMintStart_","type":"uint256"}],"name":"setWhiteMintStart","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":"to","type":"address"},{"internalType":"string","name":"code","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verifySignature","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"code","type":"string"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteMintEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteMintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteMintsByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101a0806040523462000846576200552c80380380916200002182856200084b565b8339810190808203906101608212620008465780516001600160401b0381116200084657836200005391830162000894565b60208201519092906001600160401b0381116200084657846200007891840162000894565b6040830151606084015190959193916001600160401b0382116200084657620000a391830162000894565b946040608083015193609f190112620008465760408051959086016001600160401b038111878210176200048e57604052620000e260a08401620008ef565b865260c08301516020870152620000fc60e08401620008ef565b95610100978885015193610140610120870151960151966040519860408a018a811060018060401b038211176200048e5760405260018a52603160f81b60208b01526000805560006007558115620007f15785516001600160401b0381116200048e57600154600181811c91168015620007e6575b6020821014620005f557601f811162000791575b50806020601f821160011462000718576000916200070c575b508160011b916000199060031b1c1916176001555b8051906001600160401b0382116200048e5760025490600182811c9216801562000701575b6020831014620005f55781601f849311620006a0575b50602090601f8311600114620006225760009262000616575b50508160011b916000199060031b1c1916176002555b60805260088054336001600160a01b0319821681179092556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360a0528051906001600160401b0382116200048e57600b5490600182811c921680156200060b575b6020831014620005f55781601f84931162000580575b50602090601f8311600114620004f557600092620004e9575b50508160011b916000199060031b1c191617600b555b612710602082015111620004a4578051600980546001600160a01b0319166001600160a01b039290921691909117905560200151600a55620003128162000904565b61016052620003218562000aac565b61018052602081519101209384610120526020815191012080610140524660e052604051947f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020870152604086015260608501524660808501523060a085015260a084528360c081011060018060401b0360c0860111176200048e5760c0948585016040528451602086012086523087526001600e5573bf7efb268a82f3b9afcff31b919b24fd1dfae03260018060a01b0319600f541617600f5560018060a01b031660018060a01b031960105416176010556011556016556017556148e8928362000c048484013960805183830181816135de0152818161431101526145f1015260a0518383018181610b38015281816142a3015261458501528251838301612f92015260e05183830161304d015251828201612f63015261012051828201612fe1015261014051828201613007015261016051828201611a42015261018051828201611a6b015201f35b634e487b7160e01b600052604160045260246000fd5b60405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606490fd5b015190503880620002ba565b600b60009081527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db99350601f198516905b8181106200056757509084600195949392106200054d575b505050811b01600b55620002d0565b015160001960f88460031b161c191690553880806200053e565b9293602060018192878601518155019501930162000526565b600b6000529091507f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f840160051c81019160208510620005ea575b90601f859493920160051c01905b818110620005da5750620002a1565b60008155849350600101620005cb565b9091508190620005bd565b634e487b7160e01b600052602260045260246000fd5b91607f16916200028b565b01519050388062000207565b600260009081529350600080516020620054ec83398151915291905b601f198416851062000684576001945083601f198116106200066a575b505050811b016002556200021d565b015160001960f88460031b161c191690553880806200065b565b818101518355602094850194600190930192909101906200063e565b6002600052909150600080516020620054ec833981519152601f840160051c810160208510620006f9575b90849392915b601f830160051c82018110620006e9575050620001ee565b60008155859450600101620006d1565b5080620006cb565b91607f1691620001d8565b9050870151386200019e565b6001600090815292506000805160206200550c833981519152905b601f198316841062000778576001935082601f198116106200075e575b5050811b01600155620001b3565b89015160001960f88460031b161c19169055388062000750565b8981015182556020938401936001909201910162000733565b60016000526000805160206200550c833981519152601f830160051c810160208410620007de575b601f830160051c82018110620007d157505062000185565b60008155600101620007b9565b5080620007b9565b90607f169062000171565b60405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608490fd5b600080fd5b601f909101601f19168101906001600160401b038211908210176200048e57604052565b60005b838110620008835750506000910152565b818101518382015260200162000872565b81601f82011215620008465780516001600160401b0381116200048e5760405192620008cb601f8301601f1916602001856200084b565b818452602082840101116200084657620008ec91602080850191016200086f565b90565b51906001600160a01b03821682036200084657565b805160209081811015620009825750601f8251116200094057808251920151908083106200093157501790565b82600019910360031b1b161790565b604490620009749260405193849263305a27a960e01b8452806004850152825192839182602487015286860191016200086f565b601f01601f19168101030190fd5b906001600160401b0382116200048e57600c54926001938481811c9116801562000aa1575b83821014620005f557601f811162000a67575b5081601f8411600114620009fb5750928293918392600094620009ef575b50501b916000199060031b1c191617600c5560ff90565b015192503880620009d8565b919083601f198116600c60005284600020946000905b8883831062000a4c575050501062000a32575b505050811b01600c5560ff90565b015160001960f88460031b161c1916905538808062000a24565b85870151885590960195948501948793509081019062000a11565b600c60005284601f84600020920160051c820191601f860160051c015b82811062000a94575050620009ba565b6000815501859062000a84565b90607f1690620009a7565b80516020908181101562000ad95750601f8251116200094057808251920151908083106200093157501790565b906001600160401b0382116200048e57600d54926001938481811c9116801562000bf8575b83821014620005f557601f811162000bbe575b5081601f841160011462000b52575092829391839260009462000b46575b50501b916000199060031b1c191617600d5560ff90565b01519250388062000b2f565b919083601f198116600d60005284600020946000905b8883831062000ba3575050501062000b89575b505050811b01600d5560ff90565b015160001960f88460031b161c1916905538808062000b7b565b85870151885590960195948501948793509081019062000b68565b600d60005284601f84600020920160051c820191601f860160051c015b82811062000beb57505062000b11565b6000815501859062000bdb565b90607f169062000afe56fe6080604052600436101561001257600080fd5b60003560e01c806301ffc9a71461037257806303c4eff51461036d57806306fdde0314610368578063081812fc1461036357806308a740361461035e578063095ea7b3146103595780630c0e39b5146103545780630ef0723c1461034f5780630f137b5b1461034a5780631327d3d81461034557806318160ddd146103405780631ed203471461033b57806322f4596f1461033657806323b872dd146103315780632a55205a1461032c5780632afc26de146103275780632f745c591461032257806342842e0e1461031d5780634bd25c6f146103185780634e0a3379146103135780634f6ccce71461030e578063511045e014610309578063533dcca41461030457806355f804b3146102ff57806359f369fe146102875780635cae01d3146102fa5780636069a246146102f55780636296ca2f146102f05780636352211e146102eb57806364d66320146102e65780636d94b4ed146102e157806370a08231146102dc578063714c5398146102d7578063715018a6146102d257806376a0e498146102cd5780637a18c1fe146102c85780637a1c4a56146102c357806384b0196e146102be57806386cf4498146102b957806389d08cf2146102b45780638c4ec5da146102af5780638da5cb5b146102aa57806395d89b41146102a557806398b33aa3146102a0578063a22cb4651461029b578063ab0982f014610296578063b88d4fde14610291578063c87b56dd1461028c578063caf8a6d114610287578063d7224ba014610282578063e592301a1461027d578063e985e9c514610278578063eb54f9ec146102735763f2fde38b1461026e57600080fd5b6123d9565b61239d565b61230f565b6122d3565b612297565b611423565b612073565b611feb565b611fc5565b611e2b565b611d06565b611c41565b611bef565b611bb3565b611b7a565b611b3b565b611a09565b6119c8565b61198c565b611927565b611888565b61182b565b6117ea565b6117af565b611773565b611718565b6116d9565b61149e565b611463565b611289565b6111c2565b611036565b610dbd565b610d3a565b610d01565b610cc6565b610c79565b610c3a565b610bd2565b610bbb565b610b02565b610ab0565b610a74565b6109f1565b6109b6565b610951565b610915565b6107a7565b610727565b6106cd565b6105ae565b6104fa565b6103a6565b7fffffffff000000000000000000000000000000000000000000000000000000008116036103a157565b600080fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760207fffffffff0000000000000000000000000000000000000000000000000000000060043561040481610377565b167f2a55205a00000000000000000000000000000000000000000000000000000000811490811561043b575b506040519015158152f35b7f80ac58cd000000000000000000000000000000000000000000000000000000008114915081156104d0575b81156104a6575b811561047c575b5038610430565b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501438610475565b7f780e9d63000000000000000000000000000000000000000000000000000000008114915061046e565b7f5b5e139f0000000000000000000000000000000000000000000000000000000081149150610467565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051601e8152f35b60005b8381106105475750506000910152565b8181015183820152602001610537565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361059381518092818752878088019101610534565b0116010190565b9060206105ab928181520190610557565b90565b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca57604051908060018054916105f18361258d565b808652928281169081156106825750600114610628575b6106248561061881870382610f2c565b6040519182918261059a565b0390f35b92508083527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82841061066a57505050810160200161061882610624610608565b8054602085870181019190915290930192810161064f565b869550610624969350602092506106189491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b8201019293610608565b80fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602061070960043561378d565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602060405160018152f35b6004359073ffffffffffffffffffffffffffffffffffffffff821682036103a157565b6024359073ffffffffffffffffffffffffffffffffffffffff821682036103a157565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576107de610761565b73ffffffffffffffffffffffffffffffffffffffff60243581610800826135b4565b5116809284161461089157610827928233148015610829575b61082290613702565b613f7c565b005b5061082261088a6108833361085e8773ffffffffffffffffffffffffffffffffffffffff166000526006602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5460ff1690565b9050610819565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152fd5b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601654604051908152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff61099d610761565b1660005260126020526020604060002054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516127108152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff610a3d610761565b610a4561250e565b167fffffffffffffffffffffffff00000000000000000000000000000000000000006010541617601055600080f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020600054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff600f5416604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60609101126103a15773ffffffffffffffffffffffffffffffffffffffff9060043582811681036103a1579160243590811681036103a1579060443590565b346103a157610827610bcc36610b5b565b91613b48565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157604073ffffffffffffffffffffffffffffffffffffffff60095416612710610c2d602435600a546128fc565b0482519182526020820152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157610c7161250e565b600435601155005b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe610cb5610761565b60243590613270565b604051908152f35b346103a157610827610cfc610cda36610b5b565b9060405192610ce884610ed8565b60008452610cf7838383613b48565b614237565b613896565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe612947565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff610d86610761565b610d8e61250e565b167fffffffffffffffffffffffff0000000000000000000000000000000000000000600f541617600f55600080f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157600435600054811015610e0457602090604051908152f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610ed357604052565b610e88565b6020810190811067ffffffffffffffff821117610ed357604052565b6080810190811067ffffffffffffffff821117610ed357604052565b60c0810190811067ffffffffffffffff821117610ed357604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610ed357604052565b60405190610f7a82610eb7565b565b67ffffffffffffffff8111610ed357601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b929192610fc282610f7c565b91610fd06040519384610f2c565b8294818452818301116103a1578281602093846000960137010152565b9080601f830112156103a1578160206105ab93359101610fb6565b9181601f840112156103a15782359167ffffffffffffffff83116103a157602083818601950101116103a157565b60607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15767ffffffffffffffff6004358181116103a157611081903690600401610fed565b9061108a610784565b906044359081116103a1576110a3903690600401611008565b6110bc60169492945480159081156111b7575b50613073565b6110d260175480159081156111ac575b506130d8565b6110e76110e161088384611f9f565b1561313d565b61111e6110f383611f9f565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00825416179055565b600080808061113361112e61290f565b6128eb565b61113e8134146131a2565b61117c611163611163600f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b8282156111a3575bf11561119e57610827936111989284612ba4565b506142a1565b612b98565b506108fc611184565b9050421115386110cc565b9050421015386110b6565b346103a15760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576111f9610761565b67ffffffffffffffff6024358181116103a15761121a903690600401610fed565b6044359182116103a157602092611238610709933690600401611008565b929091612ba4565b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126103a1576004359067ffffffffffffffff82116103a1576105ab91600401610fed565b346103a15761129736611240565b61129f61250e565b805167ffffffffffffffff8111610ed3576112c4816112bf600b5461258d565b61486a565b602080601f831160011461131f57508192600092611314575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c191617600b55600080f35b0151905038806112dd565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0831693611370600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990565b926000905b8682106113ca5750508360019510611393575b505050811b01600b55005b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c19169055388080611388565b80600185968294968601518155019501930190611375565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b9190820391821161141e57565b6113e2565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051662386f26fc100008152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051610e108152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576004356114d3610784565b6002600e541461167b576002600e556114f86011548015908115611654575b506129df565b61151a611507836013546129d2565b6115156103e8821115612a69565b601355565b61154e826115488373ffffffffffffffffffffffffffffffffffffffff166000526012602052604060002090565b546129d2565b61155b601e821115612ace565b6115858273ffffffffffffffffffffffffffffffffffffffff166000526012602052604060002090565b5561158e612947565b916115af61159c82856128fc565b916115a983341015612b33565b83614582565b6000808080846115da611163611163600f5473ffffffffffffffffffffffffffffffffffffffff1690565b82821561164b575bf11561119e57803411611603575b6115f983601455565b6108276001600e55565b6000808093611613829434611411565b9082908215611641575b73ffffffffffffffffffffffffffffffffffffffff1690f11561119e5738806115f0565b6108fc915061161d565b506108fc6115e2565b905061165f816129b4565b4211159081611670575b50386114f2565b905042101538611669565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15761171061250e565b600435601655005b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff6117696004356135b4565b5116604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601754604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516103e88152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe611826610761565b61343b565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576106246040516118748161186d816125e0565b0382610f2c565b604051918291602083526020830190610557565b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca576118c061250e565b8073ffffffffffffffffffffffffffffffffffffffff6008547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff611973610761565b1660005260156020526020604060002054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601454604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516703782dace9d900008152f35b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca57611aed90611a667f00000000000000000000000000000000000000000000000000000000000000006126a3565b611a8f7f00000000000000000000000000000000000000000000000000000000000000006127ce565b9160405191611a9d83610ed8565b8183526040519485947f0f000000000000000000000000000000000000000000000000000000000000008652611adf60209360e08589015260e0880190610557565b908682036040880152610557565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b828110611b2457505050500390f35b835185528695509381019392810192600101611b15565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611b7261250e565b600435601755005b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe61290f565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601354604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff60085416604051908152f35b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca576040519080600254611c828161258d565b808552916001918083169081156106825750600114611cab576106248561061881870382610f2c565b9250600283527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410611cee57505050810160200161061882610624610608565b80546020858701810191909152909301928101611cd3565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611d3d610761565b60243590611d4961250e565b60405190611d5682610eb7565b73ffffffffffffffffffffffffffffffffffffffff8091168252612710602083019380855211611dcd57611dc791511673ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff00000000000000000000000000000000000000006009541617600955565b51600a55005b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152fd5b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611e62610761565b60243580151581036103a15773ffffffffffffffffffffffffffffffffffffffff821691338314611f2a5781611ec8611ef89233600052600660205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b9060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b604051901515815233907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190602090a3005b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152fd5b90611f9b60209282815194859201610534565b0190565b6020611fb8918160405193828580945193849201610534565b8101601881520301902090565b346103a157602060ff611fdf611fda36611240565b611f9f565b54166040519015158152f35b346103a15760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157612022610761565b61202a610784565b906064359060443567ffffffffffffffff83116103a157366023840112156103a15761082793612067610cfc943690602481600401359101610fb6565b92610cf7838383613b48565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576004356040516120b58161186d816125e0565b80516000901561227d5750600091807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000818181101561226f575b50506d04ee2d6d415b85acef810000000080831015612260575b50662386f26fc1000080831015612251575b506305f5e10080831015612242575b5061271080831015612233575b506064821015612223575b600a80921015612219575b60019081602161215982880161289c565b96870101905b6121b8575b505050506106186121869161218c610624946040519485936020850190611f88565b90611f88565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610f2c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff849101917f30313233343536373839616263646566000000000000000000000000000000008282061a8353049182156122145791908261215f565b612164565b9260010192612148565b929060646002910491019261213d565b60049194920491019238612132565b60089194920491019238612125565b60109194920491019238612116565b60209194920491019238612104565b6040955004915038806120ea565b6040516106249350915061229082610ed8565b8152610618565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020600754604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051620151808152f35b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602060ff611fdf61234d610761565b73ffffffffffffffffffffffffffffffffffffffff61236a610784565b91166000526006845260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601154604051908152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157612410610761565b61241861250e565b73ffffffffffffffffffffffffffffffffffffffff80911690811561248a57600854827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff60085416330361252f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90600182811c921680156125d6575b60208310146125a757565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f169161259c565b600b54600092916125f08261258d565b80825291600190818116908115612667575060011461260e57505050565b91929350600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9916000925b84841061264f57505060209250010190565b8054602085850181019190915290930192810161263d565b905060209495507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091509291921683830152151560051b010190565b60ff81146126f55760ff811690601f82116126cb576126c0612883565b918252602082015290565b60046040517fb3512b0c000000000000000000000000000000000000000000000000000000008152fd5b50604051600c548160006127088361258d565b8083529260019081811690811561278e575060011461272f575b506105ab92500382610f2c565b600c600090815291507fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c75b84831061277357506105ab935050810160200138612722565b8193509081602092548385890101520191019091849261275a565b602093506105ab9592507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010138612722565b60ff81146127eb5760ff811690601f82116126cb576126c0612883565b50604051600d548160006127fe8361258d565b8083529260019081811690811561278e575060011461282457506105ab92500382610f2c565b600d600090815291507fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb55b84831061286857506105ab935050810160200138612722565b8193509081602092548385890101520191019091849261284f565b6040519061289082610eb7565b60208083523683820137565b906128a682610f7c565b6128b36040519182610f2c565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06128e18294610f7c565b0190602036910137565b908115600183800414171561141e57565b8181029291811591840414171561141e57565b601454662386f26fc10000811061293a5760078102908082046007149015171561141e57600a900490565b5067026db992a3b1800090565b60115480421060001461296157506703782dace9d9000090565b420342811161141e576201518081106129805750662386f26fc1000090565b610e109004662386f26fc100009081810291818304149015171561141e576703782dace9d9000090810390811161141e5790565b9062015180820180921161141e57565b906001820180921161141e57565b9190820180921161141e57565b156129e657565b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f61756374696f6e20686173206e6f742073746172746564206f7220686173206560448201527f6e646564000000000000000000000000000000000000000000000000000000006064820152fd5b15612a7057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f6e6f7420656e6f7567682072656d61696e696e672072657365727665640000006044820152fd5b15612ad557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f7265616368206d6178206d696e747320706572206164647265737300000000006044820152fd5b15612b3a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152fd5b6040513d6000823e3d90fd5b9290612c5d926042612c57926020815191012060405160208101917f7fddf68e699bc772cc62764f04b4c090d2f0c12291e26b510e2f39459acf520c835273ffffffffffffffffffffffffffffffffffffffff8099166040830152606082015260608152612c1181610ef4565b519020612c1c612f4c565b90604051917f190100000000000000000000000000000000000000000000000000000000000083526002830152602282015220923691610fb6565b90612cae565b60105473ffffffffffffffffffffffffffffffffffffffff1691808316911603612c845790565b60046040517f1027aa0b000000000000000000000000000000000000000000000000000000008152fd5b6105ab91612cbb91612e85565b919091612cfc565b60051115612ccd57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612d0581612cc3565b80612d0d5750565b612d1681612cc3565b60018103612d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b612d8681612cc3565b60028103612ded576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b80612df9600392612cc3565b14612e0057565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b906041815114600014612eb357612eaf916020820151906060604084015193015160001a90612ebd565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311612f405791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa1561119e57815173ffffffffffffffffffffffffffffffffffffffff811615612f3a579190565b50600190565b50505050600090600390565b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001630148061304a575b15612fb4577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261304481610f10565b51902090565b507f00000000000000000000000000000000000000000000000000000000000000004614612f8b565b1561307a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152fd5b156130df57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f73616c652068617320656e6400000000000000000000000000000000000000006044820152fd5b1561314457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6d696e7420636f646520686173206265656e20757365640000000000000000006044820152fd5b156131a957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e65656420746f20636865636b204554482076616c75652e00000000000000006044820152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461141e5760010190565b9060405161324181610eb7565b915473ffffffffffffffffffffffffffffffffffffffff8116835260a01c67ffffffffffffffff166020830152565b9161327a8361343b565b8210156133b757600054916000938490855b858110613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608490fd5b613351613337613332836000526003602052604060002090565b613234565b5173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff908181166133af575b508083169084161461338a575b61338590613207565b61328c565b958381146133a65761339e61338591613207565b96905061337c565b50929350505050565b93503861336f565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff16801561347a5760005260046020526fffffffffffffffffffffffffffffffff6040600020541690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152fd5b1561350557565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152fd5b801561141e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b6040516135c081610eb7565b6000815260006020820152506135d960005482106134fe565b6000907f0000000000000000000000000000000000000000000000000000000000000000808210156136e6575b505b81811015613695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608490fd5b6136ac613332826000526003602052604060002090565b6136cd611163825173ffffffffffffffffffffffffffffffffffffffff1690565b6136e057506136db90613589565b613608565b91505090565b8192506136f6906136fb92611411565b6129c4565b9038613606565b1561370957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152fd5b6000548110156137be57600052600560205273ffffffffffffffffffffffffffffffffffffffff6040600020541690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152fd5b60ff9173ffffffffffffffffffffffffffffffffffffffff6138919216600052600660205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b541690565b1561389d57565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608490fd5b1561392957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152fd5b156139b457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152fd5b15613a3f57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff8093160191821161141e57565b9060016fffffffffffffffffffffffffffffffff8093160191821161141e57565b9190916fffffffffffffffffffffffffffffffff8080941691160191821161141e57565b90613bdc90613dc1613b59856135b4565b91613b7b611163845173ffffffffffffffffffffffffffffffffffffffff1690565b33148015613ef6575b8015613ec4575b613b9490613922565b613c94613c37613bb8855173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff888116979091821688146139ad565b831696613bea881515613a38565b613c11613c0b875173ffffffffffffffffffffffffffffffffffffffff1690565b8a613f0a565b73ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b613c59613c5482546fffffffffffffffffffffffffffffffff1690565b613ac3565b6fffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416179055565b613ce3613cc18273ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b613c59613cde82546fffffffffffffffffffffffffffffffff1690565b613b03565b613d0a613cee610f6d565b73ffffffffffffffffffffffffffffffffffffffff9092168252565b4267ffffffffffffffff166020820152613d2e866000526003602052604060002090565b815181547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9190911617815590602001517fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff7bffffffffffffffff000000000000000000000000000000000000000083549260a01b169116179055565b613dca846129c4565b90613dff611163613de5846000526003602052604060002090565b5473ffffffffffffffffffffffffffffffffffffffff1690565b15613e2e575b50507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4565b600054821015613e0557613d2e613ebd92613ead613e756020613e65865173ffffffffffffffffffffffffffffffffffffffff1690565b95015167ffffffffffffffff1690565b613e9c613e80610f6d565b73ffffffffffffffffffffffffffffffffffffffff9096168652565b67ffffffffffffffff166020850152565b6000526003602052604060002090565b3880613e05565b50613b94613eef33613eea865173ffffffffffffffffffffffffffffffffffffffff1690565b613842565b9050613b8b565b5033613f046111638861378d565b14613b84565b9073ffffffffffffffffffffffffffffffffffffffff6000918383526005602052604083207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258280a4565b919091826000526005602052613fd18160406000209073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b73ffffffffffffffffffffffffffffffffffffffff80911691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4565b908160209103126103a157516105ab81610377565b6105ab939273ffffffffffffffffffffffffffffffffffffffff6080931682526000602083015260408201528160608201520190610557565b90926105ab949360809373ffffffffffffffffffffffffffffffffffffffff809216845216602083015260408201528160608201520190610557565b3d156140c7573d906140ad82610f7c565b916140bb6040519384610f2c565b82523d6000602084013e565b606090565b909190803b1561422f5761412c60209173ffffffffffffffffffffffffffffffffffffffff9360006040519586809581947f150b7a02000000000000000000000000000000000000000000000000000000009a8b84523360048501614027565b0393165af1600091816141ff575b506141d95761414761409c565b805190816141d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608490fd5b602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000161490565b61422191925060203d8111614228575b6142198183610f2c565b810190614012565b903861413a565b503d61420f565b505050600190565b92909190823b156142985761412c92602092600073ffffffffffffffffffffffffffffffffffffffff6040518097819682957f150b7a02000000000000000000000000000000000000000000000000000000009b8c85523360048601614060565b50505050600190565b7f0000000000000000000000000000000000000000000000000000000000000000801590811561456a575b501561450c576040516142de81610ed8565b600090818152815473ffffffffffffffffffffffffffffffffffffffff841691614309831515614726565b6001916143387f00000000000000000000000000000000000000000000000000000000000000008411156147b1565b61445c61436d6143688873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b61483c565b6143e96143ad613cde6020614395613cde86516fffffffffffffffffffffffffffffffff1690565b9401516fffffffffffffffffffffffffffffffff1690565b6143d06143b8610f6d565b6fffffffffffffffffffffffffffffffff9094168452565b6fffffffffffffffffffffffffffffffff166020830152565b6144138873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b815160209092015160801b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff909216919091179055565b6144a4614467610f6d565b73ffffffffffffffffffffffffffffffffffffffff881681524267ffffffffffffffff166020820152613d2e836000526003602052604060002090565b9484935b8385106144b757505050505055565b90919293956144fd816145039284897fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46144f8610cfc8783886140cc565b613207565b96613207565b939291906144a8565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d696e7420636f756e7420657863656564204d41585f535550504c59210000006044820152fd5b90506000546001810180911161141e571115386142cc565b907f0000000000000000000000000000000000000000000000000000000000000000801590811561470f575b501561450c576040516145c081610ed8565b60009182825282549173ffffffffffffffffffffffffffffffffffffffff8516926145ec841515614726565b6146187f00000000000000000000000000000000000000000000000000000000000000008411156147b1565b6146a76146486143688873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b6143e96143ad61466883516fffffffffffffffffffffffffffffffff1690565b6146a2602061468a6fffffffffffffffffffffffffffffffff8b168094613b24565b9501516fffffffffffffffffffffffffffffffff1690565b613b24565b6146b2614467610f6d565b9484935b8385106146c557505050505055565b90919293956144fd816147069284897fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46144f8610cfc8783886140cc565b939291906146b6565b905060005482810180911161141e571115386145ae565b1561472d57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b156147b857565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152fd5b9060405161484981610eb7565b91546fffffffffffffffffffffffffffffffff8116835260801c6020830152565b601f8111614876575050565b600090600b82527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9906020601f850160051c830194106148d1575b601f0160051c01915b8281106148c657505050565b8181556001016148ba565b90925082906148b156fea164736f6c6343000812000a405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5aceb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000d359ad36ae52fe04f1ff2b01ff549646dda3403e00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000200212807550e5c00a588b7c3bbc9590797edb3f000000000000000000000000000000000000000000000000000000006555e82000000000000000000000000000000000000000000000000000000000655739a00000000000000000000000000000000000000000000000000000000065588b1f000000000000000000000000000000000000000000000000000000000000000a416c69656e566572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a416c69656e5665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687763367a69636775667071677765736d6675626836636e676f6d6e33766a6537347469686f34693465633575626f78343461692f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436101561001257600080fd5b60003560e01c806301ffc9a71461037257806303c4eff51461036d57806306fdde0314610368578063081812fc1461036357806308a740361461035e578063095ea7b3146103595780630c0e39b5146103545780630ef0723c1461034f5780630f137b5b1461034a5780631327d3d81461034557806318160ddd146103405780631ed203471461033b57806322f4596f1461033657806323b872dd146103315780632a55205a1461032c5780632afc26de146103275780632f745c591461032257806342842e0e1461031d5780634bd25c6f146103185780634e0a3379146103135780634f6ccce71461030e578063511045e014610309578063533dcca41461030457806355f804b3146102ff57806359f369fe146102875780635cae01d3146102fa5780636069a246146102f55780636296ca2f146102f05780636352211e146102eb57806364d66320146102e65780636d94b4ed146102e157806370a08231146102dc578063714c5398146102d7578063715018a6146102d257806376a0e498146102cd5780637a18c1fe146102c85780637a1c4a56146102c357806384b0196e146102be57806386cf4498146102b957806389d08cf2146102b45780638c4ec5da146102af5780638da5cb5b146102aa57806395d89b41146102a557806398b33aa3146102a0578063a22cb4651461029b578063ab0982f014610296578063b88d4fde14610291578063c87b56dd1461028c578063caf8a6d114610287578063d7224ba014610282578063e592301a1461027d578063e985e9c514610278578063eb54f9ec146102735763f2fde38b1461026e57600080fd5b6123d9565b61239d565b61230f565b6122d3565b612297565b611423565b612073565b611feb565b611fc5565b611e2b565b611d06565b611c41565b611bef565b611bb3565b611b7a565b611b3b565b611a09565b6119c8565b61198c565b611927565b611888565b61182b565b6117ea565b6117af565b611773565b611718565b6116d9565b61149e565b611463565b611289565b6111c2565b611036565b610dbd565b610d3a565b610d01565b610cc6565b610c79565b610c3a565b610bd2565b610bbb565b610b02565b610ab0565b610a74565b6109f1565b6109b6565b610951565b610915565b6107a7565b610727565b6106cd565b6105ae565b6104fa565b6103a6565b7fffffffff000000000000000000000000000000000000000000000000000000008116036103a157565b600080fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760207fffffffff0000000000000000000000000000000000000000000000000000000060043561040481610377565b167f2a55205a00000000000000000000000000000000000000000000000000000000811490811561043b575b506040519015158152f35b7f80ac58cd000000000000000000000000000000000000000000000000000000008114915081156104d0575b81156104a6575b811561047c575b5038610430565b7f01ffc9a70000000000000000000000000000000000000000000000000000000091501438610475565b7f780e9d63000000000000000000000000000000000000000000000000000000008114915061046e565b7f5b5e139f0000000000000000000000000000000000000000000000000000000081149150610467565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051601e8152f35b60005b8381106105475750506000910152565b8181015183820152602001610537565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361059381518092818752878088019101610534565b0116010190565b9060206105ab928181520190610557565b90565b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca57604051908060018054916105f18361258d565b808652928281169081156106825750600114610628575b6106248561061881870382610f2c565b6040519182918261059a565b0390f35b92508083527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82841061066a57505050810160200161061882610624610608565b8054602085870181019190915290930192810161064f565b869550610624969350602092506106189491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b8201019293610608565b80fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602061070960043561378d565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602060405160018152f35b6004359073ffffffffffffffffffffffffffffffffffffffff821682036103a157565b6024359073ffffffffffffffffffffffffffffffffffffffff821682036103a157565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576107de610761565b73ffffffffffffffffffffffffffffffffffffffff60243581610800826135b4565b5116809284161461089157610827928233148015610829575b61082290613702565b613f7c565b005b5061082261088a6108833361085e8773ffffffffffffffffffffffffffffffffffffffff166000526006602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b5460ff1690565b9050610819565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152fd5b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601654604051908152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff61099d610761565b1660005260126020526020604060002054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516127108152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff610a3d610761565b610a4561250e565b167fffffffffffffffffffffffff00000000000000000000000000000000000000006010541617601055600080f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020600054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff600f5416604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040517f00000000000000000000000000000000000000000000000000000000000005dc8152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60609101126103a15773ffffffffffffffffffffffffffffffffffffffff9060043582811681036103a1579160243590811681036103a1579060443590565b346103a157610827610bcc36610b5b565b91613b48565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157604073ffffffffffffffffffffffffffffffffffffffff60095416612710610c2d602435600a546128fc565b0482519182526020820152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157610c7161250e565b600435601155005b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe610cb5610761565b60243590613270565b604051908152f35b346103a157610827610cfc610cda36610b5b565b9060405192610ce884610ed8565b60008452610cf7838383613b48565b614237565b613896565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe612947565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff610d86610761565b610d8e61250e565b167fffffffffffffffffffffffff0000000000000000000000000000000000000000600f541617600f55600080f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157600435600054811015610e0457602090604051908152f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610ed357604052565b610e88565b6020810190811067ffffffffffffffff821117610ed357604052565b6080810190811067ffffffffffffffff821117610ed357604052565b60c0810190811067ffffffffffffffff821117610ed357604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610ed357604052565b60405190610f7a82610eb7565b565b67ffffffffffffffff8111610ed357601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b929192610fc282610f7c565b91610fd06040519384610f2c565b8294818452818301116103a1578281602093846000960137010152565b9080601f830112156103a1578160206105ab93359101610fb6565b9181601f840112156103a15782359167ffffffffffffffff83116103a157602083818601950101116103a157565b60607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15767ffffffffffffffff6004358181116103a157611081903690600401610fed565b9061108a610784565b906044359081116103a1576110a3903690600401611008565b6110bc60169492945480159081156111b7575b50613073565b6110d260175480159081156111ac575b506130d8565b6110e76110e161088384611f9f565b1561313d565b61111e6110f383611f9f565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00825416179055565b600080808061113361112e61290f565b6128eb565b61113e8134146131a2565b61117c611163611163600f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b8282156111a3575bf11561119e57610827936111989284612ba4565b506142a1565b612b98565b506108fc611184565b9050421115386110cc565b9050421015386110b6565b346103a15760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576111f9610761565b67ffffffffffffffff6024358181116103a15761121a903690600401610fed565b6044359182116103a157602092611238610709933690600401611008565b929091612ba4565b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8201126103a1576004359067ffffffffffffffff82116103a1576105ab91600401610fed565b346103a15761129736611240565b61129f61250e565b805167ffffffffffffffff8111610ed3576112c4816112bf600b5461258d565b61486a565b602080601f831160011461131f57508192600092611314575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c191617600b55600080f35b0151905038806112dd565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0831693611370600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990565b926000905b8682106113ca5750508360019510611393575b505050811b01600b55005b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c19169055388080611388565b80600185968294968601518155019501930190611375565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b9190820391821161141e57565b6113e2565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051662386f26fc100008152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051610e108152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576004356114d3610784565b6002600e541461167b576002600e556114f86011548015908115611654575b506129df565b61151a611507836013546129d2565b6115156103e8821115612a69565b601355565b61154e826115488373ffffffffffffffffffffffffffffffffffffffff166000526012602052604060002090565b546129d2565b61155b601e821115612ace565b6115858273ffffffffffffffffffffffffffffffffffffffff166000526012602052604060002090565b5561158e612947565b916115af61159c82856128fc565b916115a983341015612b33565b83614582565b6000808080846115da611163611163600f5473ffffffffffffffffffffffffffffffffffffffff1690565b82821561164b575bf11561119e57803411611603575b6115f983601455565b6108276001600e55565b6000808093611613829434611411565b9082908215611641575b73ffffffffffffffffffffffffffffffffffffffff1690f11561119e5738806115f0565b6108fc915061161d565b506108fc6115e2565b905061165f816129b4565b4211159081611670575b50386114f2565b905042101538611669565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15761171061250e565b600435601655005b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff6117696004356135b4565b5116604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601754604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516103e88152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe611826610761565b61343b565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576106246040516118748161186d816125e0565b0382610f2c565b604051918291602083526020830190610557565b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca576118c061250e565b8073ffffffffffffffffffffffffffffffffffffffff6008547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15773ffffffffffffffffffffffffffffffffffffffff611973610761565b1660005260156020526020604060002054604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601454604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a15760206040516703782dace9d900008152f35b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca57611aed90611a667f416c69656e56657273650000000000000000000000000000000000000000000a6126a3565b611a8f7f31000000000000000000000000000000000000000000000000000000000000016127ce565b9160405191611a9d83610ed8565b8183526040519485947f0f000000000000000000000000000000000000000000000000000000000000008652611adf60209360e08589015260e0880190610557565b908682036040880152610557565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b828110611b2457505050500390f35b835185528695509381019392810192600101611b15565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611b7261250e565b600435601755005b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020610cbe61290f565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601354604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602073ffffffffffffffffffffffffffffffffffffffff60085416604051908152f35b346103a1576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126106ca576040519080600254611c828161258d565b808552916001918083169081156106825750600114611cab576106248561061881870382610f2c565b9250600283527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410611cee57505050810160200161061882610624610608565b80546020858701810191909152909301928101611cd3565b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611d3d610761565b60243590611d4961250e565b60405190611d5682610eb7565b73ffffffffffffffffffffffffffffffffffffffff8091168252612710602083019380855211611dcd57611dc791511673ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff00000000000000000000000000000000000000006009541617600955565b51600a55005b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152fd5b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157611e62610761565b60243580151581036103a15773ffffffffffffffffffffffffffffffffffffffff821691338314611f2a5781611ec8611ef89233600052600660205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b9060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b604051901515815233907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190602090a3005b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152fd5b90611f9b60209282815194859201610534565b0190565b6020611fb8918160405193828580945193849201610534565b8101601881520301902090565b346103a157602060ff611fdf611fda36611240565b611f9f565b54166040519015158152f35b346103a15760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157612022610761565b61202a610784565b906064359060443567ffffffffffffffff83116103a157366023840112156103a15761082793612067610cfc943690602481600401359101610fb6565b92610cf7838383613b48565b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576004356040516120b58161186d816125e0565b80516000901561227d5750600091807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000818181101561226f575b50506d04ee2d6d415b85acef810000000080831015612260575b50662386f26fc1000080831015612251575b506305f5e10080831015612242575b5061271080831015612233575b506064821015612223575b600a80921015612219575b60019081602161215982880161289c565b96870101905b6121b8575b505050506106186121869161218c610624946040519485936020850190611f88565b90611f88565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610f2c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff849101917f30313233343536373839616263646566000000000000000000000000000000008282061a8353049182156122145791908261215f565b612164565b9260010192612148565b929060646002910491019261213d565b60049194920491019238612132565b60089194920491019238612125565b60109194920491019238612116565b60209194920491019238612104565b6040955004915038806120ea565b6040516106249350915061229082610ed8565b8152610618565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020600754604051908152f35b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020604051620151808152f35b346103a15760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157602060ff611fdf61234d610761565b73ffffffffffffffffffffffffffffffffffffffff61236a610784565b91166000526006845260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b346103a15760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a1576020601154604051908152f35b346103a15760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103a157612410610761565b61241861250e565b73ffffffffffffffffffffffffffffffffffffffff80911690811561248a57600854827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff60085416330361252f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90600182811c921680156125d6575b60208310146125a757565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f169161259c565b600b54600092916125f08261258d565b80825291600190818116908115612667575060011461260e57505050565b91929350600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9916000925b84841061264f57505060209250010190565b8054602085850181019190915290930192810161263d565b905060209495507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091509291921683830152151560051b010190565b60ff81146126f55760ff811690601f82116126cb576126c0612883565b918252602082015290565b60046040517fb3512b0c000000000000000000000000000000000000000000000000000000008152fd5b50604051600c548160006127088361258d565b8083529260019081811690811561278e575060011461272f575b506105ab92500382610f2c565b600c600090815291507fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c75b84831061277357506105ab935050810160200138612722565b8193509081602092548385890101520191019091849261275a565b602093506105ab9592507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010138612722565b60ff81146127eb5760ff811690601f82116126cb576126c0612883565b50604051600d548160006127fe8361258d565b8083529260019081811690811561278e575060011461282457506105ab92500382610f2c565b600d600090815291507fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb55b84831061286857506105ab935050810160200138612722565b8193509081602092548385890101520191019091849261284f565b6040519061289082610eb7565b60208083523683820137565b906128a682610f7c565b6128b36040519182610f2c565b8281527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06128e18294610f7c565b0190602036910137565b908115600183800414171561141e57565b8181029291811591840414171561141e57565b601454662386f26fc10000811061293a5760078102908082046007149015171561141e57600a900490565b5067026db992a3b1800090565b60115480421060001461296157506703782dace9d9000090565b420342811161141e576201518081106129805750662386f26fc1000090565b610e109004662386f26fc100009081810291818304149015171561141e576703782dace9d9000090810390811161141e5790565b9062015180820180921161141e57565b906001820180921161141e57565b9190820180921161141e57565b156129e657565b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f61756374696f6e20686173206e6f742073746172746564206f7220686173206560448201527f6e646564000000000000000000000000000000000000000000000000000000006064820152fd5b15612a7057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f6e6f7420656e6f7567682072656d61696e696e672072657365727665640000006044820152fd5b15612ad557565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f7265616368206d6178206d696e747320706572206164647265737300000000006044820152fd5b15612b3a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4e65656420746f2073656e64206d6f7265204554482e000000000000000000006044820152fd5b6040513d6000823e3d90fd5b9290612c5d926042612c57926020815191012060405160208101917f7fddf68e699bc772cc62764f04b4c090d2f0c12291e26b510e2f39459acf520c835273ffffffffffffffffffffffffffffffffffffffff8099166040830152606082015260608152612c1181610ef4565b519020612c1c612f4c565b90604051917f190100000000000000000000000000000000000000000000000000000000000083526002830152602282015220923691610fb6565b90612cae565b60105473ffffffffffffffffffffffffffffffffffffffff1691808316911603612c845790565b60046040517f1027aa0b000000000000000000000000000000000000000000000000000000008152fd5b6105ab91612cbb91612e85565b919091612cfc565b60051115612ccd57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612d0581612cc3565b80612d0d5750565b612d1681612cc3565b60018103612d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b612d8681612cc3565b60028103612ded576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b80612df9600392612cc3565b14612e0057565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b906041815114600014612eb357612eaf916020820151906060604084015193015160001a90612ebd565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311612f405791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa1561119e57815173ffffffffffffffffffffffffffffffffffffffff811615612f3a579190565b50600190565b50505050600090600390565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000e9f8133e47d42bc9962e469721faaf75e385af311630148061304a575b15612fb4577f06c5ce5626f3addbbab8fcc67a7208eccc55453a9aab48e393feea73b59cebf990565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527fc8810292831ade2005a04b79e5ef09bc11a0988ed6529d4e34de142c824f6ca460408201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260a0815261304481610f10565b51902090565b507f00000000000000000000000000000000000000000000000000000000000000014614612f8b565b1561307a57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f73616c6520686173206e6f7420737461727465642079657400000000000000006044820152fd5b156130df57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f73616c652068617320656e6400000000000000000000000000000000000000006044820152fd5b1561314457565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f6d696e7420636f646520686173206265656e20757365640000000000000000006044820152fd5b156131a957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4e65656420746f20636865636b204554482076616c75652e00000000000000006044820152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461141e5760010190565b9060405161324181610eb7565b915473ffffffffffffffffffffffffffffffffffffffff8116835260a01c67ffffffffffffffff166020830152565b9161327a8361343b565b8210156133b757600054916000938490855b858110613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608490fd5b613351613337613332836000526003602052604060002090565b613234565b5173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff908181166133af575b508083169084161461338a575b61338590613207565b61328c565b958381146133a65761339e61338591613207565b96905061337c565b50929350505050565b93503861336f565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff16801561347a5760005260046020526fffffffffffffffffffffffffffffffff6040600020541690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152fd5b1561350557565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152fd5b801561141e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b6040516135c081610eb7565b6000815260006020820152506135d960005482106134fe565b6000907f000000000000000000000000000000000000000000000000000000000000001e808210156136e6575b505b81811015613695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608490fd5b6136ac613332826000526003602052604060002090565b6136cd611163825173ffffffffffffffffffffffffffffffffffffffff1690565b6136e057506136db90613589565b613608565b91505090565b8192506136f6906136fb92611411565b6129c4565b9038613606565b1561370957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152fd5b6000548110156137be57600052600560205273ffffffffffffffffffffffffffffffffffffffff6040600020541690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152fd5b60ff9173ffffffffffffffffffffffffffffffffffffffff6138919216600052600660205260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b541690565b1561389d57565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608490fd5b1561392957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152fd5b156139b457565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152fd5b15613a3f57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff8093160191821161141e57565b9060016fffffffffffffffffffffffffffffffff8093160191821161141e57565b9190916fffffffffffffffffffffffffffffffff8080941691160191821161141e57565b90613bdc90613dc1613b59856135b4565b91613b7b611163845173ffffffffffffffffffffffffffffffffffffffff1690565b33148015613ef6575b8015613ec4575b613b9490613922565b613c94613c37613bb8855173ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff888116979091821688146139ad565b831696613bea881515613a38565b613c11613c0b875173ffffffffffffffffffffffffffffffffffffffff1690565b8a613f0a565b73ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b613c59613c5482546fffffffffffffffffffffffffffffffff1690565b613ac3565b6fffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffff00000000000000000000000000000000825416179055565b613ce3613cc18273ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b613c59613cde82546fffffffffffffffffffffffffffffffff1690565b613b03565b613d0a613cee610f6d565b73ffffffffffffffffffffffffffffffffffffffff9092168252565b4267ffffffffffffffff166020820152613d2e866000526003602052604060002090565b815181547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9190911617815590602001517fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff7bffffffffffffffff000000000000000000000000000000000000000083549260a01b169116179055565b613dca846129c4565b90613dff611163613de5846000526003602052604060002090565b5473ffffffffffffffffffffffffffffffffffffffff1690565b15613e2e575b50507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4565b600054821015613e0557613d2e613ebd92613ead613e756020613e65865173ffffffffffffffffffffffffffffffffffffffff1690565b95015167ffffffffffffffff1690565b613e9c613e80610f6d565b73ffffffffffffffffffffffffffffffffffffffff9096168652565b67ffffffffffffffff166020850152565b6000526003602052604060002090565b3880613e05565b50613b94613eef33613eea865173ffffffffffffffffffffffffffffffffffffffff1690565b613842565b9050613b8b565b5033613f046111638861378d565b14613b84565b9073ffffffffffffffffffffffffffffffffffffffff6000918383526005602052604083207fffffffffffffffffffffffff00000000000000000000000000000000000000008154169055167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258280a4565b919091826000526005602052613fd18160406000209073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055565b73ffffffffffffffffffffffffffffffffffffffff80911691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4565b908160209103126103a157516105ab81610377565b6105ab939273ffffffffffffffffffffffffffffffffffffffff6080931682526000602083015260408201528160608201520190610557565b90926105ab949360809373ffffffffffffffffffffffffffffffffffffffff809216845216602083015260408201528160608201520190610557565b3d156140c7573d906140ad82610f7c565b916140bb6040519384610f2c565b82523d6000602084013e565b606090565b909190803b1561422f5761412c60209173ffffffffffffffffffffffffffffffffffffffff9360006040519586809581947f150b7a02000000000000000000000000000000000000000000000000000000009a8b84523360048501614027565b0393165af1600091816141ff575b506141d95761414761409c565b805190816141d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608490fd5b602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000161490565b61422191925060203d8111614228575b6142198183610f2c565b810190614012565b903861413a565b503d61420f565b505050600190565b92909190823b156142985761412c92602092600073ffffffffffffffffffffffffffffffffffffffff6040518097819682957f150b7a02000000000000000000000000000000000000000000000000000000009b8c85523360048601614060565b50505050600190565b7f00000000000000000000000000000000000000000000000000000000000005dc801590811561456a575b501561450c576040516142de81610ed8565b600090818152815473ffffffffffffffffffffffffffffffffffffffff841691614309831515614726565b6001916143387f000000000000000000000000000000000000000000000000000000000000001e8411156147b1565b61445c61436d6143688873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b61483c565b6143e96143ad613cde6020614395613cde86516fffffffffffffffffffffffffffffffff1690565b9401516fffffffffffffffffffffffffffffffff1690565b6143d06143b8610f6d565b6fffffffffffffffffffffffffffffffff9094168452565b6fffffffffffffffffffffffffffffffff166020830152565b6144138873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b815160209092015160801b7fffffffffffffffffffffffffffffffff00000000000000000000000000000000166fffffffffffffffffffffffffffffffff909216919091179055565b6144a4614467610f6d565b73ffffffffffffffffffffffffffffffffffffffff881681524267ffffffffffffffff166020820152613d2e836000526003602052604060002090565b9484935b8385106144b757505050505055565b90919293956144fd816145039284897fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46144f8610cfc8783886140cc565b613207565b96613207565b939291906144a8565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d696e7420636f756e7420657863656564204d41585f535550504c59210000006044820152fd5b90506000546001810180911161141e571115386142cc565b907f00000000000000000000000000000000000000000000000000000000000005dc801590811561470f575b501561450c576040516145c081610ed8565b60009182825282549173ffffffffffffffffffffffffffffffffffffffff8516926145ec841515614726565b6146187f000000000000000000000000000000000000000000000000000000000000001e8411156147b1565b6146a76146486143688873ffffffffffffffffffffffffffffffffffffffff166000526004602052604060002090565b6143e96143ad61466883516fffffffffffffffffffffffffffffffff1690565b6146a2602061468a6fffffffffffffffffffffffffffffffff8b168094613b24565b9501516fffffffffffffffffffffffffffffffff1690565b613b24565b6146b2614467610f6d565b9484935b8385106146c557505050505055565b90919293956144fd816147069284897fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a46144f8610cfc8783886140cc565b939291906146b6565b905060005482810180911161141e571115386145ae565b1561472d57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b156147b857565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152fd5b9060405161484981610eb7565b91546fffffffffffffffffffffffffffffffff8116835260801c6020830152565b601f8111614876575050565b600090600b82527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9906020601f850160051c830194106148d1575b601f0160051c01915b8281106148c657505050565b8181556001016148ba565b90925082906148b156fea164736f6c6343000812000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000d359ad36ae52fe04f1ff2b01ff549646dda3403e00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000200212807550e5c00a588b7c3bbc9590797edb3f000000000000000000000000000000000000000000000000000000006555e82000000000000000000000000000000000000000000000000000000000655739a00000000000000000000000000000000000000000000000000000000065588b1f000000000000000000000000000000000000000000000000000000000000000a416c69656e566572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a416c69656e5665727365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569687763367a69636775667071677765736d6675626836636e676f6d6e33766a6537347469686f34693465633575626f78343461692f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): AlienVerse
Arg [1] : symbol (string): AlienVerse
Arg [2] : maxSupply (uint256): 1500
Arg [3] : baseUri (string): ipfs://bafybeihwc6zicgufpqgwesmfubh6cngomn3vje74tiho4i4ec5ubox44ai/
Arg [4] : maxBatchSize (uint256): 30
Arg [5] : royaltyInfo (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : validator (address): 0x200212807550E5C00a588b7C3bBc9590797EdB3f
Arg [7] : auctionStartTime_ (uint256): 1700128800
Arg [8] : whiteMintStart_ (uint256): 1700215200
Arg [9] : whiteMintEnd_ (uint256): 1700301599
-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 000000000000000000000000d359ad36ae52fe04f1ff2b01ff549646dda3403e
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [7] : 000000000000000000000000200212807550e5c00a588b7c3bbc9590797edb3f
Arg [8] : 000000000000000000000000000000000000000000000000000000006555e820
Arg [9] : 00000000000000000000000000000000000000000000000000000000655739a0
Arg [10] : 0000000000000000000000000000000000000000000000000000000065588b1f
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [12] : 416c69656e566572736500000000000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [14] : 416c69656e566572736500000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [16] : 697066733a2f2f62616679626569687763367a69636775667071677765736d66
Arg [17] : 75626836636e676f6d6e33766a6537347469686f34693465633575626f783434
Arg [18] : 61692f0000000000000000000000000000000000000000000000000000000000
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.