Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Initialize | 14286161 | 1057 days ago | IN | 0 ETH | 0.00396079 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DropCollection
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 99999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/MerkleProofUpgradeable.sol"; import "./BaseCollection.sol"; contract DropCollection is BaseCollection { event MerkleRootSet(bytes32 indexed merkleRoot); event TokenBaseURISet(string indexed tokenBaseURI); using SafeMathUpgradeable for uint256; using MerkleProofUpgradeable for bytes32[]; mapping(address => uint256) private _mintCount; bytes32 private _merkleRoot; string private _tokenBaseURI; // Sales Parameters uint256 private _maxAmount; uint256 private _maxPerMint; uint256 private _maxPerWallet; uint256 private _price; // Auction Parameters uint256 private _startPrice; uint256 private _endPrice; uint256 private _duration; uint256 private _startedAt; // States bool private _presaleActive = false; bool private _saleActive = false; bool private _auctionActive = false; modifier onlyMintable(uint256 numberOfTokens) { require(numberOfTokens > 0, "Greater than 0"); require( _mintCount[_msgSender()].add(numberOfTokens) <= _maxPerWallet, "Exceeded max: 1" ); require( _maxAmount > 0 ? totalSupply().add(numberOfTokens) <= _maxAmount : true, "Exceeded max: 2" ); require(numberOfTokens <= _maxPerMint, "Exceeded max: 3"); _; } function initialize( string memory name_, string memory symbol_, address treasury_, address trustedForwarder_ ) public override initializer { __BaseCollection_init(name_, symbol_, treasury_, trustedForwarder_); } function mint(uint256 numberOfTokens) public payable onlyMintable(numberOfTokens) { require(!_presaleActive, "Not active: 1"); require(_auctionActive || _saleActive, "Not active: 2"); _purchaseMint(numberOfTokens, _msgSender()); } function presaleMint(uint256 numberOfTokens, bytes32[] calldata proof) public payable onlyMintable(numberOfTokens) { require(_presaleActive, "Not active: 3"); require(_merkleRoot != "", "Not active: 4"); require( MerkleProofUpgradeable.verify( proof, _merkleRoot, keccak256(abi.encodePacked(_msgSender())) ), "Not active" ); _purchaseMint(numberOfTokens, _msgSender()); } function batchAirdrop( uint256[] calldata numberOfTokens, address[] calldata recipients ) external onlyOwner { require(numberOfTokens.length == recipients.length); for (uint256 i = 0; i < recipients.length; i++) { _mint(numberOfTokens[i], recipients[i]); } } function setMerkleRoot(bytes32 newRoot) public onlyOwner { _merkleRoot = newRoot; emit MerkleRootSet(newRoot); } function startSale( uint256 newMaxAmount, uint256 newMaxPerMint, uint256 newMaxPerWallet, uint256 newPrice, bool presale ) public onlyOwner { _saleActive = true; _presaleActive = presale; _maxAmount = newMaxAmount; _maxPerMint = newMaxPerMint; _maxPerWallet = newMaxPerWallet; _price = newPrice; } function startAuction( uint256 newMaxAmount, uint256 newMaxPerMint, uint256 newMaxPerWallet, uint256 newStartPrice, uint256 newEndPrice, uint256 newDuration, bool presale ) public onlyOwner { _auctionActive = true; _presaleActive = presale; _startedAt = block.timestamp; _maxAmount = newMaxAmount; _maxPerMint = newMaxPerMint; _maxPerWallet = newMaxPerWallet; _endPrice = newEndPrice; _startPrice = newStartPrice; _duration = newDuration; } function stopSale() public onlyOwner { _saleActive = false; _auctionActive = false; _presaleActive = false; } function setBaseURI(string memory newBaseURI) public onlyOwner { _tokenBaseURI = newBaseURI; emit TokenBaseURISet(newBaseURI); } function maxAmount() external view returns (uint256) { return _maxAmount; } function maxPerMint() external view returns (uint256) { return _maxPerMint; } function maxPerWallet() external view returns (uint256) { return _maxPerWallet; } function price() external view returns (uint256) { return _price; } function presaleActive() external view returns (bool) { return _presaleActive; } function saleActive() external view returns (bool) { return _saleActive; } function auctionActive() external view returns (bool) { return _auctionActive; } function auctionStartedAt() external view returns (uint256) { return _startedAt; } function auctionDuration() external view returns (uint256) { return _duration; } function auctionPrice() public view returns (uint256) { if ((block.timestamp - _startedAt) >= _duration) { return _endPrice; } else { return ((_duration - (block.timestamp - _startedAt)) * (_startPrice - _endPrice)) / _duration + _endPrice; } } function _baseURI() internal view virtual override returns (string memory) { return _tokenBaseURI; } function _purchaseMint(uint256 numberOfTokens, address sender) internal { uint256 mintPrice = _auctionActive ? auctionPrice().mul(numberOfTokens) : _price.mul(numberOfTokens); require(mintPrice <= msg.value, "Value incorrect"); _totalRevenue = _totalRevenue.add(msg.value); _niftyKit.addFees(msg.value); _mintCount[sender] = _mintCount[sender].add(numberOfTokens); _mint(numberOfTokens, sender); } function _mint(uint256 numberOfTokens, address sender) internal { for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply() + 1; _safeMint(sender, mintIndex); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMathUpgradeable { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProofUpgradeable { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol"; import "./interfaces/IBaseCollection.sol"; import "./interfaces/INiftyKit.sol"; abstract contract BaseCollection is ERC721Upgradeable, ERC721EnumerableUpgradeable, ERC2771ContextUpgradeable, OwnableUpgradeable, IBaseCollection { using AddressUpgradeable for address; using SafeMathUpgradeable for uint256; INiftyKit internal _niftyKit; address internal _treasury; uint256 internal _totalRevenue; function __BaseCollection_init( string memory name_, string memory symbol_, address treasury_, address trustedForwarder_ ) internal onlyInitializing { __ERC721_init(name_, symbol_); __ERC721Enumerable_init(); __ERC2771Context_init_unchained(trustedForwarder_); __Ownable_init_unchained(); _niftyKit = INiftyKit(_msgSender()); _treasury = treasury_; } function withdraw() public { require(address(this).balance > 0, "0 balance"); uint256 balance = address(this).balance; uint256 fees = _niftyKit.getFees(address(this)); AddressUpgradeable.sendValue(payable(_treasury), balance.sub(fees)); AddressUpgradeable.sendValue(payable(address(_niftyKit)), fees); _niftyKit.addFeesClaimed(fees); } function setTreasury(address newTreasury) public onlyOwner { _treasury = newTreasury; } function treasury() external view returns (address) { return _treasury; } function totalRevenue() external view returns (uint256) { return _totalRevenue; } // The following functions are overrides required by Solidity. function _msgSender() internal view virtual override(ERC2771ContextUpgradeable, ContextUpgradeable) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ERC2771ContextUpgradeable, ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721Upgradeable, ERC721EnumerableUpgradeable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Upgradeable, ERC721EnumerableUpgradeable) returns (bool) { return super.supportsInterface(interfaceId); } function transferOwnership(address newOwner) public override(IBaseCollection, OwnableUpgradeable) { return OwnableUpgradeable.transferOwnership(newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {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 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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.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 ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal onlyInitializing { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721Enumerable_init_unchained(); } function __ERC721Enumerable_init_unchained() internal onlyInitializing { } // 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(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.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 < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); 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 = ERC721Upgradeable.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 = ERC721Upgradeable.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(); } uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (metatx/ERC2771Context.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { address private _trustedForwarder; function __ERC2771Context_init(address trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address trustedForwarder) internal onlyInitializing { _trustedForwarder = trustedForwarder; } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return forwarder == _trustedForwarder; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBaseCollection { /** * @dev Contract upgradeable initializer */ function initialize( string memory, string memory, address, address ) external; /** * @dev part of Ownable */ function transferOwnership(address) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface INiftyKit { /** * @dev Emitted when collection is created */ event CollectionCreated(address indexed collectionAddress); /** * @dev Returns the commission amount. */ function commission(uint256 amount) external view returns (uint256); /** * @dev Add fees from Collection */ function addFees(uint256 amount) external; /** * @dev Add fees claimed by the Collection */ function addFeesClaimed(uint256 amount) external; /** * @dev Get fees accrued by the account */ function getFees(address account) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// 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 IERC165Upgradeable { /** * @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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 99999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootSet","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":"string","name":"tokenBaseURI","type":"string"}],"name":"TokenBaseURISet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartedAt","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":[{"internalType":"uint256[]","name":"numberOfTokens","type":"uint256[]"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"treasury_","type":"address"},{"internalType":"address","name":"trustedForwarder_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxPerMint","type":"uint256"},{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"},{"internalType":"uint256","name":"newStartPrice","type":"uint256"},{"internalType":"uint256","name":"newEndPrice","type":"uint256"},{"internalType":"uint256","name":"newDuration","type":"uint256"},{"internalType":"bool","name":"presale","type":"bool"}],"name":"startAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxPerMint","type":"uint256"},{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"},{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"bool","name":"presale","type":"bool"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":"totalRevenue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261013b805462ffffff1916905534801561001d57600080fd5b506148968061002d6000396000f3fe6080604052600436106102dc5760003560e01c806368428a1b11610184578063a0712d68116100d6578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107b0578063f0f4426014610806578063f2fde38b1461082657600080fd5b8063c87b56dd14610768578063e36b0b3714610788578063e3e1e8ef1461079d57600080fd5b8063ace849c6116100bb578063ace849c614610712578063b88d4fde14610732578063bf2d9e0b1461075257600080fd5b8063a0712d68146106df578063a22cb465146106f257600080fd5b8063896b24b7116101385780639222800611610112578063922280061461069557806395d89b41146106b4578063a035b1fe146106c957600080fd5b8063896b24b71461062a5780638da5cb5b1461064a5780638f15b4141461067557600080fd5b8063715018a611610169578063715018a6146105d5578063789e3a55146105ea5780637cb647591461060a57600080fd5b806368428a1b1461059757806370a08231146105b557600080fd5b806342842e0e1161023d57806355f804b3116101f15780635f48f393116101cb5780635f48f3931461053557806361d027b31461054b5780636352211e1461057757600080fd5b806355f804b3146104c457806356742b5a146104e4578063572b6c05146104f957600080fd5b80634f6ccce7116102225780634f6ccce714610475578063507e094f1461049557806353135ca0146104ab57600080fd5b806342842e0e1461043f578063453c23101461045f57600080fd5b80630cbf54c81161029457806323b872dd1161027957806323b872dd146103ea5780632f745c591461040a5780633ccfd60b1461042a57600080fd5b80630cbf54c8146103bf57806318160ddd146103d557600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b31461037d57806309d798fa1461039f57600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004614021565b610846565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b610857565b60405161030d91906140b4565b34801561034457600080fd5b506103586103533660046140c7565b6108e9565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030d565b34801561038957600080fd5b5061039d610398366004614109565b6109c8565b005b3480156103ab57600080fd5b5061013a545b60405190815260200161030d565b3480156103cb57600080fd5b50610139546103b1565b3480156103e157600080fd5b506099546103b1565b3480156103f657600080fd5b5061039d610405366004614133565b610b74565b34801561041657600080fd5b506103b1610425366004614109565b610c1c565b34801561043657600080fd5b5061039d610ceb565b34801561044b57600080fd5b5061039d61045a366004614133565b610ed9565b34801561046b57600080fd5b50610135546103b1565b34801561048157600080fd5b506103b16104903660046140c7565b610ef4565b3480156104a157600080fd5b50610134546103b1565b3480156104b757600080fd5b5061013b5460ff16610301565b3480156104d057600080fd5b5061039d6104df366004614252565b610fb2565b3480156104f057600080fd5b506103b16110c2565b34801561050557600080fd5b50610301610514366004614287565b60c95473ffffffffffffffffffffffffffffffffffffffff91821691161490565b34801561054157600080fd5b50610133546103b1565b34801561055757600080fd5b5061012e5473ffffffffffffffffffffffffffffffffffffffff16610358565b34801561058357600080fd5b506103586105923660046140c7565b61113a565b3480156105a357600080fd5b5061013b54610100900460ff16610301565b3480156105c157600080fd5b506103b16105d0366004614287565b6111ec565b3480156105e157600080fd5b5061039d6112ba565b3480156105f657600080fd5b5061039d6106053660046142b2565b611380565b34801561061657600080fd5b5061039d6106253660046140c7565b611488565b34801561063657600080fd5b5061039d6106453660046142fb565b611576565b34801561065657600080fd5b5060fb5473ffffffffffffffffffffffffffffffffffffffff16610358565b34801561068157600080fd5b5061039d610690366004614357565b611692565b3480156106a157600080fd5b5061013b5462010000900460ff16610301565b3480156106c057600080fd5b5061032b6117be565b3480156106d557600080fd5b50610136546103b1565b61039d6106ed3660046140c7565b6117cd565b3480156106fe57600080fd5b5061039d61070d3660046143dc565b611aea565b34801561071e57600080fd5b5061039d61072d36600461445b565b611afc565b34801561073e57600080fd5b5061039d61074d3660046144c7565b611c27565b34801561075e57600080fd5b5061012f546103b1565b34801561077457600080fd5b5061032b6107833660046140c7565b611cd6565b34801561079457600080fd5b5061039d611de6565b61039d6107ab366004614543565b611ecb565b3480156107bc57600080fd5b506103016107cb36600461458f565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152606a6020908152604080832093909416825291909152205460ff1690565b34801561081257600080fd5b5061039d610821366004614287565b61228f565b34801561083257600080fd5b5061039d610841366004614287565b612391565b60006108518261239d565b92915050565b606060658054610866906145b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906145b9565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1661099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526069602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109d38261113a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610996565b8073ffffffffffffffffffffffffffffffffffffffff16610ab06123f3565b73ffffffffffffffffffffffffffffffffffffffff161480610ad95750610ad9816107cb6123f3565b610b65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610996565b610b6f83836123fd565b505050565b610b85610b7f6123f3565b8261249d565b610c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610996565b610b6f83838361260d565b6000610c27836111ec565b8210610cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610996565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152609760209081526040808320938352929052205490565b60004711610d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f302062616c616e636500000000000000000000000000000000000000000000006044820152606401610996565b61012d546040517f9af608c9000000000000000000000000000000000000000000000000000000008152306004820152479160009173ffffffffffffffffffffffffffffffffffffffff90911690639af608c99060240160206040518083038186803b158015610dc457600080fd5b505afa158015610dd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfc919061460d565b61012e54909150610e2c9073ffffffffffffffffffffffffffffffffffffffff16610e27848461287f565b61288b565b61012d54610e509073ffffffffffffffffffffffffffffffffffffffff168261288b565b61012d546040517fb9bff4bb0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff9091169063b9bff4bb90602401600060405180830381600087803b158015610ebd57600080fd5b505af1158015610ed1573d6000803e3d6000fd5b505050505050565b610b6f83838360405180602001604052806000815250611c27565b6000610eff60995490565b8210610f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610996565b60998281548110610fa057610fa0614626565b90600052602060002001549050919050565b610fba6123f3565b73ffffffffffffffffffffffffffffffffffffffff16610fef60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b805161108090610132906020840190613f5a565b508060405161108f9190614655565b604051908190038120907f6ae07e2a08f067a8d5ece04d32173e8ecaac9a2273ca0e3db850c5460a5d616090600090a250565b60006101395461013a54426110d791906146a0565b106110e457506101385490565b6101385461013954610137546110fb9083906146a0565b61013a5461110990426146a0565b6101395461111791906146a0565b61112191906146b7565b61112b9190614723565b6111359190614737565b905090565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610996565b600073ffffffffffffffffffffffffffffffffffffffff8216611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610996565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526068602052604090205490565b6112c26123f3565b73ffffffffffffffffffffffffffffffffffffffff166112f760fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61137e60006129e5565b565b6113886123f3565b73ffffffffffffffffffffffffffffffffffffffff166113bd60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009092169190911761010017905561013393909355610134919091556101355561013655565b6114906123f3565b73ffffffffffffffffffffffffffffffffffffffff166114c560fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013181905560405181907f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90600090a250565b61157e6123f3565b73ffffffffffffffffffffffffffffffffffffffff166115b360fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff0090921691909117620100001790554261013a55610133959095556101349390935561013591909155610138919091556101375561013955565b600054610100900460ff166116ad5760005460ff16156116b1565b303b155b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610996565b600054610100900460ff1615801561177c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b61178885858585612a5c565b80156117b757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050505050565b606060668054610866906145b9565b8060008111611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f47726561746572207468616e20300000000000000000000000000000000000006044820152606401610996565b6101355461187a82610130600061184d6123f3565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205490612b7a565b11156118e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203100000000000000000000000000000000006044820152606401610996565b600061013354116118f457600161190e565b6101335461190b8261190560995490565b90612b7a565b11155b611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203200000000000000000000000000000000006044820152606401610996565b610134548111156119e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203300000000000000000000000000000000006044820152606401610996565b61013b5460ff1615611a4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2031000000000000000000000000000000000000006044820152606401610996565b61013b5462010000900460ff1680611a6f575061013b54610100900460ff165b611ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2032000000000000000000000000000000000000006044820152606401610996565b611ae682611ae16123f3565b612b86565b5050565b611ae6611af56123f3565b8383612d23565b611b046123f3565b73ffffffffffffffffffffffffffffffffffffffff16611b3960fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b828114611bc257600080fd5b60005b818110156117b757611c15858583818110611be257611be2614626565b90506020020135848484818110611bfb57611bfb614626565b9050602002016020810190611c109190614287565b612e51565b80611c1f8161474f565b915050611bc5565b611c38611c326123f3565b8361249d565b611cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610996565b611cd084848484612e91565b50505050565b60008181526067602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610996565b6000611d94612f34565b90506000815111611db45760405180602001604052806000815250611ddf565b80611dbe84612f44565b604051602001611dcf929190614788565b6040516020818303038152906040525b9392505050565b611dee6123f3565b73ffffffffffffffffffffffffffffffffffffffff16611e2360fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000169055565b8260008111611f36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f47726561746572207468616e20300000000000000000000000000000000000006044820152606401610996565b61013554611f4b82610130600061184d6123f3565b1115611fb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203100000000000000000000000000000000006044820152606401610996565b60006101335411611fc5576001611fd9565b61013354611fd68261190560995490565b11155b61203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203200000000000000000000000000000000006044820152606401610996565b610134548111156120ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203300000000000000000000000000000000006044820152606401610996565b61013b5460ff16612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2033000000000000000000000000000000000000006044820152606401610996565b61013154612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2034000000000000000000000000000000000000006044820152606401610996565b61221d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506101315491506121c790506123f3565b604051602001612202919060609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60405160208183030381529060405280519060200120613076565b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f7420616374697665000000000000000000000000000000000000000000006044820152606401610996565b611cd084611ae16123f3565b6122976123f3565b73ffffffffffffffffffffffffffffffffffffffff166122cc60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61012e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61239a8161308c565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108515750610851826131f2565b60006111356132d5565b600081815260696020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906124578261113a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1661254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610996565b60006125598361113a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125c857508373ffffffffffffffffffffffffffffffffffffffff166125b0846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612605575073ffffffffffffffffffffffffffffffffffffffff8082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661262d8261113a565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610996565b73ffffffffffffffffffffffffffffffffffffffff8216612772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610996565b61277d838383613328565b6127886000826123fd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526068602052604081208054600192906127be9084906146a0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526068602052604081208054600192906127f9908490614737565b909155505060008181526067602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ddf82846146a0565b804710156128f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610996565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461294f576040519150601f19603f3d011682016040523d82523d6000602084013e612954565b606091505b5050905080610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610996565b60fb805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16612af3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b612afd8484613333565b612b056133e4565b612b0e81613493565b612b16613571565b612b1e6123f3565b61012d805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915561012e805494909216931692909217909155505050565b6000611ddf8284614737565b61013b5460009062010000900460ff16612bad5761013654612ba89084613618565b612bbf565b612bbf83612bb96110c2565b90613618565b905034811115612c2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f56616c756520696e636f727265637400000000000000000000000000000000006044820152606401610996565b61012f54612c399034612b7a565b61012f5561012d546040517f107e9cf100000000000000000000000000000000000000000000000000000000815234600482015273ffffffffffffffffffffffffffffffffffffffff9091169063107e9cf190602401600060405180830381600087803b158015612ca957600080fd5b505af1158015612cbd573d6000803e3d6000fd5b50505073ffffffffffffffffffffffffffffffffffffffff831660009081526101306020526040902054612cf2915084612b7a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526101306020526040902055610b6f8383612e51565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610996565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60005b82811015610b6f576000612e6760995490565b612e72906001614737565b9050612e7e8382613624565b5080612e898161474f565b915050612e54565b612e9c84848461260d565b612ea88484848461363e565b611cd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b60606101328054610866906145b9565b606081612f8457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612fae5780612f988161474f565b9150612fa79050600a83614723565b9150612f88565b60008167ffffffffffffffff811115612fc957612fc961416f565b6040519080825280601f01601f191660200182016040528015612ff3576020820181803683370190505b5090505b8415612605576130086001836146a0565b9150613015600a866147b7565b613020906030614737565b60f81b81838151811061303557613035614626565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061306f600a86614723565b9450612ff7565b600082613083858461382b565b14949350505050565b6130946123f3565b73ffffffffffffffffffffffffffffffffffffffff166130c960fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b73ffffffffffffffffffffffffffffffffffffffff81166131e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610996565b61239a816129e5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061328557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061085157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610851565b60c95460009073ffffffffffffffffffffffffffffffffffffffff1633141561332357507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c90565b503390565b610b6f8383836138d7565b600054610100900460ff166133ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b6133d26139dd565b6133da6139dd565b611ae68282613a74565b600054610100900460ff1661347b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b6134836139dd565b61348b6139dd565b61137e6139dd565b600054610100900460ff1661352a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b60c980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600054610100900460ff16613608576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b61137e6136136123f3565b6129e5565b6000611ddf82846146b7565b611ae6828260405180602001604052806000815250613b32565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136816123f3565b8786866040518563ffffffff1660e01b81526004016136a394939291906147cb565b602060405180830381600087803b1580156136bd57600080fd5b505af192505050801561370b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261370891810190614814565b60015b6137d5573d808015613739576040519150601f19603f3d011682016040523d82523d6000602084013e61373e565b606091505b5080516137cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612605565b506001949350505050565b600081815b84518110156138cf57600085828151811061384d5761384d614626565b6020026020010151905080831161388f5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506138bc565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806138c78161474f565b915050613830565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff831661393f5761393a81609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b61397c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461397c5761397c8382613bd5565b73ffffffffffffffffffffffffffffffffffffffff82166139a057610b6f81613c8c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610b6f57610b6f8282613d3b565b600054610100900460ff1661137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b600054610100900460ff16613b0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b8151613b1e906065906020850190613f5a565b508051610b6f906066906020840190613f5a565b613b3c8383613d8c565b613b49600084848461363e565b610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b60006001613be2846111ec565b613bec91906146a0565b600083815260986020526040902054909150808214613c4c5773ffffffffffffffffffffffffffffffffffffffff841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b50600091825260986020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352609781528383209183525290812055565b609954600090613c9e906001906146a0565b6000838152609a602052604081205460998054939450909284908110613cc657613cc6614626565b906000526020600020015490508060998381548110613ce757613ce7614626565b6000918252602080832090910192909255828152609a90915260408082208490558582528120556099805480613d1f57613d1f614831565b6001900381819060005260206000200160009055905550505050565b6000613d46836111ec565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216613e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610996565b60008181526067602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610996565b613ea160008383613328565b73ffffffffffffffffffffffffffffffffffffffff82166000908152606860205260408120805460019290613ed7908490614737565b909155505060008181526067602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613f66906145b9565b90600052602060002090601f016020900481019282613f885760008555613fce565b82601f10613fa157805160ff1916838001178555613fce565b82800160010185558215613fce579182015b82811115613fce578251825591602001919060010190613fb3565b50613fda929150613fde565b5090565b5b80821115613fda5760008155600101613fdf565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461239a57600080fd5b60006020828403121561403357600080fd5b8135611ddf81613ff3565b60005b83811015614059578181015183820152602001614041565b83811115611cd05750506000910152565b6000815180845261408281602086016020860161403e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611ddf602083018461406a565b6000602082840312156140d957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461410457600080fd5b919050565b6000806040838503121561411c57600080fd5b614125836140e0565b946020939093013593505050565b60008060006060848603121561414857600080fd5b614151846140e0565b925061415f602085016140e0565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156141b9576141b961416f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156141ff576141ff61416f565b8160405280935085815286868601111561421857600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261424357600080fd5b611ddf8383356020850161419e565b60006020828403121561426457600080fd5b813567ffffffffffffffff81111561427b57600080fd5b61260584828501614232565b60006020828403121561429957600080fd5b611ddf826140e0565b8035801515811461410457600080fd5b600080600080600060a086880312156142ca57600080fd5b853594506020860135935060408601359250606086013591506142ef608087016142a2565b90509295509295909350565b600080600080600080600060e0888a03121561431657600080fd5b873596506020880135955060408801359450606088013593506080880135925060a0880135915061434960c089016142a2565b905092959891949750929550565b6000806000806080858703121561436d57600080fd5b843567ffffffffffffffff8082111561438557600080fd5b61439188838901614232565b955060208701359150808211156143a757600080fd5b506143b487828801614232565b9350506143c3604086016140e0565b91506143d1606086016140e0565b905092959194509250565b600080604083850312156143ef57600080fd5b6143f8836140e0565b9150614406602084016142a2565b90509250929050565b60008083601f84011261442157600080fd5b50813567ffffffffffffffff81111561443957600080fd5b6020830191508360208260051b850101111561445457600080fd5b9250929050565b6000806000806040858703121561447157600080fd5b843567ffffffffffffffff8082111561448957600080fd5b6144958883890161440f565b909650945060208701359150808211156144ae57600080fd5b506144bb8782880161440f565b95989497509550505050565b600080600080608085870312156144dd57600080fd5b6144e6856140e0565b93506144f4602086016140e0565b925060408501359150606085013567ffffffffffffffff81111561451757600080fd5b8501601f8101871361452857600080fd5b6145378782356020840161419e565b91505092959194509250565b60008060006040848603121561455857600080fd5b83359250602084013567ffffffffffffffff81111561457657600080fd5b6145828682870161440f565b9497909650939450505050565b600080604083850312156145a257600080fd5b6145ab836140e0565b9150614406602084016140e0565b600181811c908216806145cd57607f821691505b60208210811415614607577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561461f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000825161466781846020870161403e565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156146b2576146b2614671565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146ef576146ef614671565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614732576147326146f4565b500490565b6000821982111561474a5761474a614671565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561478157614781614671565b5060010190565b6000835161479a81846020880161403e565b8351908301906147ae81836020880161403e565b01949350505050565b6000826147c6576147c66146f4565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261480a608083018461406a565b9695505050505050565b60006020828403121561482657600080fd5b8151611ddf81613ff3565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208c2710548f780d074476972ec4670752754ce25a87ff745edd66d8a6eb7f90f164736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102dc5760003560e01c806368428a1b11610184578063a0712d68116100d6578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107b0578063f0f4426014610806578063f2fde38b1461082657600080fd5b8063c87b56dd14610768578063e36b0b3714610788578063e3e1e8ef1461079d57600080fd5b8063ace849c6116100bb578063ace849c614610712578063b88d4fde14610732578063bf2d9e0b1461075257600080fd5b8063a0712d68146106df578063a22cb465146106f257600080fd5b8063896b24b7116101385780639222800611610112578063922280061461069557806395d89b41146106b4578063a035b1fe146106c957600080fd5b8063896b24b71461062a5780638da5cb5b1461064a5780638f15b4141461067557600080fd5b8063715018a611610169578063715018a6146105d5578063789e3a55146105ea5780637cb647591461060a57600080fd5b806368428a1b1461059757806370a08231146105b557600080fd5b806342842e0e1161023d57806355f804b3116101f15780635f48f393116101cb5780635f48f3931461053557806361d027b31461054b5780636352211e1461057757600080fd5b806355f804b3146104c457806356742b5a146104e4578063572b6c05146104f957600080fd5b80634f6ccce7116102225780634f6ccce714610475578063507e094f1461049557806353135ca0146104ab57600080fd5b806342842e0e1461043f578063453c23101461045f57600080fd5b80630cbf54c81161029457806323b872dd1161027957806323b872dd146103ea5780632f745c591461040a5780633ccfd60b1461042a57600080fd5b80630cbf54c8146103bf57806318160ddd146103d557600080fd5b8063081812fc116102c5578063081812fc14610338578063095ea7b31461037d57806309d798fa1461039f57600080fd5b806301ffc9a7146102e157806306fdde0314610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004614021565b610846565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061032b610857565b60405161030d91906140b4565b34801561034457600080fd5b506103586103533660046140c7565b6108e9565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030d565b34801561038957600080fd5b5061039d610398366004614109565b6109c8565b005b3480156103ab57600080fd5b5061013a545b60405190815260200161030d565b3480156103cb57600080fd5b50610139546103b1565b3480156103e157600080fd5b506099546103b1565b3480156103f657600080fd5b5061039d610405366004614133565b610b74565b34801561041657600080fd5b506103b1610425366004614109565b610c1c565b34801561043657600080fd5b5061039d610ceb565b34801561044b57600080fd5b5061039d61045a366004614133565b610ed9565b34801561046b57600080fd5b50610135546103b1565b34801561048157600080fd5b506103b16104903660046140c7565b610ef4565b3480156104a157600080fd5b50610134546103b1565b3480156104b757600080fd5b5061013b5460ff16610301565b3480156104d057600080fd5b5061039d6104df366004614252565b610fb2565b3480156104f057600080fd5b506103b16110c2565b34801561050557600080fd5b50610301610514366004614287565b60c95473ffffffffffffffffffffffffffffffffffffffff91821691161490565b34801561054157600080fd5b50610133546103b1565b34801561055757600080fd5b5061012e5473ffffffffffffffffffffffffffffffffffffffff16610358565b34801561058357600080fd5b506103586105923660046140c7565b61113a565b3480156105a357600080fd5b5061013b54610100900460ff16610301565b3480156105c157600080fd5b506103b16105d0366004614287565b6111ec565b3480156105e157600080fd5b5061039d6112ba565b3480156105f657600080fd5b5061039d6106053660046142b2565b611380565b34801561061657600080fd5b5061039d6106253660046140c7565b611488565b34801561063657600080fd5b5061039d6106453660046142fb565b611576565b34801561065657600080fd5b5060fb5473ffffffffffffffffffffffffffffffffffffffff16610358565b34801561068157600080fd5b5061039d610690366004614357565b611692565b3480156106a157600080fd5b5061013b5462010000900460ff16610301565b3480156106c057600080fd5b5061032b6117be565b3480156106d557600080fd5b50610136546103b1565b61039d6106ed3660046140c7565b6117cd565b3480156106fe57600080fd5b5061039d61070d3660046143dc565b611aea565b34801561071e57600080fd5b5061039d61072d36600461445b565b611afc565b34801561073e57600080fd5b5061039d61074d3660046144c7565b611c27565b34801561075e57600080fd5b5061012f546103b1565b34801561077457600080fd5b5061032b6107833660046140c7565b611cd6565b34801561079457600080fd5b5061039d611de6565b61039d6107ab366004614543565b611ecb565b3480156107bc57600080fd5b506103016107cb36600461458f565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152606a6020908152604080832093909416825291909152205460ff1690565b34801561081257600080fd5b5061039d610821366004614287565b61228f565b34801561083257600080fd5b5061039d610841366004614287565b612391565b60006108518261239d565b92915050565b606060658054610866906145b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610892906145b9565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1661099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526069602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109d38261113a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610996565b8073ffffffffffffffffffffffffffffffffffffffff16610ab06123f3565b73ffffffffffffffffffffffffffffffffffffffff161480610ad95750610ad9816107cb6123f3565b610b65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610996565b610b6f83836123fd565b505050565b610b85610b7f6123f3565b8261249d565b610c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610996565b610b6f83838361260d565b6000610c27836111ec565b8210610cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610996565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152609760209081526040808320938352929052205490565b60004711610d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f302062616c616e636500000000000000000000000000000000000000000000006044820152606401610996565b61012d546040517f9af608c9000000000000000000000000000000000000000000000000000000008152306004820152479160009173ffffffffffffffffffffffffffffffffffffffff90911690639af608c99060240160206040518083038186803b158015610dc457600080fd5b505afa158015610dd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dfc919061460d565b61012e54909150610e2c9073ffffffffffffffffffffffffffffffffffffffff16610e27848461287f565b61288b565b61012d54610e509073ffffffffffffffffffffffffffffffffffffffff168261288b565b61012d546040517fb9bff4bb0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff9091169063b9bff4bb90602401600060405180830381600087803b158015610ebd57600080fd5b505af1158015610ed1573d6000803e3d6000fd5b505050505050565b610b6f83838360405180602001604052806000815250611c27565b6000610eff60995490565b8210610f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610996565b60998281548110610fa057610fa0614626565b90600052602060002001549050919050565b610fba6123f3565b73ffffffffffffffffffffffffffffffffffffffff16610fef60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b805161108090610132906020840190613f5a565b508060405161108f9190614655565b604051908190038120907f6ae07e2a08f067a8d5ece04d32173e8ecaac9a2273ca0e3db850c5460a5d616090600090a250565b60006101395461013a54426110d791906146a0565b106110e457506101385490565b6101385461013954610137546110fb9083906146a0565b61013a5461110990426146a0565b6101395461111791906146a0565b61112191906146b7565b61112b9190614723565b6111359190614737565b905090565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610996565b600073ffffffffffffffffffffffffffffffffffffffff8216611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610996565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526068602052604090205490565b6112c26123f3565b73ffffffffffffffffffffffffffffffffffffffff166112f760fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61137e60006129e5565b565b6113886123f3565b73ffffffffffffffffffffffffffffffffffffffff166113bd60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00009092169190911761010017905561013393909355610134919091556101355561013655565b6114906123f3565b73ffffffffffffffffffffffffffffffffffffffff166114c560fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013181905560405181907f42cbc405e4dbf1b691e85b9a34b08ecfcf7a9ad9078bf4d645ccfa1fac11c10b90600090a250565b61157e6123f3565b73ffffffffffffffffffffffffffffffffffffffff166115b360fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff0090921691909117620100001790554261013a55610133959095556101349390935561013591909155610138919091556101375561013955565b600054610100900460ff166116ad5760005460ff16156116b1565b303b155b61173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610996565b600054610100900460ff1615801561177c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b61178885858585612a5c565b80156117b757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050505050565b606060668054610866906145b9565b8060008111611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f47726561746572207468616e20300000000000000000000000000000000000006044820152606401610996565b6101355461187a82610130600061184d6123f3565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205490612b7a565b11156118e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203100000000000000000000000000000000006044820152606401610996565b600061013354116118f457600161190e565b6101335461190b8261190560995490565b90612b7a565b11155b611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203200000000000000000000000000000000006044820152606401610996565b610134548111156119e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203300000000000000000000000000000000006044820152606401610996565b61013b5460ff1615611a4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2031000000000000000000000000000000000000006044820152606401610996565b61013b5462010000900460ff1680611a6f575061013b54610100900460ff165b611ad5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2032000000000000000000000000000000000000006044820152606401610996565b611ae682611ae16123f3565b612b86565b5050565b611ae6611af56123f3565b8383612d23565b611b046123f3565b73ffffffffffffffffffffffffffffffffffffffff16611b3960fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b828114611bc257600080fd5b60005b818110156117b757611c15858583818110611be257611be2614626565b90506020020135848484818110611bfb57611bfb614626565b9050602002016020810190611c109190614287565b612e51565b80611c1f8161474f565b915050611bc5565b611c38611c326123f3565b8361249d565b611cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610996565b611cd084848484612e91565b50505050565b60008181526067602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611d8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610996565b6000611d94612f34565b90506000815111611db45760405180602001604052806000815250611ddf565b80611dbe84612f44565b604051602001611dcf929190614788565b6040516020818303038152906040525b9392505050565b611dee6123f3565b73ffffffffffffffffffffffffffffffffffffffff16611e2360fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61013b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000169055565b8260008111611f36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f47726561746572207468616e20300000000000000000000000000000000000006044820152606401610996565b61013554611f4b82610130600061184d6123f3565b1115611fb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203100000000000000000000000000000000006044820152606401610996565b60006101335411611fc5576001611fd9565b61013354611fd68261190560995490565b11155b61203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203200000000000000000000000000000000006044820152606401610996565b610134548111156120ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4578636565646564206d61783a203300000000000000000000000000000000006044820152606401610996565b61013b5460ff16612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2033000000000000000000000000000000000000006044820152606401610996565b61013154612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4e6f74206163746976653a2034000000000000000000000000000000000000006044820152606401610996565b61221d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506101315491506121c790506123f3565b604051602001612202919060609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60405160208183030381529060405280519060200120613076565b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f7420616374697665000000000000000000000000000000000000000000006044820152606401610996565b611cd084611ae16123f3565b6122976123f3565b73ffffffffffffffffffffffffffffffffffffffff166122cc60fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b61012e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61239a8161308c565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108515750610851826131f2565b60006111356132d5565b600081815260696020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906124578261113a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526067602052604081205473ffffffffffffffffffffffffffffffffffffffff1661254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610996565b60006125598361113a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125c857508373ffffffffffffffffffffffffffffffffffffffff166125b0846108e9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612605575073ffffffffffffffffffffffffffffffffffffffff8082166000908152606a602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661262d8261113a565b73ffffffffffffffffffffffffffffffffffffffff16146126d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610996565b73ffffffffffffffffffffffffffffffffffffffff8216612772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610996565b61277d838383613328565b6127886000826123fd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526068602052604081208054600192906127be9084906146a0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526068602052604081208054600192906127f9908490614737565b909155505060008181526067602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611ddf82846146a0565b804710156128f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610996565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d806000811461294f576040519150601f19603f3d011682016040523d82523d6000602084013e612954565b606091505b5050905080610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610996565b60fb805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16612af3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b612afd8484613333565b612b056133e4565b612b0e81613493565b612b16613571565b612b1e6123f3565b61012d805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915561012e805494909216931692909217909155505050565b6000611ddf8284614737565b61013b5460009062010000900460ff16612bad5761013654612ba89084613618565b612bbf565b612bbf83612bb96110c2565b90613618565b905034811115612c2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f56616c756520696e636f727265637400000000000000000000000000000000006044820152606401610996565b61012f54612c399034612b7a565b61012f5561012d546040517f107e9cf100000000000000000000000000000000000000000000000000000000815234600482015273ffffffffffffffffffffffffffffffffffffffff9091169063107e9cf190602401600060405180830381600087803b158015612ca957600080fd5b505af1158015612cbd573d6000803e3d6000fd5b50505073ffffffffffffffffffffffffffffffffffffffff831660009081526101306020526040902054612cf2915084612b7a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526101306020526040902055610b6f8383612e51565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610996565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60005b82811015610b6f576000612e6760995490565b612e72906001614737565b9050612e7e8382613624565b5080612e898161474f565b915050612e54565b612e9c84848461260d565b612ea88484848461363e565b611cd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b60606101328054610866906145b9565b606081612f8457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612fae5780612f988161474f565b9150612fa79050600a83614723565b9150612f88565b60008167ffffffffffffffff811115612fc957612fc961416f565b6040519080825280601f01601f191660200182016040528015612ff3576020820181803683370190505b5090505b8415612605576130086001836146a0565b9150613015600a866147b7565b613020906030614737565b60f81b81838151811061303557613035614626565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061306f600a86614723565b9450612ff7565b600082613083858461382b565b14949350505050565b6130946123f3565b73ffffffffffffffffffffffffffffffffffffffff166130c960fb5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610996565b73ffffffffffffffffffffffffffffffffffffffff81166131e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610996565b61239a816129e5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061328557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061085157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610851565b60c95460009073ffffffffffffffffffffffffffffffffffffffff1633141561332357507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c90565b503390565b610b6f8383836138d7565b600054610100900460ff166133ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b6133d26139dd565b6133da6139dd565b611ae68282613a74565b600054610100900460ff1661347b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b6134836139dd565b61348b6139dd565b61137e6139dd565b600054610100900460ff1661352a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b60c980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600054610100900460ff16613608576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b61137e6136136123f3565b6129e5565b6000611ddf82846146b7565b611ae6828260405180602001604052806000815250613b32565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136816123f3565b8786866040518563ffffffff1660e01b81526004016136a394939291906147cb565b602060405180830381600087803b1580156136bd57600080fd5b505af192505050801561370b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261370891810190614814565b60015b6137d5573d808015613739576040519150601f19603f3d011682016040523d82523d6000602084013e61373e565b606091505b5080516137cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612605565b506001949350505050565b600081815b84518110156138cf57600085828151811061384d5761384d614626565b6020026020010151905080831161388f5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506138bc565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806138c78161474f565b915050613830565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff831661393f5761393a81609980546000838152609a60205260408120829055600182018355919091527f72a152ddfb8e864297c917af52ea6c1c68aead0fee1a62673fcc7e0c94979d000155565b61397c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461397c5761397c8382613bd5565b73ffffffffffffffffffffffffffffffffffffffff82166139a057610b6f81613c8c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610b6f57610b6f8282613d3b565b600054610100900460ff1661137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b600054610100900460ff16613b0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610996565b8151613b1e906065906020850190613f5a565b508051610b6f906066906020840190613f5a565b613b3c8383613d8c565b613b49600084848461363e565b610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610996565b60006001613be2846111ec565b613bec91906146a0565b600083815260986020526040902054909150808214613c4c5773ffffffffffffffffffffffffffffffffffffffff841660009081526097602090815260408083208584528252808320548484528184208190558352609890915290208190555b50600091825260986020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352609781528383209183525290812055565b609954600090613c9e906001906146a0565b6000838152609a602052604081205460998054939450909284908110613cc657613cc6614626565b906000526020600020015490508060998381548110613ce757613ce7614626565b6000918252602080832090910192909255828152609a90915260408082208490558582528120556099805480613d1f57613d1f614831565b6001900381819060005260206000200160009055905550505050565b6000613d46836111ec565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152609760209081526040808320868452825280832085905593825260989052919091209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216613e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610996565b60008181526067602052604090205473ffffffffffffffffffffffffffffffffffffffff1615613e95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610996565b613ea160008383613328565b73ffffffffffffffffffffffffffffffffffffffff82166000908152606860205260408120805460019290613ed7908490614737565b909155505060008181526067602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613f66906145b9565b90600052602060002090601f016020900481019282613f885760008555613fce565b82601f10613fa157805160ff1916838001178555613fce565b82800160010185558215613fce579182015b82811115613fce578251825591602001919060010190613fb3565b50613fda929150613fde565b5090565b5b80821115613fda5760008155600101613fdf565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461239a57600080fd5b60006020828403121561403357600080fd5b8135611ddf81613ff3565b60005b83811015614059578181015183820152602001614041565b83811115611cd05750506000910152565b6000815180845261408281602086016020860161403e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611ddf602083018461406a565b6000602082840312156140d957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461410457600080fd5b919050565b6000806040838503121561411c57600080fd5b614125836140e0565b946020939093013593505050565b60008060006060848603121561414857600080fd5b614151846140e0565b925061415f602085016140e0565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156141b9576141b961416f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156141ff576141ff61416f565b8160405280935085815286868601111561421857600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261424357600080fd5b611ddf8383356020850161419e565b60006020828403121561426457600080fd5b813567ffffffffffffffff81111561427b57600080fd5b61260584828501614232565b60006020828403121561429957600080fd5b611ddf826140e0565b8035801515811461410457600080fd5b600080600080600060a086880312156142ca57600080fd5b853594506020860135935060408601359250606086013591506142ef608087016142a2565b90509295509295909350565b600080600080600080600060e0888a03121561431657600080fd5b873596506020880135955060408801359450606088013593506080880135925060a0880135915061434960c089016142a2565b905092959891949750929550565b6000806000806080858703121561436d57600080fd5b843567ffffffffffffffff8082111561438557600080fd5b61439188838901614232565b955060208701359150808211156143a757600080fd5b506143b487828801614232565b9350506143c3604086016140e0565b91506143d1606086016140e0565b905092959194509250565b600080604083850312156143ef57600080fd5b6143f8836140e0565b9150614406602084016142a2565b90509250929050565b60008083601f84011261442157600080fd5b50813567ffffffffffffffff81111561443957600080fd5b6020830191508360208260051b850101111561445457600080fd5b9250929050565b6000806000806040858703121561447157600080fd5b843567ffffffffffffffff8082111561448957600080fd5b6144958883890161440f565b909650945060208701359150808211156144ae57600080fd5b506144bb8782880161440f565b95989497509550505050565b600080600080608085870312156144dd57600080fd5b6144e6856140e0565b93506144f4602086016140e0565b925060408501359150606085013567ffffffffffffffff81111561451757600080fd5b8501601f8101871361452857600080fd5b6145378782356020840161419e565b91505092959194509250565b60008060006040848603121561455857600080fd5b83359250602084013567ffffffffffffffff81111561457657600080fd5b6145828682870161440f565b9497909650939450505050565b600080604083850312156145a257600080fd5b6145ab836140e0565b9150614406602084016140e0565b600181811c908216806145cd57607f821691505b60208210811415614607577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561461f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000825161466781846020870161403e565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156146b2576146b2614671565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146ef576146ef614671565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082614732576147326146f4565b500490565b6000821982111561474a5761474a614671565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561478157614781614671565b5060010190565b6000835161479a81846020880161403e565b8351908301906147ae81836020880161403e565b01949350505050565b6000826147c6576147c66146f4565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261480a608083018461406a565b9695505050505050565b60006020828403121561482657600080fd5b8151611ddf81613ff3565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208c2710548f780d074476972ec4670752754ce25a87ff745edd66d8a6eb7f90f164736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.