ERC-721
Overview
Max Total Supply
3,103 Shujinko
Holders
1,148
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ShujinkoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Shujinko
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 1000 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/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "prb-math/contracts/PRBMathUD60x18.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "erc721a/contracts/extensions/ERC721ABurnable.sol"; /** * @title Shujinkō * @author @shujinkonft */ contract Shujinko is ERC721AQueryable, ERC721ABurnable, Ownable { using PRBMathUD60x18 for uint256; using Strings for uint256; uint256 private constant ONE_PERCENT = 10000000000000000; // 1% (18 decimals) // @dev nft のベース uri string private baseURI; // @dev nft の隠し uri string public hiddenURI = "ipfs://bafybeidrxvcgnns2kb4mp34jd7npnydnwmzypryntjjzv3os2gm2jgkuv4/prereveal.json"; // @dev マークルルート証明 bytes32 public merkleRoot = 0x4c85142df33a2228d9a113e22859c0352e9f07feaf54dbc983d67b5475222bcb; // @dev ob リストのマークルルート bytes32 public obMerkleRoot = 0xf7d9a2553ecd1312f34ff996374143812f5b960489f0a4057edaa1b264b2fac0; // @dev 公開フラグ bool public isRevealed = false; // @dev ミントの値段 uint256 public price = 0.015 ether; // @dev 引き出しアドレス address public treasury = payable(0xF8114e3D55A25b4bC79e9A7306912fF1294A61FD); // @dev チームアドレス address public team = payable(0x6d9ed472Da62B604eD479026185995889ae8f80e); // @dev 合計ミントのアドレス マッピング mapping(address => uint256) public addressToWL; // @dev oblis mintsのアドレスマッピング mapping(address => uint256) public addressToFree; // @dev ウォレットごとの最大合計 (n - 1) uint256 public maxPerWallet = 3; // @notice ~ 9:15am EST 9/25/22 uint256 public whitelistLiveAt = 1664111700; // @notice ~ 12:15pm EST 9/25/22 uint256 public publicLiveAt = 1664122500; // @notice ~ 5:00pm EST 9/25/22 uint256 public oblisLiveAt = 1664139600; // @dev コレクションの総供給量 (n - 1) uint256 public maxSupply = 5556; // @dev ホワイトリストの供給 (n - 1) uint256 public whitelistSupply = 3756; // @dev 予約済みの供給 (n - 1) uint256 public reservedSupply = 1801; // @dev ホワイトリストのミントカウントを追跡する uint256 public whitelistMinted = 0; // @dev obリストのミントカウントを追跡する uint256 public oblisMinted = 0; constructor() ERC721A("Shujinko", "Shujinko") { _mintERC2309(treasury, 55); // チームミント } /** * @notice ミント フェーズのライブ タイムスタンプを設定する * @param _whitelistLiveAt A base uri */ function setLiveAt( uint256 _whitelistLiveAt, uint256 _publicLiveAt, uint256 _oblisLiveAt ) external onlyOwner { whitelistLiveAt = _whitelistLiveAt; publicLiveAt = _publicLiveAt; oblisLiveAt = _oblisLiveAt; } // @dev ホワイトリストのミントがライブかどうかを確認する function isWhitelistLive() public view returns (bool) { return block.timestamp > whitelistLiveAt; } // @dev 公開ミントがライブかどうかを確認する function isPublicLive() public view returns (bool) { return block.timestamp > publicLiveAt; } // @dev oblis mint がライブかどうかを確認する function isOblisLive() public view returns (bool) { return block.timestamp > oblisLiveAt; } /** * @notice マークルプルーフを必要とするホワイトリストに登録されたミント機能 (ウォレットあたりの最大数) * @param _amount ミントの量 * @param _proof マークル ルートを検証するための bytes32 配列の証明 */ function whitelistMint(uint256 _amount, bytes32[] calldata _proof) external payable { require(isWhitelistLive(), "0"); require(whitelistMinted + _amount < whitelistSupply, "1"); require(msg.value >= _amount * price, "2"); require(addressToWL[_msgSender()] + _amount < maxPerWallet, "3"); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_proof, merkleRoot, leaf), "4"); addressToWL[_msgSender()] += _amount; whitelistMinted += _amount; _mint(_msgSender(), _amount); } /** * @notice Ob list マークルプルーフを必要とするFREE Minting機能(ウォレットあたりの最大) * @param _amount ミントの量 * @param _proof マークル ルートを検証するための bytes32 配列の証明 */ function oblisMint(uint256 _amount, bytes32[] calldata _proof) external { require(isOblisLive(), "0"); require(oblisMinted + _amount < reservedSupply, "1"); require(addressToFree[_msgSender()] + _amount < maxPerWallet, "2"); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require(MerkleProof.verify(_proof, obMerkleRoot, leaf), "4"); addressToFree[_msgSender()] += _amount; oblisMinted += _amount; _mint(_msgSender(), _amount); } /** * @notice パブリックミント * @param _amount 鋳造するトークンの数 */ function mint(uint256 _amount) external payable { require(isPublicLive(), "0"); require(msg.value >= _amount * price, "1"); require(whitelistMinted + _amount < whitelistSupply, "3"); whitelistMinted += _amount; _mint(_msgSender(), _amount); } /** * @dev ミントの残量を確認する * @param _address ミントアドレスルックアップ */ function remainingWhitelistMints(address _address) public view returns (uint256) { if ((maxPerWallet - 1) > addressToWL[_address]) { return maxPerWallet - addressToWL[_address] - 1; } return 0; } /** * @dev ミントの残量を確認する * @param _address ミントアドレスルックアップ */ function remainingoblisMints(address _address) public view returns (uint256) { if ((maxPerWallet - 1) > addressToFree[_address]) { return maxPerWallet - addressToFree[_address] - 1; } return 0; } /** * @dev 開始トークン ID を返します */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @notice 指定されたトークン ID の URI を返します * @param _tokenId トークン ID */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { if (!_exists(_tokenId)) revert OwnerQueryForNonexistentToken(); if (!isRevealed) return hiddenURI; return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } /** * @notice 公開フラグを設定します * @param _isRevealed コレクションが公開されているかどうかのフラグ */ function setIsRevealed(bool _isRevealed) external onlyOwner { isRevealed = _isRevealed; } /** * @notice NFT の隠し URI を設定します * @param _hiddenURI 隠しウリ */ function setHiddenURI(string calldata _hiddenURI) external onlyOwner { hiddenURI = _hiddenURI; } /** * @notice NFT のベース URI を設定します * @param _baseURI ベース uri */ function setBaseURI(string calldata _baseURI) external onlyOwner { baseURI = _baseURI; } /** * @notice ミントのマークルルートを設定します * @param _merkleRoot 設定するマークル ルート */ function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /** * @notice ミントのマークルルートを設定します * @param _obMerkleRoot 設定するマークル ルート */ function setObMerkleRoot(bytes32 _obMerkleRoot) external onlyOwner { obMerkleRoot = _obMerkleRoot; } /** * @notice ウォレットごとの最大値を設定します * @param _maxPerWallet アドレスごとの最大ミントカウント */ function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner { maxPerWallet = _maxPerWallet; } /** * @notice コレクションの最大供給量を設定します * @param _whitelistSupply コレクションのホワイトリスト供給 * @param _reservedSupply コレクションの予約供給 */ function setMaxSupplies(uint256 _whitelistSupply, uint256 _reservedSupply) external onlyOwner { whitelistSupply = _whitelistSupply; reservedSupply = _reservedSupply; } /** * @notice 価格設定 * @param _price 魏の価格 */ function setPrice(uint256 _price) external onlyOwner { price = _price; } /** * @notice 財務受取人を設定します * @param _treasury 財務省の住所 */ function setTreasury(address _treasury) external onlyOwner { treasury = payable(_treasury); } // @notice 契約から資金を引き出す function withdraw() public onlyOwner { uint256 amount = address(this).balance; (bool s1, ) = treasury.call{value: amount.mul(ONE_PERCENT * 92)}(""); (bool s2, ) = team.call{value: amount.mul(ONE_PERCENT * 8)}(""); if (s1 && s2) return; // fallback to owner (bool s4, ) = payable(_msgSender()).call{value: amount}(""); require(s4, "Payment failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: Unlicense pragma solidity >=0.8.4; import "./PRBMath.sol"; /// @title PRBMathUD60x18 /// @author Paul Razvan Berg /// @notice Smart contract library for advanced fixed-point math that works with uint256 numbers considered to have 18 /// trailing decimals. We call this number representation unsigned 60.18-decimal fixed-point, since there can be up to 60 /// digits in the integer part and up to 18 decimals in the fractional part. The numbers are bound by the minimum and the /// maximum values permitted by the Solidity type uint256. library PRBMathUD60x18 { /// @dev Half the SCALE number. uint256 internal constant HALF_SCALE = 5e17; /// @dev log2(e) as an unsigned 60.18-decimal fixed-point number. uint256 internal constant LOG2_E = 1_442695040888963407; /// @dev The maximum value an unsigned 60.18-decimal fixed-point number can have. uint256 internal constant MAX_UD60x18 = 115792089237316195423570985008687907853269984665640564039457_584007913129639935; /// @dev The maximum whole value an unsigned 60.18-decimal fixed-point number can have. uint256 internal constant MAX_WHOLE_UD60x18 = 115792089237316195423570985008687907853269984665640564039457_000000000000000000; /// @dev How many trailing decimals can be represented. uint256 internal constant SCALE = 1e18; /// @notice Calculates the arithmetic average of x and y, rounding down. /// @param x The first operand as an unsigned 60.18-decimal fixed-point number. /// @param y The second operand as an unsigned 60.18-decimal fixed-point number. /// @return result The arithmetic average as an unsigned 60.18-decimal fixed-point number. function avg(uint256 x, uint256 y) internal pure returns (uint256 result) { // The operations can never overflow. unchecked { // The last operand checks if both x and y are odd and if that is the case, we add 1 to the result. We need // to do this because if both numbers are odd, the 0.5 remainder gets truncated twice. result = (x >> 1) + (y >> 1) + (x & y & 1); } } /// @notice Yields the least unsigned 60.18 decimal fixed-point number greater than or equal to x. /// /// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts. /// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions. /// /// Requirements: /// - x must be less than or equal to MAX_WHOLE_UD60x18. /// /// @param x The unsigned 60.18-decimal fixed-point number to ceil. /// @param result The least integer greater than or equal to x, as an unsigned 60.18-decimal fixed-point number. function ceil(uint256 x) internal pure returns (uint256 result) { if (x > MAX_WHOLE_UD60x18) { revert PRBMathUD60x18__CeilOverflow(x); } assembly { // Equivalent to "x % SCALE" but faster. let remainder := mod(x, SCALE) // Equivalent to "SCALE - remainder" but faster. let delta := sub(SCALE, remainder) // Equivalent to "x + delta * (remainder > 0 ? 1 : 0)" but faster. result := add(x, mul(delta, gt(remainder, 0))) } } /// @notice Divides two unsigned 60.18-decimal fixed-point numbers, returning a new unsigned 60.18-decimal fixed-point number. /// /// @dev Uses mulDiv to enable overflow-safe multiplication and division. /// /// Requirements: /// - The denominator cannot be zero. /// /// @param x The numerator as an unsigned 60.18-decimal fixed-point number. /// @param y The denominator as an unsigned 60.18-decimal fixed-point number. /// @param result The quotient as an unsigned 60.18-decimal fixed-point number. function div(uint256 x, uint256 y) internal pure returns (uint256 result) { result = PRBMath.mulDiv(x, SCALE, y); } /// @notice Returns Euler's number as an unsigned 60.18-decimal fixed-point number. /// @dev See https://en.wikipedia.org/wiki/E_(mathematical_constant). function e() internal pure returns (uint256 result) { result = 2_718281828459045235; } /// @notice Calculates the natural exponent of x. /// /// @dev Based on the insight that e^x = 2^(x * log2(e)). /// /// Requirements: /// - All from "log2". /// - x must be less than 133.084258667509499441. /// /// @param x The exponent as an unsigned 60.18-decimal fixed-point number. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function exp(uint256 x) internal pure returns (uint256 result) { // Without this check, the value passed to "exp2" would be greater than 192. if (x >= 133_084258667509499441) { revert PRBMathUD60x18__ExpInputTooBig(x); } // Do the fixed-point multiplication inline to save gas. unchecked { uint256 doubleScaleProduct = x * LOG2_E; result = exp2((doubleScaleProduct + HALF_SCALE) / SCALE); } } /// @notice Calculates the binary exponent of x using the binary fraction method. /// /// @dev See https://ethereum.stackexchange.com/q/79903/24693. /// /// Requirements: /// - x must be 192 or less. /// - The result must fit within MAX_UD60x18. /// /// @param x The exponent as an unsigned 60.18-decimal fixed-point number. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function exp2(uint256 x) internal pure returns (uint256 result) { // 2^192 doesn't fit within the 192.64-bit format used internally in this function. if (x >= 192e18) { revert PRBMathUD60x18__Exp2InputTooBig(x); } unchecked { // Convert x to the 192.64-bit fixed-point format. uint256 x192x64 = (x << 64) / SCALE; // Pass x to the PRBMath.exp2 function, which uses the 192.64-bit fixed-point number representation. result = PRBMath.exp2(x192x64); } } /// @notice Yields the greatest unsigned 60.18 decimal fixed-point number less than or equal to x. /// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts. /// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions. /// @param x The unsigned 60.18-decimal fixed-point number to floor. /// @param result The greatest integer less than or equal to x, as an unsigned 60.18-decimal fixed-point number. function floor(uint256 x) internal pure returns (uint256 result) { assembly { // Equivalent to "x % SCALE" but faster. let remainder := mod(x, SCALE) // Equivalent to "x - remainder * (remainder > 0 ? 1 : 0)" but faster. result := sub(x, mul(remainder, gt(remainder, 0))) } } /// @notice Yields the excess beyond the floor of x. /// @dev Based on the odd function definition https://en.wikipedia.org/wiki/Fractional_part. /// @param x The unsigned 60.18-decimal fixed-point number to get the fractional part of. /// @param result The fractional part of x as an unsigned 60.18-decimal fixed-point number. function frac(uint256 x) internal pure returns (uint256 result) { assembly { result := mod(x, SCALE) } } /// @notice Converts a number from basic integer form to unsigned 60.18-decimal fixed-point representation. /// /// @dev Requirements: /// - x must be less than or equal to MAX_UD60x18 divided by SCALE. /// /// @param x The basic integer to convert. /// @param result The same number in unsigned 60.18-decimal fixed-point representation. function fromUint(uint256 x) internal pure returns (uint256 result) { unchecked { if (x > MAX_UD60x18 / SCALE) { revert PRBMathUD60x18__FromUintOverflow(x); } result = x * SCALE; } } /// @notice Calculates geometric mean of x and y, i.e. sqrt(x * y), rounding down. /// /// @dev Requirements: /// - x * y must fit within MAX_UD60x18, lest it overflows. /// /// @param x The first operand as an unsigned 60.18-decimal fixed-point number. /// @param y The second operand as an unsigned 60.18-decimal fixed-point number. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function gm(uint256 x, uint256 y) internal pure returns (uint256 result) { if (x == 0) { return 0; } unchecked { // Checking for overflow this way is faster than letting Solidity do it. uint256 xy = x * y; if (xy / x != y) { revert PRBMathUD60x18__GmOverflow(x, y); } // We don't need to multiply by the SCALE here because the x*y product had already picked up a factor of SCALE // during multiplication. See the comments within the "sqrt" function. result = PRBMath.sqrt(xy); } } /// @notice Calculates 1 / x, rounding toward zero. /// /// @dev Requirements: /// - x cannot be zero. /// /// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the inverse. /// @return result The inverse as an unsigned 60.18-decimal fixed-point number. function inv(uint256 x) internal pure returns (uint256 result) { unchecked { // 1e36 is SCALE * SCALE. result = 1e36 / x; } } /// @notice Calculates the natural logarithm of x. /// /// @dev Based on the insight that ln(x) = log2(x) / log2(e). /// /// Requirements: /// - All from "log2". /// /// Caveats: /// - All from "log2". /// - This doesn't return exactly 1 for 2.718281828459045235, for that we would need more fine-grained precision. /// /// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the natural logarithm. /// @return result The natural logarithm as an unsigned 60.18-decimal fixed-point number. function ln(uint256 x) internal pure returns (uint256 result) { // Do the fixed-point multiplication inline to save gas. This is overflow-safe because the maximum value that log2(x) // can return is 196205294292027477728. unchecked { result = (log2(x) * SCALE) / LOG2_E; } } /// @notice Calculates the common logarithm of x. /// /// @dev First checks if x is an exact power of ten and it stops if yes. If it's not, calculates the common /// logarithm based on the insight that log10(x) = log2(x) / log2(10). /// /// Requirements: /// - All from "log2". /// /// Caveats: /// - All from "log2". /// /// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the common logarithm. /// @return result The common logarithm as an unsigned 60.18-decimal fixed-point number. function log10(uint256 x) internal pure returns (uint256 result) { if (x < SCALE) { revert PRBMathUD60x18__LogInputTooSmall(x); } // Note that the "mul" in this block is the assembly multiplication operation, not the "mul" function defined // in this contract. // prettier-ignore assembly { switch x case 1 { result := mul(SCALE, sub(0, 18)) } case 10 { result := mul(SCALE, sub(1, 18)) } case 100 { result := mul(SCALE, sub(2, 18)) } case 1000 { result := mul(SCALE, sub(3, 18)) } case 10000 { result := mul(SCALE, sub(4, 18)) } case 100000 { result := mul(SCALE, sub(5, 18)) } case 1000000 { result := mul(SCALE, sub(6, 18)) } case 10000000 { result := mul(SCALE, sub(7, 18)) } case 100000000 { result := mul(SCALE, sub(8, 18)) } case 1000000000 { result := mul(SCALE, sub(9, 18)) } case 10000000000 { result := mul(SCALE, sub(10, 18)) } case 100000000000 { result := mul(SCALE, sub(11, 18)) } case 1000000000000 { result := mul(SCALE, sub(12, 18)) } case 10000000000000 { result := mul(SCALE, sub(13, 18)) } case 100000000000000 { result := mul(SCALE, sub(14, 18)) } case 1000000000000000 { result := mul(SCALE, sub(15, 18)) } case 10000000000000000 { result := mul(SCALE, sub(16, 18)) } case 100000000000000000 { result := mul(SCALE, sub(17, 18)) } case 1000000000000000000 { result := 0 } case 10000000000000000000 { result := SCALE } case 100000000000000000000 { result := mul(SCALE, 2) } case 1000000000000000000000 { result := mul(SCALE, 3) } case 10000000000000000000000 { result := mul(SCALE, 4) } case 100000000000000000000000 { result := mul(SCALE, 5) } case 1000000000000000000000000 { result := mul(SCALE, 6) } case 10000000000000000000000000 { result := mul(SCALE, 7) } case 100000000000000000000000000 { result := mul(SCALE, 8) } case 1000000000000000000000000000 { result := mul(SCALE, 9) } case 10000000000000000000000000000 { result := mul(SCALE, 10) } case 100000000000000000000000000000 { result := mul(SCALE, 11) } case 1000000000000000000000000000000 { result := mul(SCALE, 12) } case 10000000000000000000000000000000 { result := mul(SCALE, 13) } case 100000000000000000000000000000000 { result := mul(SCALE, 14) } case 1000000000000000000000000000000000 { result := mul(SCALE, 15) } case 10000000000000000000000000000000000 { result := mul(SCALE, 16) } case 100000000000000000000000000000000000 { result := mul(SCALE, 17) } case 1000000000000000000000000000000000000 { result := mul(SCALE, 18) } case 10000000000000000000000000000000000000 { result := mul(SCALE, 19) } case 100000000000000000000000000000000000000 { result := mul(SCALE, 20) } case 1000000000000000000000000000000000000000 { result := mul(SCALE, 21) } case 10000000000000000000000000000000000000000 { result := mul(SCALE, 22) } case 100000000000000000000000000000000000000000 { result := mul(SCALE, 23) } case 1000000000000000000000000000000000000000000 { result := mul(SCALE, 24) } case 10000000000000000000000000000000000000000000 { result := mul(SCALE, 25) } case 100000000000000000000000000000000000000000000 { result := mul(SCALE, 26) } case 1000000000000000000000000000000000000000000000 { result := mul(SCALE, 27) } case 10000000000000000000000000000000000000000000000 { result := mul(SCALE, 28) } case 100000000000000000000000000000000000000000000000 { result := mul(SCALE, 29) } case 1000000000000000000000000000000000000000000000000 { result := mul(SCALE, 30) } case 10000000000000000000000000000000000000000000000000 { result := mul(SCALE, 31) } case 100000000000000000000000000000000000000000000000000 { result := mul(SCALE, 32) } case 1000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 33) } case 10000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 34) } case 100000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 35) } case 1000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 36) } case 10000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 37) } case 100000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 38) } case 1000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 39) } case 10000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 40) } case 100000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 41) } case 1000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 42) } case 10000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 43) } case 100000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 44) } case 1000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 45) } case 10000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 46) } case 100000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 47) } case 1000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 48) } case 10000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 49) } case 100000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 50) } case 1000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 51) } case 10000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 52) } case 100000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 53) } case 1000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 54) } case 10000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 55) } case 100000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 56) } case 1000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 57) } case 10000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 58) } case 100000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 59) } default { result := MAX_UD60x18 } } if (result == MAX_UD60x18) { // Do the fixed-point division inline to save gas. The denominator is log2(10). unchecked { result = (log2(x) * SCALE) / 3_321928094887362347; } } } /// @notice Calculates the binary logarithm of x. /// /// @dev Based on the iterative approximation algorithm. /// https://en.wikipedia.org/wiki/Binary_logarithm#Iterative_approximation /// /// Requirements: /// - x must be greater than or equal to SCALE, otherwise the result would be negative. /// /// Caveats: /// - The results are nor perfectly accurate to the last decimal, due to the lossy precision of the iterative approximation. /// /// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the binary logarithm. /// @return result The binary logarithm as an unsigned 60.18-decimal fixed-point number. function log2(uint256 x) internal pure returns (uint256 result) { if (x < SCALE) { revert PRBMathUD60x18__LogInputTooSmall(x); } unchecked { // Calculate the integer part of the logarithm and add it to the result and finally calculate y = x * 2^(-n). uint256 n = PRBMath.mostSignificantBit(x / SCALE); // The integer part of the logarithm as an unsigned 60.18-decimal fixed-point number. The operation can't overflow // because n is maximum 255 and SCALE is 1e18. result = n * SCALE; // This is y = x * 2^(-n). uint256 y = x >> n; // If y = 1, the fractional part is zero. if (y == SCALE) { return result; } // Calculate the fractional part via the iterative approximation. // The "delta >>= 1" part is equivalent to "delta /= 2", but shifting bits is faster. for (uint256 delta = HALF_SCALE; delta > 0; delta >>= 1) { y = (y * y) / SCALE; // Is y^2 > 2 and so in the range [2,4)? if (y >= 2 * SCALE) { // Add the 2^(-m) factor to the logarithm. result += delta; // Corresponds to z/2 on Wikipedia. y >>= 1; } } } } /// @notice Multiplies two unsigned 60.18-decimal fixed-point numbers together, returning a new unsigned 60.18-decimal /// fixed-point number. /// @dev See the documentation for the "PRBMath.mulDivFixedPoint" function. /// @param x The multiplicand as an unsigned 60.18-decimal fixed-point number. /// @param y The multiplier as an unsigned 60.18-decimal fixed-point number. /// @return result The product as an unsigned 60.18-decimal fixed-point number. function mul(uint256 x, uint256 y) internal pure returns (uint256 result) { result = PRBMath.mulDivFixedPoint(x, y); } /// @notice Returns PI as an unsigned 60.18-decimal fixed-point number. function pi() internal pure returns (uint256 result) { result = 3_141592653589793238; } /// @notice Raises x to the power of y. /// /// @dev Based on the insight that x^y = 2^(log2(x) * y). /// /// Requirements: /// - All from "exp2", "log2" and "mul". /// /// Caveats: /// - All from "exp2", "log2" and "mul". /// - Assumes 0^0 is 1. /// /// @param x Number to raise to given power y, as an unsigned 60.18-decimal fixed-point number. /// @param y Exponent to raise x to, as an unsigned 60.18-decimal fixed-point number. /// @return result x raised to power y, as an unsigned 60.18-decimal fixed-point number. function pow(uint256 x, uint256 y) internal pure returns (uint256 result) { if (x == 0) { result = y == 0 ? SCALE : uint256(0); } else { result = exp2(mul(log2(x), y)); } } /// @notice Raises x (unsigned 60.18-decimal fixed-point number) to the power of y (basic unsigned integer) using the /// famous algorithm "exponentiation by squaring". /// /// @dev See https://en.wikipedia.org/wiki/Exponentiation_by_squaring /// /// Requirements: /// - The result must fit within MAX_UD60x18. /// /// Caveats: /// - All from "mul". /// - Assumes 0^0 is 1. /// /// @param x The base as an unsigned 60.18-decimal fixed-point number. /// @param y The exponent as an uint256. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function powu(uint256 x, uint256 y) internal pure returns (uint256 result) { // Calculate the first iteration of the loop in advance. result = y & 1 > 0 ? x : SCALE; // Equivalent to "for(y /= 2; y > 0; y /= 2)" but faster. for (y >>= 1; y > 0; y >>= 1) { x = PRBMath.mulDivFixedPoint(x, x); // Equivalent to "y % 2 == 1" but faster. if (y & 1 > 0) { result = PRBMath.mulDivFixedPoint(result, x); } } } /// @notice Returns 1 as an unsigned 60.18-decimal fixed-point number. function scale() internal pure returns (uint256 result) { result = SCALE; } /// @notice Calculates the square root of x, rounding down. /// @dev Uses the Babylonian method https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method. /// /// Requirements: /// - x must be less than MAX_UD60x18 / SCALE. /// /// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the square root. /// @return result The result as an unsigned 60.18-decimal fixed-point . function sqrt(uint256 x) internal pure returns (uint256 result) { unchecked { if (x > MAX_UD60x18 / SCALE) { revert PRBMathUD60x18__SqrtOverflow(x); } // Multiply x by the SCALE to account for the factor of SCALE that is picked up when multiplying two unsigned // 60.18-decimal fixed-point numbers together (in this case, those two numbers are both the square root). result = PRBMath.sqrt(x * SCALE); } } /// @notice Converts a unsigned 60.18-decimal fixed-point number to basic integer form, rounding down in the process. /// @param x The unsigned 60.18-decimal fixed-point number to convert. /// @return result The same number in basic integer form. function toUint(uint256 x) internal pure returns (uint256 result) { unchecked { result = x / SCALE; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import '../ERC721A.sol'; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721ABurnable.sol'; import '../ERC721A.sol'; /** * @title ERC721A Burnable Token * @dev ERC721A Token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: Unlicense pragma solidity >=0.8.4; /// @notice Emitted when the result overflows uint256. error PRBMath__MulDivFixedPointOverflow(uint256 prod1); /// @notice Emitted when the result overflows uint256. error PRBMath__MulDivOverflow(uint256 prod1, uint256 denominator); /// @notice Emitted when one of the inputs is type(int256).min. error PRBMath__MulDivSignedInputTooSmall(); /// @notice Emitted when the intermediary absolute result overflows int256. error PRBMath__MulDivSignedOverflow(uint256 rAbs); /// @notice Emitted when the input is MIN_SD59x18. error PRBMathSD59x18__AbsInputTooSmall(); /// @notice Emitted when ceiling a number overflows SD59x18. error PRBMathSD59x18__CeilOverflow(int256 x); /// @notice Emitted when one of the inputs is MIN_SD59x18. error PRBMathSD59x18__DivInputTooSmall(); /// @notice Emitted when one of the intermediary unsigned results overflows SD59x18. error PRBMathSD59x18__DivOverflow(uint256 rAbs); /// @notice Emitted when the input is greater than 133.084258667509499441. error PRBMathSD59x18__ExpInputTooBig(int256 x); /// @notice Emitted when the input is greater than 192. error PRBMathSD59x18__Exp2InputTooBig(int256 x); /// @notice Emitted when flooring a number underflows SD59x18. error PRBMathSD59x18__FloorUnderflow(int256 x); /// @notice Emitted when converting a basic integer to the fixed-point format overflows SD59x18. error PRBMathSD59x18__FromIntOverflow(int256 x); /// @notice Emitted when converting a basic integer to the fixed-point format underflows SD59x18. error PRBMathSD59x18__FromIntUnderflow(int256 x); /// @notice Emitted when the product of the inputs is negative. error PRBMathSD59x18__GmNegativeProduct(int256 x, int256 y); /// @notice Emitted when multiplying the inputs overflows SD59x18. error PRBMathSD59x18__GmOverflow(int256 x, int256 y); /// @notice Emitted when the input is less than or equal to zero. error PRBMathSD59x18__LogInputTooSmall(int256 x); /// @notice Emitted when one of the inputs is MIN_SD59x18. error PRBMathSD59x18__MulInputTooSmall(); /// @notice Emitted when the intermediary absolute result overflows SD59x18. error PRBMathSD59x18__MulOverflow(uint256 rAbs); /// @notice Emitted when the intermediary absolute result overflows SD59x18. error PRBMathSD59x18__PowuOverflow(uint256 rAbs); /// @notice Emitted when the input is negative. error PRBMathSD59x18__SqrtNegativeInput(int256 x); /// @notice Emitted when the calculating the square root overflows SD59x18. error PRBMathSD59x18__SqrtOverflow(int256 x); /// @notice Emitted when addition overflows UD60x18. error PRBMathUD60x18__AddOverflow(uint256 x, uint256 y); /// @notice Emitted when ceiling a number overflows UD60x18. error PRBMathUD60x18__CeilOverflow(uint256 x); /// @notice Emitted when the input is greater than 133.084258667509499441. error PRBMathUD60x18__ExpInputTooBig(uint256 x); /// @notice Emitted when the input is greater than 192. error PRBMathUD60x18__Exp2InputTooBig(uint256 x); /// @notice Emitted when converting a basic integer to the fixed-point format format overflows UD60x18. error PRBMathUD60x18__FromUintOverflow(uint256 x); /// @notice Emitted when multiplying the inputs overflows UD60x18. error PRBMathUD60x18__GmOverflow(uint256 x, uint256 y); /// @notice Emitted when the input is less than 1. error PRBMathUD60x18__LogInputTooSmall(uint256 x); /// @notice Emitted when the calculating the square root overflows UD60x18. error PRBMathUD60x18__SqrtOverflow(uint256 x); /// @notice Emitted when subtraction underflows UD60x18. error PRBMathUD60x18__SubUnderflow(uint256 x, uint256 y); /// @dev Common mathematical functions used in both PRBMathSD59x18 and PRBMathUD60x18. Note that this shared library /// does not always assume the signed 59.18-decimal fixed-point or the unsigned 60.18-decimal fixed-point /// representation. When it does not, it is explicitly mentioned in the NatSpec documentation. library PRBMath { /// STRUCTS /// struct SD59x18 { int256 value; } struct UD60x18 { uint256 value; } /// STORAGE /// /// @dev How many trailing decimals can be represented. uint256 internal constant SCALE = 1e18; /// @dev Largest power of two divisor of SCALE. uint256 internal constant SCALE_LPOTD = 262144; /// @dev SCALE inverted mod 2^256. uint256 internal constant SCALE_INVERSE = 78156646155174841979727994598816262306175212592076161876661_508869554232690281; /// FUNCTIONS /// /// @notice Calculates the binary exponent of x using the binary fraction method. /// @dev Has to use 192.64-bit fixed-point numbers. /// See https://ethereum.stackexchange.com/a/96594/24693. /// @param x The exponent as an unsigned 192.64-bit fixed-point number. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function exp2(uint256 x) internal pure returns (uint256 result) { unchecked { // Start from 0.5 in the 192.64-bit fixed-point format. result = 0x800000000000000000000000000000000000000000000000; // Multiply the result by root(2, 2^-i) when the bit at position i is 1. None of the intermediary results overflows // because the initial result is 2^191 and all magic factors are less than 2^65. if (x & 0x8000000000000000 > 0) { result = (result * 0x16A09E667F3BCC909) >> 64; } if (x & 0x4000000000000000 > 0) { result = (result * 0x1306FE0A31B7152DF) >> 64; } if (x & 0x2000000000000000 > 0) { result = (result * 0x1172B83C7D517ADCE) >> 64; } if (x & 0x1000000000000000 > 0) { result = (result * 0x10B5586CF9890F62A) >> 64; } if (x & 0x800000000000000 > 0) { result = (result * 0x1059B0D31585743AE) >> 64; } if (x & 0x400000000000000 > 0) { result = (result * 0x102C9A3E778060EE7) >> 64; } if (x & 0x200000000000000 > 0) { result = (result * 0x10163DA9FB33356D8) >> 64; } if (x & 0x100000000000000 > 0) { result = (result * 0x100B1AFA5ABCBED61) >> 64; } if (x & 0x80000000000000 > 0) { result = (result * 0x10058C86DA1C09EA2) >> 64; } if (x & 0x40000000000000 > 0) { result = (result * 0x1002C605E2E8CEC50) >> 64; } if (x & 0x20000000000000 > 0) { result = (result * 0x100162F3904051FA1) >> 64; } if (x & 0x10000000000000 > 0) { result = (result * 0x1000B175EFFDC76BA) >> 64; } if (x & 0x8000000000000 > 0) { result = (result * 0x100058BA01FB9F96D) >> 64; } if (x & 0x4000000000000 > 0) { result = (result * 0x10002C5CC37DA9492) >> 64; } if (x & 0x2000000000000 > 0) { result = (result * 0x1000162E525EE0547) >> 64; } if (x & 0x1000000000000 > 0) { result = (result * 0x10000B17255775C04) >> 64; } if (x & 0x800000000000 > 0) { result = (result * 0x1000058B91B5BC9AE) >> 64; } if (x & 0x400000000000 > 0) { result = (result * 0x100002C5C89D5EC6D) >> 64; } if (x & 0x200000000000 > 0) { result = (result * 0x10000162E43F4F831) >> 64; } if (x & 0x100000000000 > 0) { result = (result * 0x100000B1721BCFC9A) >> 64; } if (x & 0x80000000000 > 0) { result = (result * 0x10000058B90CF1E6E) >> 64; } if (x & 0x40000000000 > 0) { result = (result * 0x1000002C5C863B73F) >> 64; } if (x & 0x20000000000 > 0) { result = (result * 0x100000162E430E5A2) >> 64; } if (x & 0x10000000000 > 0) { result = (result * 0x1000000B172183551) >> 64; } if (x & 0x8000000000 > 0) { result = (result * 0x100000058B90C0B49) >> 64; } if (x & 0x4000000000 > 0) { result = (result * 0x10000002C5C8601CC) >> 64; } if (x & 0x2000000000 > 0) { result = (result * 0x1000000162E42FFF0) >> 64; } if (x & 0x1000000000 > 0) { result = (result * 0x10000000B17217FBB) >> 64; } if (x & 0x800000000 > 0) { result = (result * 0x1000000058B90BFCE) >> 64; } if (x & 0x400000000 > 0) { result = (result * 0x100000002C5C85FE3) >> 64; } if (x & 0x200000000 > 0) { result = (result * 0x10000000162E42FF1) >> 64; } if (x & 0x100000000 > 0) { result = (result * 0x100000000B17217F8) >> 64; } if (x & 0x80000000 > 0) { result = (result * 0x10000000058B90BFC) >> 64; } if (x & 0x40000000 > 0) { result = (result * 0x1000000002C5C85FE) >> 64; } if (x & 0x20000000 > 0) { result = (result * 0x100000000162E42FF) >> 64; } if (x & 0x10000000 > 0) { result = (result * 0x1000000000B17217F) >> 64; } if (x & 0x8000000 > 0) { result = (result * 0x100000000058B90C0) >> 64; } if (x & 0x4000000 > 0) { result = (result * 0x10000000002C5C860) >> 64; } if (x & 0x2000000 > 0) { result = (result * 0x1000000000162E430) >> 64; } if (x & 0x1000000 > 0) { result = (result * 0x10000000000B17218) >> 64; } if (x & 0x800000 > 0) { result = (result * 0x1000000000058B90C) >> 64; } if (x & 0x400000 > 0) { result = (result * 0x100000000002C5C86) >> 64; } if (x & 0x200000 > 0) { result = (result * 0x10000000000162E43) >> 64; } if (x & 0x100000 > 0) { result = (result * 0x100000000000B1721) >> 64; } if (x & 0x80000 > 0) { result = (result * 0x10000000000058B91) >> 64; } if (x & 0x40000 > 0) { result = (result * 0x1000000000002C5C8) >> 64; } if (x & 0x20000 > 0) { result = (result * 0x100000000000162E4) >> 64; } if (x & 0x10000 > 0) { result = (result * 0x1000000000000B172) >> 64; } if (x & 0x8000 > 0) { result = (result * 0x100000000000058B9) >> 64; } if (x & 0x4000 > 0) { result = (result * 0x10000000000002C5D) >> 64; } if (x & 0x2000 > 0) { result = (result * 0x1000000000000162E) >> 64; } if (x & 0x1000 > 0) { result = (result * 0x10000000000000B17) >> 64; } if (x & 0x800 > 0) { result = (result * 0x1000000000000058C) >> 64; } if (x & 0x400 > 0) { result = (result * 0x100000000000002C6) >> 64; } if (x & 0x200 > 0) { result = (result * 0x10000000000000163) >> 64; } if (x & 0x100 > 0) { result = (result * 0x100000000000000B1) >> 64; } if (x & 0x80 > 0) { result = (result * 0x10000000000000059) >> 64; } if (x & 0x40 > 0) { result = (result * 0x1000000000000002C) >> 64; } if (x & 0x20 > 0) { result = (result * 0x10000000000000016) >> 64; } if (x & 0x10 > 0) { result = (result * 0x1000000000000000B) >> 64; } if (x & 0x8 > 0) { result = (result * 0x10000000000000006) >> 64; } if (x & 0x4 > 0) { result = (result * 0x10000000000000003) >> 64; } if (x & 0x2 > 0) { result = (result * 0x10000000000000001) >> 64; } if (x & 0x1 > 0) { result = (result * 0x10000000000000001) >> 64; } // We're doing two things at the same time: // // 1. Multiply the result by 2^n + 1, where "2^n" is the integer part and the one is added to account for // the fact that we initially set the result to 0.5. This is accomplished by subtracting from 191 // rather than 192. // 2. Convert the result to the unsigned 60.18-decimal fixed-point format. // // This works because 2^(191-ip) = 2^ip / 2^191, where "ip" is the integer part "2^n". result *= SCALE; result >>= (191 - (x >> 64)); } } /// @notice Finds the zero-based index of the first one in the binary representation of x. /// @dev See the note on msb in the "Find First Set" Wikipedia article https://en.wikipedia.org/wiki/Find_first_set /// @param x The uint256 number for which to find the index of the most significant bit. /// @return msb The index of the most significant bit as an uint256. function mostSignificantBit(uint256 x) internal pure returns (uint256 msb) { if (x >= 2**128) { x >>= 128; msb += 128; } if (x >= 2**64) { x >>= 64; msb += 64; } if (x >= 2**32) { x >>= 32; msb += 32; } if (x >= 2**16) { x >>= 16; msb += 16; } if (x >= 2**8) { x >>= 8; msb += 8; } if (x >= 2**4) { x >>= 4; msb += 4; } if (x >= 2**2) { x >>= 2; msb += 2; } if (x >= 2**1) { // No need to shift x any more. msb += 1; } } /// @notice Calculates floor(x*y÷denominator) with full precision. /// /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv. /// /// Requirements: /// - The denominator cannot be zero. /// - The result must fit within uint256. /// /// Caveats: /// - This function does not work with fixed-point numbers. /// /// @param x The multiplicand as an uint256. /// @param y The multiplier as an uint256. /// @param denominator The divisor as an uint256. /// @return result The result as an uint256. function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { unchecked { result = prod0 / denominator; } return result; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (prod1 >= denominator) { revert PRBMath__MulDivOverflow(prod1, denominator); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. unchecked { // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 lpotdod = denominator & (~denominator + 1); assembly { // Divide denominator by lpotdod. denominator := div(denominator, lpotdod) // Divide [prod1 prod0] by lpotdod. prod0 := div(prod0, lpotdod) // Flip lpotdod such that it is 2^256 / lpotdod. If lpotdod is zero, then it becomes one. lpotdod := add(div(sub(0, lpotdod), lpotdod), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * lpotdod; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /// @notice Calculates floor(x*y÷1e18) with full precision. /// /// @dev Variant of "mulDiv" with constant folding, i.e. in which the denominator is always 1e18. Before returning the /// final result, we add 1 if (x * y) % SCALE >= HALF_SCALE. Without this, 6.6e-19 would be truncated to 0 instead of /// being rounded to 1e-18. See "Listing 6" and text above it at https://accu.org/index.php/journals/1717. /// /// Requirements: /// - The result must fit within uint256. /// /// Caveats: /// - The body is purposely left uncommented; see the NatSpec comments in "PRBMath.mulDiv" to understand how this works. /// - It is assumed that the result can never be type(uint256).max when x and y solve the following two equations: /// 1. x * y = type(uint256).max * SCALE /// 2. (x * y) % SCALE >= SCALE / 2 /// /// @param x The multiplicand as an unsigned 60.18-decimal fixed-point number. /// @param y The multiplier as an unsigned 60.18-decimal fixed-point number. /// @return result The result as an unsigned 60.18-decimal fixed-point number. function mulDivFixedPoint(uint256 x, uint256 y) internal pure returns (uint256 result) { uint256 prod0; uint256 prod1; assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } if (prod1 >= SCALE) { revert PRBMath__MulDivFixedPointOverflow(prod1); } uint256 remainder; uint256 roundUpUnit; assembly { remainder := mulmod(x, y, SCALE) roundUpUnit := gt(remainder, 499999999999999999) } if (prod1 == 0) { unchecked { result = (prod0 / SCALE) + roundUpUnit; return result; } } assembly { result := add( mul( or( div(sub(prod0, remainder), SCALE_LPOTD), mul(sub(prod1, gt(remainder, prod0)), add(div(sub(0, SCALE_LPOTD), SCALE_LPOTD), 1)) ), SCALE_INVERSE ), roundUpUnit ) } } /// @notice Calculates floor(x*y÷denominator) with full precision. /// /// @dev An extension of "mulDiv" for signed numbers. Works by computing the signs and the absolute values separately. /// /// Requirements: /// - None of the inputs can be type(int256).min. /// - The result must fit within int256. /// /// @param x The multiplicand as an int256. /// @param y The multiplier as an int256. /// @param denominator The divisor as an int256. /// @return result The result as an int256. function mulDivSigned( int256 x, int256 y, int256 denominator ) internal pure returns (int256 result) { if (x == type(int256).min || y == type(int256).min || denominator == type(int256).min) { revert PRBMath__MulDivSignedInputTooSmall(); } // Get hold of the absolute values of x, y and the denominator. uint256 ax; uint256 ay; uint256 ad; unchecked { ax = x < 0 ? uint256(-x) : uint256(x); ay = y < 0 ? uint256(-y) : uint256(y); ad = denominator < 0 ? uint256(-denominator) : uint256(denominator); } // Compute the absolute value of (x*y)÷denominator. The result must fit within int256. uint256 rAbs = mulDiv(ax, ay, ad); if (rAbs > uint256(type(int256).max)) { revert PRBMath__MulDivSignedOverflow(rAbs); } // Get the signs of x, y and the denominator. uint256 sx; uint256 sy; uint256 sd; assembly { sx := sgt(x, sub(0, 1)) sy := sgt(y, sub(0, 1)) sd := sgt(denominator, sub(0, 1)) } // XOR over sx, sy and sd. This is checking whether there are one or three negative signs in the inputs. // If yes, the result should be negative. result = sx ^ sy ^ sd == 0 ? -int256(rAbs) : int256(rAbs); } /// @notice Calculates the square root of x, rounding down. /// @dev Uses the Babylonian method https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method. /// /// Caveats: /// - This function does not work with fixed-point numbers. /// /// @param x The uint256 number for which to calculate the square root. /// @return result The result as an uint256. function sqrt(uint256 x) internal pure returns (uint256 result) { if (x == 0) { return 0; } // Set the initial guess to the least power of two that is greater than or equal to sqrt(x). uint256 xAux = uint256(x); result = 1; if (xAux >= 0x100000000000000000000000000000000) { xAux >>= 128; result <<= 64; } if (xAux >= 0x10000000000000000) { xAux >>= 64; result <<= 32; } if (xAux >= 0x100000000) { xAux >>= 32; result <<= 16; } if (xAux >= 0x10000) { xAux >>= 16; result <<= 8; } if (xAux >= 0x100) { xAux >>= 8; result <<= 4; } if (xAux >= 0x10) { xAux >>= 4; result <<= 2; } if (xAux >= 0x8) { result <<= 1; } // The operations can never overflow because the result is max 2^127 when it enters this block. unchecked { result = (result + x / result) >> 1; result = (result + x / result) >> 1; result = (result + x / result) >> 1; result = (result + x / result) >> 1; result = (result + x / result) >> 1; result = (result + x / result) >> 1; result = (result + x / result) >> 1; // Seven iterations should be enough uint256 roundedDownResult = x / result; return result >= roundedDownResult ? roundedDownResult : result; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721A.sol"; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or( owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags) ) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if ( !_checkContractOnERC721Received( address(0), to, index++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer( startTokenId, startTokenId + quantity - 1, address(0), to ); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); ( uint256 approvedAddressSlot, address approvedAddress ) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received( _msgSenderERC721A(), from, tokenId, _data ) returns (bytes4 retval) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of an ERC721ABurnable compliant contract. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; }
{ "optimizer": { "enabled": true, "runs": 1000, "details": { "yul": false } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"uint256","name":"prod1","type":"uint256"}],"name":"PRBMath__MulDivFixedPointOverflow","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOblisLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"obMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oblisLiveAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"oblisMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"oblisMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLiveAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remainingWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remainingoblisMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistLiveAt","type":"uint256"},{"internalType":"uint256","name":"_publicLiveAt","type":"uint256"},{"internalType":"uint256","name":"_oblisLiveAt","type":"uint256"}],"name":"setLiveAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistSupply","type":"uint256"},{"internalType":"uint256","name":"_reservedSupply","type":"uint256"}],"name":"setMaxSupplies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_obMerkleRoot","type":"bytes32"}],"name":"setObMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","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":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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":"whitelistLiveAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405260516080818152906200381760a03980516200002a91600a91602090910190620002e5565b507f4c85142df33a2228d9a113e22859c0352e9f07feaf54dbc983d67b5475222bcb600b557ff7d9a2553ecd1312f34ff996374143812f5b960489f0a4057edaa1b264b2fac0600c55600d805460ff1916905566354a6ba7a18000600e55600f80546001600160a01b031990811673f8114e3d55a25b4bc79e9a7306912ff1294a61fd1790915560108054909116736d9ed472da62b604ed479026185995889ae8f80e179055600360135563633054546014556363307e84601555636330c1506016556115b4601755610eac6018556107096019556000601a819055601b553480156200011657600080fd5b506040805180820182526008808252675368756a696e6b6f60c01b6020808401828152855180870190965292855284015281519192916200015a91600291620002e5565b50805162000170906003906020840190620002e5565b50506001600055506200018333620001a2565b600f546200019c906001600160a01b03166037620001f4565b620003d2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b0383166200021e57604051622e076360e81b815260040160405180910390fd5b816200023d5760405163b562e8dd60e01b815260040160405180910390fd5b6113888211156200026157604051633db1f9af60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600482528083206001871460e11b4260a01b17851790558051600019868801018152905185927fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d928290030190a40160005550565b828054620002f390620003a1565b90600052602060002090601f01602090048101928262000317576000855562000362565b82601f106200033257805160ff191683800117855562000362565b8280016001018555821562000362579182015b828111156200036257825182559160200191906001019062000345565b506200037092915062000374565b5090565b5b8082111562000370576000815560010162000375565b634e487b7160e01b600052602260045260246000fd5b600281046001821680620003b657607f821691505b60208210811415620003cc57620003cc6200038b565b50919050565b61343580620003e26000396000f3fe60806040526004361061038c5760003560e01c806370a08231116101dc578063a22cb46511610102578063d5abeb01116100a0578063efb6a85c1161006f578063efb6a85c14610a35578063f0f4426014610a4b578063f2fde38b14610a6b578063f59ee86614610a8b57600080fd5b8063d5abeb0114610989578063e268e4d31461099f578063e985e9c5146109bf578063ee2e62ed14610a0857600080fd5b8063bbaac02f116100dc578063bbaac02f14610909578063c23dc68f14610929578063c87b56dd14610956578063d2cab0561461097657600080fd5b8063a22cb465146108b3578063b7b20404146108d3578063b88d4fde146108e957600080fd5b80638cc54e7f1161017a57806399a2557a1161014957806399a2557a146108535780639c132e6f14610873578063a035b1fe1461088a578063a0712d68146108a057600080fd5b80638cc54e7f146107eb5780638da5cb5b1461080057806391b7f5ed1461081e57806395d89b411461083e57600080fd5b80637cb64759116101b65780637cb64759146107685780638462151c1461078857806385f2aef2146107b55780638990694f146107d557600080fd5b806370a0823114610713578063715018a61461073357806372219d231461074857600080fd5b80633b1c0a31116102c157806349a5980a1161025f5780635bbb21771161022e5780635bbb21771461068f5780635e5f3ce4146106bc57806361d027b3146106d35780636352211e146106f357600080fd5b806349a5980a1461061f57806354214f691461063f57806355f804b31461065957806356ce17d41461067957600080fd5b806342966c681161029b57806342966c68146105a657806344d19d2b146105c6578063453c2310146105dc57806347aa442a146105f257600080fd5b80633b1c0a31146105515780633ccfd60b1461057157806342842e0e1461058657600080fd5b80631af688d71161032e5780632d3754ee116103085780632d3754ee146104f85780632eb4a7ab1461050e5780633281fa3f1461052457806333e614131461053b57600080fd5b80631af688d7146104a257806323b872dd146104b85780632650ad44146104d857600080fd5b8063081812fc1161036a578063081812fc1461040b578063095ea7b3146104385780630a8839c21461045857806318160ddd1461048557600080fd5b806301ffc9a7146103915780630486d9e8146103c757806306fdde03146103e9575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046127a8565b610aab565b6040516103be91906127d3565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612844565b610b48565b005b3480156103f557600080fd5b506103fe610cb1565b6040516103be91906128fe565b34801561041757600080fd5b5061042b61042636600461290f565b610d43565b6040516103be919061294a565b34801561044457600080fd5b506103e761045336600461296c565b610da0565b34801561046457600080fd5b506104786104733660046129a9565b610e83565b6040516103be91906129d0565b34801561049157600080fd5b506001546000540360001901610478565b3480156104ae57600080fd5b50610478601b5481565b3480156104c457600080fd5b506103e76104d33660046129de565b610eeb565b3480156104e457600080fd5b506103e76104f3366004612a2e565b6110d6565b34801561050457600080fd5b5061047860155481565b34801561051a57600080fd5b50610478600b5481565b34801561053057600080fd5b5060145442116103b1565b34801561054757600080fd5b5061047860185481565b34801561055d57600080fd5b506103e761056c366004612a63565b61110e565b34801561057d57600080fd5b506103e7611143565b34801561059257600080fd5b506103e76105a13660046129de565b6112fc565b3480156105b257600080fd5b506103e76105c136600461290f565b61131c565b3480156105d257600080fd5b5061047860195481565b3480156105e857600080fd5b5061047860135481565b3480156105fe57600080fd5b5061047861060d3660046129a9565b60116020526000908152604090205481565b34801561062b57600080fd5b506103e761063a366004612a98565b61132a565b34801561064b57600080fd5b50600d546103b19060ff1681565b34801561066557600080fd5b506103e7610674366004612b04565b611367565b34801561068557600080fd5b50610478600c5481565b34801561069b57600080fd5b506106af6106aa366004612c53565b61139d565b6040516103be9190612d50565b3480156106c857600080fd5b5060155442116103b1565b3480156106df57600080fd5b50600f5461042b906001600160a01b031681565b3480156106ff57600080fd5b5061042b61070e36600461290f565b61146b565b34801561071f57600080fd5b5061047861072e3660046129a9565b611476565b34801561073f57600080fd5b506103e76114de565b34801561075457600080fd5b506104786107633660046129a9565b611512565b34801561077457600080fd5b506103e761078336600461290f565b611568565b34801561079457600080fd5b506107a86107a33660046129a9565b611597565b6040516103be9190612db3565b3480156107c157600080fd5b5060105461042b906001600160a01b031681565b3480156107e157600080fd5b50610478601a5481565b3480156107f757600080fd5b506103fe6116a2565b34801561080c57600080fd5b506008546001600160a01b031661042b565b34801561082a57600080fd5b506103e761083936600461290f565b611730565b34801561084a57600080fd5b506103fe61175f565b34801561085f57600080fd5b506107a861086e366004612dc4565b61176e565b34801561087f57600080fd5b5060165442116103b1565b34801561089657600080fd5b50610478600e5481565b6103e76108ae36600461290f565b611913565b3480156108bf57600080fd5b506103e76108ce366004612de8565b6119b0565b3480156108df57600080fd5b5061047860145481565b3480156108f557600080fd5b506103e7610904366004612eaa565b611a62565b34801561091557600080fd5b506103e7610924366004612b04565b611aa6565b34801561093557600080fd5b5061094961094436600461290f565b611adc565b6040516103be9190612f29565b34801561096257600080fd5b506103fe61097136600461290f565b611b64565b6103e7610984366004612844565b611c5a565b34801561099557600080fd5b5061047860175481565b3480156109ab57600080fd5b506103e76109ba36600461290f565b611dd0565b3480156109cb57600080fd5b506103b16109da366004612f37565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1457600080fd5b50610478610a233660046129a9565b60126020526000908152604090205481565b348015610a4157600080fd5b5061047860165481565b348015610a5757600080fd5b506103e7610a663660046129a9565b611dff565b348015610a7757600080fd5b506103e7610a863660046129a9565b611e58565b348015610a9757600080fd5b506103e7610aa636600461290f565b611eb1565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610b0e57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b4257507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6016544211610b725760405162461bcd60e51b8152600401610b6990612f85565b60405180910390fd5b60195483601b54610b839190612fab565b10610ba05760405162461bcd60e51b8152600401610b6990612ff7565b60135433600090815260126020526040902054610bbe908590612fab565b10610bdb5760405162461bcd60e51b8152600401610b699061303b565b600033604051602001610bee9190613073565b604051602081830303815290604052805190602001209050610c4783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611ee0565b610c635760405162461bcd60e51b8152600401610b69906130bc565b3360009081526012602052604081208054869290610c82908490612fab565b9250508190555083601b6000828254610c9b9190612fab565b90915550610cab90503385611ef6565b50505050565b606060028054610cc0906130e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cec906130e2565b8015610d395780601f10610d0e57610100808354040283529160200191610d39565b820191906000526020600020905b815481529060010190602001808311610d1c57829003601f168201915b5050505050905090565b6000610d4e82612006565b610d84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dab8261146b565b9050336001600160a01b03821614610e1a576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610e1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b038116600090815260116020526040812054601354610eab9060019061310f565b1115610ee3576001600160a01b038216600090815260116020526040902054601354600191610ed99161310f565b610b42919061310f565b506000919050565b6000610ef68261203b565b9050836001600160a01b0316816001600160a01b031614610f43576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054610f6f8187335b6001600160a01b039081169116811491141790565b610fb7576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610fb757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ff7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561100257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661108d576001840160008181526004602052604090205461108b57600054811461108b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146111005760405162461bcd60e51b8152600401610b6990613158565b601492909255601555601655565b6008546001600160a01b031633146111385760405162461bcd60e51b8152600401610b6990613158565b601891909155601955565b6008546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610b6990613158565b600f5447906000906001600160a01b031661119a611193662386f26fc10000605c613168565b84906120a4565b6040516111a690613187565b60006040518083038185875af1925050503d80600081146111e3576040519150601f19603f3d011682016040523d82523d6000602084013e6111e8565b606091505b50506010549091506000906001600160a01b0316611218611211662386f26fc100006008613168565b85906120a4565b60405161122490613187565b60006040518083038185875af1925050503d8060008114611261576040519150601f19603f3d011682016040523d82523d6000602084013e611266565b606091505b505090508180156112745750805b1561127e57505050565b6000336001600160a01b03168460405161129790613187565b60006040518083038185875af1925050503d80600081146112d4576040519150601f19603f3d011682016040523d82523d6000602084013e6112d9565b606091505b5050905080610cab5760405162461bcd60e51b8152600401610b69906131c3565b565b61131783838360405180602001604052806000815250611a62565b505050565b6113278160016120b0565b50565b6008546001600160a01b031633146113545760405162461bcd60e51b8152600401610b6990613158565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146113915760405162461bcd60e51b8152600401610b6990613158565b611317600983836126ed565b805160609060008167ffffffffffffffff8111156113bd576113bd612b4c565b60405190808252806020026020018201604052801561140f57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816113db5790505b50905060005b8281146114635761143e858281518110611431576114316131d3565b6020026020010151611adc565b828281518110611450576114506131d3565b6020908102919091010152600101611415565b509392505050565b6000610b428261203b565b60006001600160a01b0382166114b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115085760405162461bcd60e51b8152600401610b6990613158565b6112fa6000612229565b6001600160a01b03811660009081526012602052604081205460135461153a9060019061310f565b1115610ee3576001600160a01b038216600090815260126020526040902054601354600191610ed99161310f565b6008546001600160a01b031633146115925760405162461bcd60e51b8152600401610b6990613158565b600b55565b606060008060006115a785611476565b905060008167ffffffffffffffff8111156115c4576115c4612b4c565b6040519080825280602002602001820160405280156115ed578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b8386146116965761162881612288565b91508160400151156116395761168e565b81516001600160a01b03161561164e57815194505b876001600160a01b0316856001600160a01b0316141561168e5780838780600101985081518110611681576116816131d3565b6020026020010181815250505b600101611618565b50909695505050505050565b600a80546116af906130e2565b80601f01602080910402602001604051908101604052809291908181526020018280546116db906130e2565b80156117285780601f106116fd57610100808354040283529160200191611728565b820191906000526020600020905b81548152906001019060200180831161170b57829003601f168201915b505050505081565b6008546001600160a01b0316331461175a5760405162461bcd60e51b8152600401610b6990613158565b600e55565b606060038054610cc0906130e2565b60608183106117a9576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117b560005490565b905060018510156117c557600194505b808411156117d1578093505b60006117dc87611476565b9050848610156117fb57858503818110156117f5578091505b506117ff565b5060005b60008167ffffffffffffffff81111561181a5761181a612b4c565b604051908082528060200260200182016040528015611843578160200160208202803683370190505b5090508161185657935061190c92505050565b600061186188611adc565b905060008160400151611872575080515b885b8881141580156118845750848714155b156119005761189281612288565b92508260400151156118a3576118f8565b82516001600160a01b0316156118b857825191505b8a6001600160a01b0316826001600160a01b031614156118f857808488806001019950815181106118eb576118eb6131d3565b6020026020010181815250505b600101611874565b50505092835250909150505b9392505050565b60155442116119345760405162461bcd60e51b8152600401610b6990612f85565b600e546119419082613168565b3410156119605760405162461bcd60e51b8152600401610b6990612ff7565b60185481601a546119719190612fab565b1061198e5760405162461bcd60e51b8152600401610b699061321d565b80601a60008282546119a09190612fab565b9091555061132790503382611ef6565b6001600160a01b0382163314156119f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611a569085906127d3565b60405180910390a35050565b611a6d848484610eeb565b6001600160a01b0383163b15610cab57611a8984848484612307565b610cab576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b03163314611ad05760405162461bcd60e51b8152600401610b6990613158565b611317600a83836126ed565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080611b3557506000548310155b15611b405792915050565b611b4983612288565b9050806040015115611b5b5792915050565b61190c836123ff565b6060611b6f82612006565b611b8c57604051636f96cda160e11b815260040160405180910390fd5b600d5460ff16611c2857600a8054611ba3906130e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcf906130e2565b8015611c1c5780601f10611bf157610100808354040283529160200191611c1c565b820191906000526020600020905b815481529060010190602001808311611bff57829003601f168201915b50505050509050919050565b6009611c3383612477565b604051602001611c449291906132bd565b6040516020818303038152906040529050919050565b6014544211611c7b5760405162461bcd60e51b8152600401610b6990612f85565b60185483601a54611c8c9190612fab565b10611ca95760405162461bcd60e51b8152600401610b6990612ff7565b600e54611cb69084613168565b341015611cd55760405162461bcd60e51b8152600401610b699061303b565b60135433600090815260116020526040902054611cf3908590612fab565b10611d105760405162461bcd60e51b8152600401610b699061321d565b600033604051602001611d239190613073565b604051602081830303815290604052805190602001209050611d7c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611ee0565b611d985760405162461bcd60e51b8152600401610b69906130bc565b3360009081526011602052604081208054869290611db7908490612fab565b9250508190555083601a6000828254610c9b9190612fab565b6008546001600160a01b03163314611dfa5760405162461bcd60e51b8152600401610b6990613158565b601355565b6008546001600160a01b03163314611e295760405162461bcd60e51b8152600401610b6990613158565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546001600160a01b03163314611e825760405162461bcd60e51b8152600401610b6990613158565b6001600160a01b038116611ea85760405162461bcd60e51b8152600401610b69906132d5565b61132781612229565b6008546001600160a01b03163314611edb5760405162461bcd60e51b8152600401610b6990613158565b600c55565b600082611eed858461258d565b14949350505050565b6000546001600160a01b038316611f39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611f70576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fba5760005550505050565b60008160011115801561201a575060005482105b8015610b42575050600090815260046020526040902054600160e01b161590565b6000818060011161208b5760005481101561208b57600081815260046020526040902054600160e01b8116612089575b8061190c57506000190160008181526004602052604090205461206b565b505b604051636f96cda160e11b815260040160405180910390fd5b600061190c83836125f9565b60006120bb8361203b565b9050806000806120d986600090815260066020526040902080549091565b915091508415612136576120ee818433610f5a565b612136576001600160a01b038316600090815260076020908152604080832033845290915290205460ff1661213657604051632ce44b5f60e11b815260040160405180910390fd5b801561214157600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c030000000000000000000000000000000000000000000000000000000017600087815260046020526040902055600160e11b84166121e157600186016000818152600460205260409020546121df5760005481146121df5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b4290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061233c903390899088908890600401613336565b602060405180830381600087803b15801561235657600080fd5b505af1925050508015612386575060408051601f3d908101601f1916820190925261238391810190613385565b60015b6123e1573d8080156123b4576040519150601f19603f3d011682016040523d82523d6000602084013e6123b9565b606091505b5080516123d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610b4261242f8361203b565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b60608161249b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124c557806124af816133a6565b91506124be9050600a836133d7565b915061249f565b60008167ffffffffffffffff8111156124e0576124e0612b4c565b6040519080825280601f01601f19166020018201604052801561250a576020820181803683370190505b5090505b84156123f75761251f60018361310f565b915061252c600a866133eb565b612537906030612fab565b60f81b81838151811061254c5761254c6131d3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612586600a866133d7565b945061250e565b600081815b84518110156114635760008582815181106125af576125af6131d3565b602002602001015190508083116125d557600083815260208290526040902092506125e6565b600081815260208490526040902092505b50806125f1816133a6565b915050612592565b60008080600019848609848602925082811083820303915050670de0b6b3a7640000811061265557806040517fd31b3402000000000000000000000000000000000000000000000000000000008152600401610b6991906129d0565b600080670de0b6b3a76400008688099150506706f05b59d3b1ffff81118261268f5780670de0b6b3a7640000850401945050505050610b42565b6204000082850304939091119091037d40000000000000000000000000000000000000000000000000000000000002919091177faccb18165bd6fe31ae1cf318dc5b51eee0e1ba569b88cd74c1773b91fac106690201905092915050565b8280546126f9906130e2565b90600052602060002090601f01602090048101928261271b5760008555612761565b82601f106127345782800160ff19823516178555612761565b82800160010185558215612761579182015b82811115612761578235825591602001919060010190612746565b5061276d929150612771565b5090565b5b8082111561276d5760008155600101612772565b6001600160e01b031981165b811461132757600080fd5b8035610b4281612786565b6000602082840312156127bd576127bd600080fd5b60006123f7848461279d565b8015155b82525050565b60208101610b4282846127c9565b80612792565b8035610b42816127e1565b60008083601f84011261280757612807600080fd5b50813567ffffffffffffffff81111561282257612822600080fd5b60208301915083602082028301111561283d5761283d600080fd5b9250929050565b60008060006040848603121561285c5761285c600080fd5b600061286886866127e7565b935050602084013567ffffffffffffffff81111561288857612888600080fd5b612894868287016127f2565b92509250509250925092565b60005b838110156128bb5781810151838201526020016128a3565b83811115610cab5750506000910152565b60006128d6825190565b8084526020840193506128ed8185602086016128a0565b601f01601f19169290920192915050565b6020808252810161190c81846128cc565b60006020828403121561292457612924600080fd5b60006123f784846127e7565b60006001600160a01b038216610b42565b6127cd81612930565b60208101610b428284612941565b61279281612930565b8035610b4281612958565b6000806040838503121561298257612982600080fd5b600061298e8585612961565b925050602061299f858286016127e7565b9150509250929050565b6000602082840312156129be576129be600080fd5b60006123f78484612961565b806127cd565b60208101610b4282846129ca565b6000806000606084860312156129f6576129f6600080fd5b6000612a028686612961565b9350506020612a1386828701612961565b9250506040612a24868287016127e7565b9150509250925092565b600080600060608486031215612a4657612a46600080fd5b6000612a5286866127e7565b9350506020612a13868287016127e7565b60008060408385031215612a7957612a79600080fd5b600061298e85856127e7565b801515612792565b8035610b4281612a85565b600060208284031215612aad57612aad600080fd5b60006123f78484612a8d565b60008083601f840112612ace57612ace600080fd5b50813567ffffffffffffffff811115612ae957612ae9600080fd5b60208301915083600182028301111561283d5761283d600080fd5b60008060208385031215612b1a57612b1a600080fd5b823567ffffffffffffffff811115612b3457612b34600080fd5b612b4085828601612ab9565b92509250509250929050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612b8857612b88612b4c565b6040525050565b6000612b9a60405190565b9050612ba68282612b62565b919050565b600067ffffffffffffffff821115612bc557612bc5612b4c565b5060209081020190565b6000612be2612bdd84612bab565b612b8f565b83815290506020808201908402830185811115612c0157612c01600080fd5b835b81811015612c255780612c1688826127e7565b84525060209283019201612c03565b5050509392505050565b600082601f830112612c4357612c43600080fd5b81356123f7848260208601612bcf565b600060208284031215612c6857612c68600080fd5b813567ffffffffffffffff811115612c8257612c82600080fd5b6123f784828501612c2f565b67ffffffffffffffff81166127cd565b62ffffff81166127cd565b80516080830190612cba8482612941565b506020820151612ccd6020850182612c8e565b506040820151612ce060408501826127c9565b506060820151610cab6060850182612c9e565b6000612cff8383612ca9565b505060800190565b6000612d11825190565b80845260209384019383018060005b83811015612d45578151612d348882612cf3565b975060208301925050600101612d20565b509495945050505050565b6020808252810161190c8184612d07565b6000612d6d83836129ca565b505060200190565b6000612d7f825190565b80845260209384019383018060005b83811015612d45578151612da28882612d61565b975060208301925050600101612d8e565b6020808252810161190c8184612d75565b600080600060608486031215612ddc57612ddc600080fd5b6000612a528686612961565b60008060408385031215612dfe57612dfe600080fd5b6000612e0a8585612961565b925050602061299f85828601612a8d565b600067ffffffffffffffff821115612e3557612e35612b4c565b601f19601f83011660200192915050565b82818337506000910152565b6000612e60612bdd84612e1b565b905082815260208101848484011115612e7b57612e7b600080fd5b611463848285612e46565b600082601f830112612e9a57612e9a600080fd5b81356123f7848260208601612e52565b60008060008060808587031215612ec357612ec3600080fd5b6000612ecf8787612961565b9450506020612ee087828801612961565b9350506040612ef1878288016127e7565b925050606085013567ffffffffffffffff811115612f1157612f11600080fd5b612f1d87828801612e86565b91505092959194509250565b60808101610b428284612ca9565b60008060408385031215612f4d57612f4d600080fd5b6000612f598585612961565b925050602061299f85828601612961565b60018152600060208201600360fc1b815291505b5060200190565b60208082528101610b4281612f6a565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fbe57612fbe612f95565b500190565b600181526000602082017f310000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281612fc3565b600181526000602082017f320000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281613007565b6000610b428260601b90565b6000610b428261304b565b6127cd61306e82612930565b613057565b600061307f8284613062565b50601401919050565b600181526000602082017f340000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281613088565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806130f657607f821691505b60208210811415613109576131096130cc565b50919050565b60008282101561312157613121612f95565b500390565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000612f7e565b60208082528101610b4281613126565b600081600019048311821515161561318257613182612f95565b500290565b600081610b42565b600e81526000602082017f5061796d656e74206661696c656400000000000000000000000000000000000081529150612f7e565b60208082528101610b428161318f565b634e487b7160e01b600052603260045260246000fd5b600181526000602082017f330000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b42816131e9565b6000815461323a816130e2565b600182168015613251576001811461326257613292565b60ff19831686528186019350613292565b60008581526020902060005b8381101561328a5781548882015260019091019060200161326e565b838801955050505b50505092915050565b60006132a5825190565b6132b38185602086016128a0565b9290920192915050565b60006132c9828561322d565b91506123f7828461329b565b60208082528101610b4281602681527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015260600190565b608081016133448287612941565b6133516020830186612941565b61335e60408301856129ca565b818103606083015261337081846128cc565b9695505050505050565b8051610b4281612786565b60006020828403121561339a5761339a600080fd5b60006123f7848461337a565b60006000198214156133ba576133ba612f95565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826133e6576133e66133c1565b500490565b6000826133fa576133fa6133c1565b50069056fea2646970667358221220080d234a357ddf1c6ec5ba7d80c0d8a9d2cd2fea43c62f580ac80e32f17f48ea64736f6c63430008090033697066733a2f2f626166796265696472787663676e6e73326b62346d7033346a64376e706e79646e776d7a797072796e746a6a7a76336f7332676d326a676b7576342f70726572657665616c2e6a736f6e
Deployed Bytecode
0x60806040526004361061038c5760003560e01c806370a08231116101dc578063a22cb46511610102578063d5abeb01116100a0578063efb6a85c1161006f578063efb6a85c14610a35578063f0f4426014610a4b578063f2fde38b14610a6b578063f59ee86614610a8b57600080fd5b8063d5abeb0114610989578063e268e4d31461099f578063e985e9c5146109bf578063ee2e62ed14610a0857600080fd5b8063bbaac02f116100dc578063bbaac02f14610909578063c23dc68f14610929578063c87b56dd14610956578063d2cab0561461097657600080fd5b8063a22cb465146108b3578063b7b20404146108d3578063b88d4fde146108e957600080fd5b80638cc54e7f1161017a57806399a2557a1161014957806399a2557a146108535780639c132e6f14610873578063a035b1fe1461088a578063a0712d68146108a057600080fd5b80638cc54e7f146107eb5780638da5cb5b1461080057806391b7f5ed1461081e57806395d89b411461083e57600080fd5b80637cb64759116101b65780637cb64759146107685780638462151c1461078857806385f2aef2146107b55780638990694f146107d557600080fd5b806370a0823114610713578063715018a61461073357806372219d231461074857600080fd5b80633b1c0a31116102c157806349a5980a1161025f5780635bbb21771161022e5780635bbb21771461068f5780635e5f3ce4146106bc57806361d027b3146106d35780636352211e146106f357600080fd5b806349a5980a1461061f57806354214f691461063f57806355f804b31461065957806356ce17d41461067957600080fd5b806342966c681161029b57806342966c68146105a657806344d19d2b146105c6578063453c2310146105dc57806347aa442a146105f257600080fd5b80633b1c0a31146105515780633ccfd60b1461057157806342842e0e1461058657600080fd5b80631af688d71161032e5780632d3754ee116103085780632d3754ee146104f85780632eb4a7ab1461050e5780633281fa3f1461052457806333e614131461053b57600080fd5b80631af688d7146104a257806323b872dd146104b85780632650ad44146104d857600080fd5b8063081812fc1161036a578063081812fc1461040b578063095ea7b3146104385780630a8839c21461045857806318160ddd1461048557600080fd5b806301ffc9a7146103915780630486d9e8146103c757806306fdde03146103e9575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046127a8565b610aab565b6040516103be91906127d3565b60405180910390f35b3480156103d357600080fd5b506103e76103e2366004612844565b610b48565b005b3480156103f557600080fd5b506103fe610cb1565b6040516103be91906128fe565b34801561041757600080fd5b5061042b61042636600461290f565b610d43565b6040516103be919061294a565b34801561044457600080fd5b506103e761045336600461296c565b610da0565b34801561046457600080fd5b506104786104733660046129a9565b610e83565b6040516103be91906129d0565b34801561049157600080fd5b506001546000540360001901610478565b3480156104ae57600080fd5b50610478601b5481565b3480156104c457600080fd5b506103e76104d33660046129de565b610eeb565b3480156104e457600080fd5b506103e76104f3366004612a2e565b6110d6565b34801561050457600080fd5b5061047860155481565b34801561051a57600080fd5b50610478600b5481565b34801561053057600080fd5b5060145442116103b1565b34801561054757600080fd5b5061047860185481565b34801561055d57600080fd5b506103e761056c366004612a63565b61110e565b34801561057d57600080fd5b506103e7611143565b34801561059257600080fd5b506103e76105a13660046129de565b6112fc565b3480156105b257600080fd5b506103e76105c136600461290f565b61131c565b3480156105d257600080fd5b5061047860195481565b3480156105e857600080fd5b5061047860135481565b3480156105fe57600080fd5b5061047861060d3660046129a9565b60116020526000908152604090205481565b34801561062b57600080fd5b506103e761063a366004612a98565b61132a565b34801561064b57600080fd5b50600d546103b19060ff1681565b34801561066557600080fd5b506103e7610674366004612b04565b611367565b34801561068557600080fd5b50610478600c5481565b34801561069b57600080fd5b506106af6106aa366004612c53565b61139d565b6040516103be9190612d50565b3480156106c857600080fd5b5060155442116103b1565b3480156106df57600080fd5b50600f5461042b906001600160a01b031681565b3480156106ff57600080fd5b5061042b61070e36600461290f565b61146b565b34801561071f57600080fd5b5061047861072e3660046129a9565b611476565b34801561073f57600080fd5b506103e76114de565b34801561075457600080fd5b506104786107633660046129a9565b611512565b34801561077457600080fd5b506103e761078336600461290f565b611568565b34801561079457600080fd5b506107a86107a33660046129a9565b611597565b6040516103be9190612db3565b3480156107c157600080fd5b5060105461042b906001600160a01b031681565b3480156107e157600080fd5b50610478601a5481565b3480156107f757600080fd5b506103fe6116a2565b34801561080c57600080fd5b506008546001600160a01b031661042b565b34801561082a57600080fd5b506103e761083936600461290f565b611730565b34801561084a57600080fd5b506103fe61175f565b34801561085f57600080fd5b506107a861086e366004612dc4565b61176e565b34801561087f57600080fd5b5060165442116103b1565b34801561089657600080fd5b50610478600e5481565b6103e76108ae36600461290f565b611913565b3480156108bf57600080fd5b506103e76108ce366004612de8565b6119b0565b3480156108df57600080fd5b5061047860145481565b3480156108f557600080fd5b506103e7610904366004612eaa565b611a62565b34801561091557600080fd5b506103e7610924366004612b04565b611aa6565b34801561093557600080fd5b5061094961094436600461290f565b611adc565b6040516103be9190612f29565b34801561096257600080fd5b506103fe61097136600461290f565b611b64565b6103e7610984366004612844565b611c5a565b34801561099557600080fd5b5061047860175481565b3480156109ab57600080fd5b506103e76109ba36600461290f565b611dd0565b3480156109cb57600080fd5b506103b16109da366004612f37565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a1457600080fd5b50610478610a233660046129a9565b60126020526000908152604090205481565b348015610a4157600080fd5b5061047860165481565b348015610a5757600080fd5b506103e7610a663660046129a9565b611dff565b348015610a7757600080fd5b506103e7610a863660046129a9565b611e58565b348015610a9757600080fd5b506103e7610aa636600461290f565b611eb1565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480610b0e57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b4257507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6016544211610b725760405162461bcd60e51b8152600401610b6990612f85565b60405180910390fd5b60195483601b54610b839190612fab565b10610ba05760405162461bcd60e51b8152600401610b6990612ff7565b60135433600090815260126020526040902054610bbe908590612fab565b10610bdb5760405162461bcd60e51b8152600401610b699061303b565b600033604051602001610bee9190613073565b604051602081830303815290604052805190602001209050610c4783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611ee0565b610c635760405162461bcd60e51b8152600401610b69906130bc565b3360009081526012602052604081208054869290610c82908490612fab565b9250508190555083601b6000828254610c9b9190612fab565b90915550610cab90503385611ef6565b50505050565b606060028054610cc0906130e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cec906130e2565b8015610d395780601f10610d0e57610100808354040283529160200191610d39565b820191906000526020600020905b815481529060010190602001808311610d1c57829003601f168201915b5050505050905090565b6000610d4e82612006565b610d84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610dab8261146b565b9050336001600160a01b03821614610e1a576001600160a01b038116600090815260076020908152604080832033845290915290205460ff16610e1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b038116600090815260116020526040812054601354610eab9060019061310f565b1115610ee3576001600160a01b038216600090815260116020526040902054601354600191610ed99161310f565b610b42919061310f565b506000919050565b6000610ef68261203b565b9050836001600160a01b0316816001600160a01b031614610f43576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054610f6f8187335b6001600160a01b039081169116811491141790565b610fb7576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16610fb757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ff7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561100257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661108d576001840160008181526004602052604090205461108b57600054811461108b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b031633146111005760405162461bcd60e51b8152600401610b6990613158565b601492909255601555601655565b6008546001600160a01b031633146111385760405162461bcd60e51b8152600401610b6990613158565b601891909155601955565b6008546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610b6990613158565b600f5447906000906001600160a01b031661119a611193662386f26fc10000605c613168565b84906120a4565b6040516111a690613187565b60006040518083038185875af1925050503d80600081146111e3576040519150601f19603f3d011682016040523d82523d6000602084013e6111e8565b606091505b50506010549091506000906001600160a01b0316611218611211662386f26fc100006008613168565b85906120a4565b60405161122490613187565b60006040518083038185875af1925050503d8060008114611261576040519150601f19603f3d011682016040523d82523d6000602084013e611266565b606091505b505090508180156112745750805b1561127e57505050565b6000336001600160a01b03168460405161129790613187565b60006040518083038185875af1925050503d80600081146112d4576040519150601f19603f3d011682016040523d82523d6000602084013e6112d9565b606091505b5050905080610cab5760405162461bcd60e51b8152600401610b69906131c3565b565b61131783838360405180602001604052806000815250611a62565b505050565b6113278160016120b0565b50565b6008546001600160a01b031633146113545760405162461bcd60e51b8152600401610b6990613158565b600d805460ff1916911515919091179055565b6008546001600160a01b031633146113915760405162461bcd60e51b8152600401610b6990613158565b611317600983836126ed565b805160609060008167ffffffffffffffff8111156113bd576113bd612b4c565b60405190808252806020026020018201604052801561140f57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816113db5790505b50905060005b8281146114635761143e858281518110611431576114316131d3565b6020026020010151611adc565b828281518110611450576114506131d3565b6020908102919091010152600101611415565b509392505050565b6000610b428261203b565b60006001600160a01b0382166114b8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146115085760405162461bcd60e51b8152600401610b6990613158565b6112fa6000612229565b6001600160a01b03811660009081526012602052604081205460135461153a9060019061310f565b1115610ee3576001600160a01b038216600090815260126020526040902054601354600191610ed99161310f565b6008546001600160a01b031633146115925760405162461bcd60e51b8152600401610b6990613158565b600b55565b606060008060006115a785611476565b905060008167ffffffffffffffff8111156115c4576115c4612b4c565b6040519080825280602002602001820160405280156115ed578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b8386146116965761162881612288565b91508160400151156116395761168e565b81516001600160a01b03161561164e57815194505b876001600160a01b0316856001600160a01b0316141561168e5780838780600101985081518110611681576116816131d3565b6020026020010181815250505b600101611618565b50909695505050505050565b600a80546116af906130e2565b80601f01602080910402602001604051908101604052809291908181526020018280546116db906130e2565b80156117285780601f106116fd57610100808354040283529160200191611728565b820191906000526020600020905b81548152906001019060200180831161170b57829003601f168201915b505050505081565b6008546001600160a01b0316331461175a5760405162461bcd60e51b8152600401610b6990613158565b600e55565b606060038054610cc0906130e2565b60608183106117a9576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117b560005490565b905060018510156117c557600194505b808411156117d1578093505b60006117dc87611476565b9050848610156117fb57858503818110156117f5578091505b506117ff565b5060005b60008167ffffffffffffffff81111561181a5761181a612b4c565b604051908082528060200260200182016040528015611843578160200160208202803683370190505b5090508161185657935061190c92505050565b600061186188611adc565b905060008160400151611872575080515b885b8881141580156118845750848714155b156119005761189281612288565b92508260400151156118a3576118f8565b82516001600160a01b0316156118b857825191505b8a6001600160a01b0316826001600160a01b031614156118f857808488806001019950815181106118eb576118eb6131d3565b6020026020010181815250505b600101611874565b50505092835250909150505b9392505050565b60155442116119345760405162461bcd60e51b8152600401610b6990612f85565b600e546119419082613168565b3410156119605760405162461bcd60e51b8152600401610b6990612ff7565b60185481601a546119719190612fab565b1061198e5760405162461bcd60e51b8152600401610b699061321d565b80601a60008282546119a09190612fab565b9091555061132790503382611ef6565b6001600160a01b0382163314156119f3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b038716808552925291829020805460ff191685151517905590519091907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611a569085906127d3565b60405180910390a35050565b611a6d848484610eeb565b6001600160a01b0383163b15610cab57611a8984848484612307565b610cab576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b03163314611ad05760405162461bcd60e51b8152600401610b6990613158565b611317600a83836126ed565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080611b3557506000548310155b15611b405792915050565b611b4983612288565b9050806040015115611b5b5792915050565b61190c836123ff565b6060611b6f82612006565b611b8c57604051636f96cda160e11b815260040160405180910390fd5b600d5460ff16611c2857600a8054611ba3906130e2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcf906130e2565b8015611c1c5780601f10611bf157610100808354040283529160200191611c1c565b820191906000526020600020905b815481529060010190602001808311611bff57829003601f168201915b50505050509050919050565b6009611c3383612477565b604051602001611c449291906132bd565b6040516020818303038152906040529050919050565b6014544211611c7b5760405162461bcd60e51b8152600401610b6990612f85565b60185483601a54611c8c9190612fab565b10611ca95760405162461bcd60e51b8152600401610b6990612ff7565b600e54611cb69084613168565b341015611cd55760405162461bcd60e51b8152600401610b699061303b565b60135433600090815260116020526040902054611cf3908590612fab565b10611d105760405162461bcd60e51b8152600401610b699061321d565b600033604051602001611d239190613073565b604051602081830303815290604052805190602001209050611d7c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611ee0565b611d985760405162461bcd60e51b8152600401610b69906130bc565b3360009081526011602052604081208054869290611db7908490612fab565b9250508190555083601a6000828254610c9b9190612fab565b6008546001600160a01b03163314611dfa5760405162461bcd60e51b8152600401610b6990613158565b601355565b6008546001600160a01b03163314611e295760405162461bcd60e51b8152600401610b6990613158565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546001600160a01b03163314611e825760405162461bcd60e51b8152600401610b6990613158565b6001600160a01b038116611ea85760405162461bcd60e51b8152600401610b69906132d5565b61132781612229565b6008546001600160a01b03163314611edb5760405162461bcd60e51b8152600401610b6990613158565b600c55565b600082611eed858461258d565b14949350505050565b6000546001600160a01b038316611f39576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611f70576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fba5760005550505050565b60008160011115801561201a575060005482105b8015610b42575050600090815260046020526040902054600160e01b161590565b6000818060011161208b5760005481101561208b57600081815260046020526040902054600160e01b8116612089575b8061190c57506000190160008181526004602052604090205461206b565b505b604051636f96cda160e11b815260040160405180910390fd5b600061190c83836125f9565b60006120bb8361203b565b9050806000806120d986600090815260066020526040902080549091565b915091508415612136576120ee818433610f5a565b612136576001600160a01b038316600090815260076020908152604080832033845290915290205460ff1661213657604051632ce44b5f60e11b815260040160405180910390fd5b801561214157600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c030000000000000000000000000000000000000000000000000000000017600087815260046020526040902055600160e11b84166121e157600186016000818152600460205260409020546121df5760005481146121df5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610b4290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061233c903390899088908890600401613336565b602060405180830381600087803b15801561235657600080fd5b505af1925050508015612386575060408051601f3d908101601f1916820190925261238391810190613385565b60015b6123e1573d8080156123b4576040519150601f19603f3d011682016040523d82523d6000602084013e6123b9565b606091505b5080516123d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610b4261242f8361203b565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b60608161249b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124c557806124af816133a6565b91506124be9050600a836133d7565b915061249f565b60008167ffffffffffffffff8111156124e0576124e0612b4c565b6040519080825280601f01601f19166020018201604052801561250a576020820181803683370190505b5090505b84156123f75761251f60018361310f565b915061252c600a866133eb565b612537906030612fab565b60f81b81838151811061254c5761254c6131d3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612586600a866133d7565b945061250e565b600081815b84518110156114635760008582815181106125af576125af6131d3565b602002602001015190508083116125d557600083815260208290526040902092506125e6565b600081815260208490526040902092505b50806125f1816133a6565b915050612592565b60008080600019848609848602925082811083820303915050670de0b6b3a7640000811061265557806040517fd31b3402000000000000000000000000000000000000000000000000000000008152600401610b6991906129d0565b600080670de0b6b3a76400008688099150506706f05b59d3b1ffff81118261268f5780670de0b6b3a7640000850401945050505050610b42565b6204000082850304939091119091037d40000000000000000000000000000000000000000000000000000000000002919091177faccb18165bd6fe31ae1cf318dc5b51eee0e1ba569b88cd74c1773b91fac106690201905092915050565b8280546126f9906130e2565b90600052602060002090601f01602090048101928261271b5760008555612761565b82601f106127345782800160ff19823516178555612761565b82800160010185558215612761579182015b82811115612761578235825591602001919060010190612746565b5061276d929150612771565b5090565b5b8082111561276d5760008155600101612772565b6001600160e01b031981165b811461132757600080fd5b8035610b4281612786565b6000602082840312156127bd576127bd600080fd5b60006123f7848461279d565b8015155b82525050565b60208101610b4282846127c9565b80612792565b8035610b42816127e1565b60008083601f84011261280757612807600080fd5b50813567ffffffffffffffff81111561282257612822600080fd5b60208301915083602082028301111561283d5761283d600080fd5b9250929050565b60008060006040848603121561285c5761285c600080fd5b600061286886866127e7565b935050602084013567ffffffffffffffff81111561288857612888600080fd5b612894868287016127f2565b92509250509250925092565b60005b838110156128bb5781810151838201526020016128a3565b83811115610cab5750506000910152565b60006128d6825190565b8084526020840193506128ed8185602086016128a0565b601f01601f19169290920192915050565b6020808252810161190c81846128cc565b60006020828403121561292457612924600080fd5b60006123f784846127e7565b60006001600160a01b038216610b42565b6127cd81612930565b60208101610b428284612941565b61279281612930565b8035610b4281612958565b6000806040838503121561298257612982600080fd5b600061298e8585612961565b925050602061299f858286016127e7565b9150509250929050565b6000602082840312156129be576129be600080fd5b60006123f78484612961565b806127cd565b60208101610b4282846129ca565b6000806000606084860312156129f6576129f6600080fd5b6000612a028686612961565b9350506020612a1386828701612961565b9250506040612a24868287016127e7565b9150509250925092565b600080600060608486031215612a4657612a46600080fd5b6000612a5286866127e7565b9350506020612a13868287016127e7565b60008060408385031215612a7957612a79600080fd5b600061298e85856127e7565b801515612792565b8035610b4281612a85565b600060208284031215612aad57612aad600080fd5b60006123f78484612a8d565b60008083601f840112612ace57612ace600080fd5b50813567ffffffffffffffff811115612ae957612ae9600080fd5b60208301915083600182028301111561283d5761283d600080fd5b60008060208385031215612b1a57612b1a600080fd5b823567ffffffffffffffff811115612b3457612b34600080fd5b612b4085828601612ab9565b92509250509250929050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715612b8857612b88612b4c565b6040525050565b6000612b9a60405190565b9050612ba68282612b62565b919050565b600067ffffffffffffffff821115612bc557612bc5612b4c565b5060209081020190565b6000612be2612bdd84612bab565b612b8f565b83815290506020808201908402830185811115612c0157612c01600080fd5b835b81811015612c255780612c1688826127e7565b84525060209283019201612c03565b5050509392505050565b600082601f830112612c4357612c43600080fd5b81356123f7848260208601612bcf565b600060208284031215612c6857612c68600080fd5b813567ffffffffffffffff811115612c8257612c82600080fd5b6123f784828501612c2f565b67ffffffffffffffff81166127cd565b62ffffff81166127cd565b80516080830190612cba8482612941565b506020820151612ccd6020850182612c8e565b506040820151612ce060408501826127c9565b506060820151610cab6060850182612c9e565b6000612cff8383612ca9565b505060800190565b6000612d11825190565b80845260209384019383018060005b83811015612d45578151612d348882612cf3565b975060208301925050600101612d20565b509495945050505050565b6020808252810161190c8184612d07565b6000612d6d83836129ca565b505060200190565b6000612d7f825190565b80845260209384019383018060005b83811015612d45578151612da28882612d61565b975060208301925050600101612d8e565b6020808252810161190c8184612d75565b600080600060608486031215612ddc57612ddc600080fd5b6000612a528686612961565b60008060408385031215612dfe57612dfe600080fd5b6000612e0a8585612961565b925050602061299f85828601612a8d565b600067ffffffffffffffff821115612e3557612e35612b4c565b601f19601f83011660200192915050565b82818337506000910152565b6000612e60612bdd84612e1b565b905082815260208101848484011115612e7b57612e7b600080fd5b611463848285612e46565b600082601f830112612e9a57612e9a600080fd5b81356123f7848260208601612e52565b60008060008060808587031215612ec357612ec3600080fd5b6000612ecf8787612961565b9450506020612ee087828801612961565b9350506040612ef1878288016127e7565b925050606085013567ffffffffffffffff811115612f1157612f11600080fd5b612f1d87828801612e86565b91505092959194509250565b60808101610b428284612ca9565b60008060408385031215612f4d57612f4d600080fd5b6000612f598585612961565b925050602061299f85828601612961565b60018152600060208201600360fc1b815291505b5060200190565b60208082528101610b4281612f6a565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fbe57612fbe612f95565b500190565b600181526000602082017f310000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281612fc3565b600181526000602082017f320000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281613007565b6000610b428260601b90565b6000610b428261304b565b6127cd61306e82612930565b613057565b600061307f8284613062565b50601401919050565b600181526000602082017f340000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b4281613088565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806130f657607f821691505b60208210811415613109576131096130cc565b50919050565b60008282101561312157613121612f95565b500390565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000612f7e565b60208082528101610b4281613126565b600081600019048311821515161561318257613182612f95565b500290565b600081610b42565b600e81526000602082017f5061796d656e74206661696c656400000000000000000000000000000000000081529150612f7e565b60208082528101610b428161318f565b634e487b7160e01b600052603260045260246000fd5b600181526000602082017f330000000000000000000000000000000000000000000000000000000000000081529150612f7e565b60208082528101610b42816131e9565b6000815461323a816130e2565b600182168015613251576001811461326257613292565b60ff19831686528186019350613292565b60008581526020902060005b8381101561328a5781548882015260019091019060200161326e565b838801955050505b50505092915050565b60006132a5825190565b6132b38185602086016128a0565b9290920192915050565b60006132c9828561322d565b91506123f7828461329b565b60208082528101610b4281602681527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015260600190565b608081016133448287612941565b6133516020830186612941565b61335e60408301856129ca565b818103606083015261337081846128cc565b9695505050505050565b8051610b4281612786565b60006020828403121561339a5761339a600080fd5b60006123f7848461337a565b60006000198214156133ba576133ba612f95565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826133e6576133e66133c1565b500490565b6000826133fa576133fa6133c1565b50069056fea2646970667358221220080d234a357ddf1c6ec5ba7d80c0d8a9d2cd2fea43c62f580ac80e32f17f48ea64736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.