ERC-721
Overview
Max Total Supply
275 NTMF
Holders
71
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NTMFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NotMafia
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; error MintingClosed(); error AmountNotAvailable(); error WouldExceedMaxPerWallet(); error OnlyUserMint(); error NotWhiteListed(); error ValueNotEqualToPrice(); error NotEnoughBalance(); error AlreadyMintedMaxInPhase(); error NotAllowListed(); error WrongMintFunction(); contract NotMafia is ERC721A, Ownable, ReentrancyGuard { // The different options of the status of the contract, governs which mint function can be called enum Status { CLOSED, // 0 WHITELIST, // 1 PUBLIC // 2 } Status public status; uint256 public price; string public baseURI; bytes32 public whiteListRoot; /** * Token id allocation: * * | WHITELIST | | FREE | | PAID | * | 1 pw | | 1 pw | | 3 pw | * [1, ..., 1700 ] [1701, ..., 2222] [2223, ..., 4444] */ uint256 private tokenId; uint256 private constant TOTAL_WHITELIST_SUPPLY = 1700; uint256 private constant TOTAL_FREE_SUPPLY = 2222; uint256 private TOTAL_SUPPLY = 4444; uint256 private constant MAX_PER_WALLET_PUBLIC = 5; mapping(address => bool) private hasMintedWhiteList; mapping(address => bool) private hasMintedFree; mapping(address => uint256) private hasMintedSale; event ChangedStatus(uint256 newStatus); // Constructor constructor() ERC721A("notMafia", "NTMF") { status = Status.CLOSED; price = 0.00869 ether; tokenId = 1; } /** * ############## PUBLIC FUNCTIONS ############## */ function ownerMint(uint256 __amount) external nonReentrant onlyOwner { // Order should not exceed the total supply if (tokenId + __amount > TOTAL_SUPPLY) revert AmountNotAvailable(); // Increment counter unchecked { tokenId += __amount; } // Do the magic _safeMint(msg.sender, __amount); } function whiteListMint(bytes32[] calldata __proof) external nonReentrant { // Caller cannot be a contract if (tx.origin != msg.sender) revert OnlyUserMint(); // Status should be WHITELIST if (status != Status.WHITELIST) revert WrongMintFunction(); // There should still be WHITELIST supply left to fulfill order if (tokenId > TOTAL_WHITELIST_SUPPLY) revert AmountNotAvailable(); // Caller should be on the WHITELIST if (!verifyWhiteList(__proof, whiteListRoot)) revert NotWhiteListed(); // Caller cannot mint more than one during the WHITELIST phase if (hasMintedWhiteList[msg.sender]) revert AlreadyMintedMaxInPhase(); // Increment counter unchecked { tokenId += 1; } // Update: the caller minted during WHITELIST hasMintedWhiteList[msg.sender] = true; // Do the magic _safeMint(msg.sender, 1); } function publicMint(uint256 __amount) external payable nonReentrant { // Caller cannot be a contract if (tx.origin != msg.sender) revert OnlyUserMint(); // Status must be PUBLIC if (status != Status.PUBLIC) revert WrongMintFunction(); // Send the call to the right mint function if (tokenId > TOTAL_FREE_SUPPLY) { paidMint(__amount); } else { freeMint(); } } /** * ############## OVERRIDING FUNCTIONS ############## */ function _baseURI() internal view override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { // The first token that is minted has number #1 return 1; } 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), ".json") ) : ""; } /** * ############## INTERNAL FUNCTIONS ############## */ function freeMint() internal nonReentrant { // Cannot send eth when minting free if (msg.value != 0) revert ValueNotEqualToPrice(); // Caller is not allowed to mint more than one during the FREE phase if (hasMintedFree[msg.sender]) revert AlreadyMintedMaxInPhase(); // Increment counter unchecked { tokenId += 1; } // Update: the caller minted during the FREE phase hasMintedFree[msg.sender] = true; // Do the magic. _safeMint(msg.sender, 1); } function paidMint(uint256 __amount) internal nonReentrant { // Msg value must be equal to the cost of the amount of NFT's if (msg.value != __amount * price) revert ValueNotEqualToPrice(); // Cannot mint more than allowed per wallet uint256 amountMinted = hasMintedSale[msg.sender]; if (amountMinted + __amount > MAX_PER_WALLET_PUBLIC) revert WouldExceedMaxPerWallet(); // There must be supply left to fulfill the order if (tokenId + __amount > TOTAL_SUPPLY) revert AmountNotAvailable(); // Increment counter unchecked { tokenId += __amount; } // update the amount minted by user hasMintedSale[msg.sender] = amountMinted + __amount; // Do the magic _safeMint(msg.sender, __amount); } function verifyWhiteList(bytes32[] calldata __proof, bytes32 __root) internal view returns (bool) { return MerkleProof.verify( __proof, __root, keccak256(abi.encodePacked(msg.sender)) ); } /** * ############## GETTERS -> EXTERNAL ############## */ function getCurrentTokenId() external view returns (uint256) { return tokenId; } function getHasMintedFree(address __address) external view returns (bool) { return hasMintedFree[__address]; } function getHasMintedWhiteList(address __address) external view returns (bool) { return hasMintedWhiteList[__address]; } function getHasMintedSale(address __address) external view returns (uint256) { return hasMintedSale[__address]; } /** * ############## SETTERS -> ONLY OWNER ############## */ function setStatus(uint256 __status) external onlyOwner { status = Status(__status); emit ChangedStatus(__status); } function setBaseURI(string memory __newURI) external onlyOwner { baseURI = __newURI; } function setWhiteListRoot(bytes32 __root) external onlyOwner { whiteListRoot = __root; } function setPrice(uint256 __price) external onlyOwner { price = __price; } function setTotalSupply(uint256 __newTotalSupply) external onlyOwner { TOTAL_SUPPLY = __newTotalSupply; } /** * ############## FUNCTIONS -> ONLY OWNER ############## */ function withdraw() external nonReentrant onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(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++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMintedMaxInPhase","type":"error"},{"inputs":[],"name":"AmountNotAvailable","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotWhiteListed","type":"error"},{"inputs":[],"name":"OnlyUserMint","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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"},{"inputs":[],"name":"ValueNotEqualToPrice","type":"error"},{"inputs":[],"name":"WouldExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"WrongMintFunction","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":false,"internalType":"uint256","name":"newStatus","type":"uint256"}],"name":"ChangedStatus","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"getHasMintedWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"__amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"__newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__newTotalSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"__root","type":"bytes32"}],"name":"setWhiteListRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum NotMafia.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"__tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"__proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261115c600f553480156200001757600080fd5b506040518060400160405280600881526020017f6e6f744d616669610000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e544d460000000000000000000000000000000000000000000000000000000081525081600290805190602001906200009c92919062000217565b508060039080519060200190620000b592919062000217565b50620000c66200014060201b60201c565b6000819055505050620000ee620000e26200014960201b60201c565b6200015160201b60201c565b60016009819055506000600a60006101000a81548160ff021916908360028111156200011f576200011e620002c7565b5b0217905550661edf824b192000600b819055506001600e819055506200035b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002259062000325565b90600052602060002090601f01602090048101928262000249576000855562000295565b82601f106200026457805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029457825182559160200191906001019062000277565b5b509050620002a49190620002a8565b5090565b5b80821115620002c3576000816000905550600101620002a9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033e57607f821691505b60208210811415620003555762000354620002f6565b5b50919050565b6135e7806200036b6000396000f3fe6080604052600436106101f95760003560e01c806369ba1a751161010d578063a035b1fe116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f524d6cd1461076b578063f7ea7a3d146107a8576101f9565b8063a035b1fe1461062f578063a22cb4651461065a578063b88d4fde14610683578063c87b56dd1461069f576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058757806391b7f5ed146105b257806395d89b41146105db57806397254e5514610606576101f9565b806369ba1a75146104df5780636c0360eb1461050857806370a0823114610533578063715018a614610570576101f9565b8063374bc20b116101905780634d7216901161015f5780634d721690146103e657806355f804b314610423578063561892361461044c5780636352211e1461047757806365f4fd12146104b4576101f9565b8063374bc20b1461034d5780633ccfd60b1461038a57806342842e0e146103a157806345149bb3146103bd576101f9565b806318160ddd116101cc57806318160ddd146102bf578063200d2ed2146102ea57806323b872dd146103155780632db1154414610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612885565b6107d1565b60405161023291906128cd565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d9190612981565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906129d9565b6108f5565b60405161029a9190612a47565b60405180910390f35b6102bd60048036038101906102b89190612a8e565b610974565b005b3480156102cb57600080fd5b506102d4610ab8565b6040516102e19190612add565b60405180910390f35b3480156102f657600080fd5b506102ff610acf565b60405161030c9190612b6f565b60405180910390f35b61032f600480360381019061032a9190612b8a565b610ae2565b005b61034b600480360381019061034691906129d9565b610e07565b005b34801561035957600080fd5b50610374600480360381019061036f9190612bdd565b610f54565b60405161038191906128cd565b60405180910390f35b34801561039657600080fd5b5061039f610faa565b005b6103bb60048036038101906103b69190612b8a565b611051565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612c40565b611071565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612bdd565b611083565b60405161041a9190612add565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612da2565b6110cc565b005b34801561045857600080fd5b506104616110ee565b60405161046e9190612add565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906129d9565b6110f8565b6040516104ab9190612a47565b60405180910390f35b3480156104c057600080fd5b506104c961110a565b6040516104d69190612dfa565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906129d9565b611110565b005b34801561051457600080fd5b5061051d61118e565b60405161052a9190612981565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612bdd565b61121c565b6040516105679190612add565b60405180910390f35b34801561057c57600080fd5b506105856112d5565b005b34801561059357600080fd5b5061059c6112e9565b6040516105a99190612a47565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906129d9565b611313565b005b3480156105e757600080fd5b506105f0611325565b6040516105fd9190612981565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612e75565b6113b7565b005b34801561063b57600080fd5b5061064461165c565b6040516106519190612add565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612eee565b611662565b005b61069d60048036038101906106989190612fcf565b61176d565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906129d9565b6117e0565b6040516106d39190612981565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613052565b611902565b60405161071091906128cd565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906129d9565b611996565b005b34801561074e57600080fd5b5061076960048036038101906107649190612bdd565b611a5a565b005b34801561077757600080fd5b50610792600480360381019061078d9190612bdd565b611ade565b60405161079f91906128cd565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906129d9565b611b34565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610872906130c1565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906130c1565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611b46565b610936576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f826110f8565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611ba5565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611ba5565b611902565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ac2611bad565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610aed82611bb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6084611c84565b91509150610b768187610b71611ba5565b611cab565b610bc257610b8b86610b86611ba5565b611902565b610bc1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c368686866001611cef565b8015610c4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0f85610ceb888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d97576000600185019050600060046000838152602001908152602001600020541415610d95576000548114610d94578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dff8686866001611d48565b505050505050565b60026009541415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e449061313f565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115610ecd57610ecc612af8565b5b600a60009054906101000a900460ff166002811115610eef57610eee612af8565b5b14610f26576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ae600e541115610f4057610f3b81611d4e565b610f49565b610f48611f2a565b5b600160098190555050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60026009541415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061313f565b60405180910390fd5b60026009819055506110006120b4565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611046573d6000803e3d6000fd5b506001600981905550565b61106c8383836040518060200160405280600081525061176d565b505050565b6110796120b4565b80600d8190555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d46120b4565b80600c90805190602001906110ea929190612776565b5050565b6000600e54905090565b600061110382611bb6565b9050919050565b600d5481565b6111186120b4565b80600281111561112b5761112a612af8565b5b600a60006101000a81548160ff0219169083600281111561114f5761114e612af8565b5b02179055507f3665a8b73cada881fbf8d8433b7d9e7d21c1e53eecf7bb51fb15262d98ee0afb816040516111839190612add565b60405180910390a150565b600c805461119b906130c1565b80601f01602080910402602001604051908101604052809291908181526020018280546111c7906130c1565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611284576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112dd6120b4565b6112e76000612132565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131b6120b4565b80600b8190555050565b606060038054611334906130c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611360906130c1565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b5050505050905090565b600260095414156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f49061313f565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461146a576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600281111561147e5761147d612af8565b5b600a60009054906101000a900460ff1660028111156114a05761149f612af8565b5b146114d7576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106a4600e541115611515576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115228282600d546121f8565b611558576040517f6a9a57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115dc576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e600082825401925050819055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611650336001612275565b60016009819055505050565b600b5481565b806007600061166f611ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171c611ba5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176191906128cd565b60405180910390a35050565b611778848484610ae2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484612293565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117eb82611b46565b611821576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600c8054611830906130c1565b80601f016020809104026020016040519081016040528092919081815260200182805461185c906130c1565b80156118a95780601f1061187e576101008083540402835291602001916118a9565b820191906000526020600020905b81548152906001019060200180831161188c57829003601f168201915b505050505090506000815114156118cf57604051806020016040528060008152506118fa565b806118d9846123f3565b6040516020016118ea9291906131e7565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260095414156119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061313f565b60405180910390fd5b60026009819055506119ec6120b4565b600f5481600e546119fd9190613245565b1115611a35576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60008282540192505081905550611a4f3382612275565b600160098190555050565b611a626120b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac99061330d565b60405180910390fd5b611adb81612132565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b3c6120b4565b80600f8190555050565b600081611b51611bad565b11158015611b60575060005482105b8015611b9e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611bc5611bad565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c4a575b6000811415611c40576004600083600190039350838152602001908152602001600020549050611c15565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c86868461244c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b9061313f565b60405180910390fd5b6002600981905550600b5481611daa919061332d565b3414611de2576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060058282611e349190613245565b1115611e6c576040517f06f5d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f5482600e54611e7d9190613245565b1115611eb5576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600e600082825401925050819055508181611ed19190613245565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f1e3383612275565b50600160098190555050565b60026009541415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061313f565b60405180910390fd5b600260098190555060003414611fb2576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612036576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e600082825401925050819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120aa336001612275565b6001600981905550565b6120bc612455565b73ffffffffffffffffffffffffffffffffffffffff166120da6112e9565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906133d3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061226c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508333604051602001612251919061343b565b6040516020818303038152906040528051906020012061245d565b90509392505050565b61228f828260405180602001604052806000815250612474565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122b9611ba5565b8786866040518563ffffffff1660e01b81526004016122db94939291906134ab565b602060405180830381600087803b1580156122f557600080fd5b505af192505050801561232657506040513d601f19601f82011682018060405250810190612323919061350c565b60015b6123a0573d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b50600081511415612398576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561243757600184039350600a81066030018453600a810490508061243257612437565b61240c565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60008261246a8584612511565b1490509392505050565b61247e8383612567565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461250c57600080549050600083820390505b6124be6000868380600101945086612293565b6124f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124ab57816000541461250957600080fd5b50505b505050565b60008082905060005b845181101561255c576125478286838151811061253a57612539613539565b5b6020026020010151612724565b9150808061255490613568565b91505061251a565b508091505092915050565b60008054905060008214156125a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b56000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061262c8361261d6000866000611cf5565b6126268561274f565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612692565b506000821415612709576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061271f6000848385611d48565b505050565b600081831061273c57612737828461275f565b612747565b612746838361275f565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612782906130c1565b90600052602060002090601f0160209004810192826127a457600085556127eb565b82601f106127bd57805160ff19168380011785556127eb565b828001600101855582156127eb579182015b828111156127ea5782518255916020019190600101906127cf565b5b5090506127f891906127fc565b5090565b5b808211156128155760008160009055506001016127fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128628161282d565b811461286d57600080fd5b50565b60008135905061287f81612859565b92915050565b60006020828403121561289b5761289a612823565b5b60006128a984828501612870565b91505092915050565b60008115159050919050565b6128c7816128b2565b82525050565b60006020820190506128e260008301846128be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612922578082015181840152602081019050612907565b83811115612931576000848401525b50505050565b6000601f19601f8301169050919050565b6000612953826128e8565b61295d81856128f3565b935061296d818560208601612904565b61297681612937565b840191505092915050565b6000602082019050818103600083015261299b8184612948565b905092915050565b6000819050919050565b6129b6816129a3565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b6000602082840312156129ef576129ee612823565b5b60006129fd848285016129c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3182612a06565b9050919050565b612a4181612a26565b82525050565b6000602082019050612a5c6000830184612a38565b92915050565b612a6b81612a26565b8114612a7657600080fd5b50565b600081359050612a8881612a62565b92915050565b60008060408385031215612aa557612aa4612823565b5b6000612ab385828601612a79565b9250506020612ac4858286016129c4565b9150509250929050565b612ad7816129a3565b82525050565b6000602082019050612af26000830184612ace565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612b3857612b37612af8565b5b50565b6000819050612b4982612b27565b919050565b6000612b5982612b3b565b9050919050565b612b6981612b4e565b82525050565b6000602082019050612b846000830184612b60565b92915050565b600080600060608486031215612ba357612ba2612823565b5b6000612bb186828701612a79565b9350506020612bc286828701612a79565b9250506040612bd3868287016129c4565b9150509250925092565b600060208284031215612bf357612bf2612823565b5b6000612c0184828501612a79565b91505092915050565b6000819050919050565b612c1d81612c0a565b8114612c2857600080fd5b50565b600081359050612c3a81612c14565b92915050565b600060208284031215612c5657612c55612823565b5b6000612c6484828501612c2b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612caf82612937565b810181811067ffffffffffffffff82111715612cce57612ccd612c77565b5b80604052505050565b6000612ce1612819565b9050612ced8282612ca6565b919050565b600067ffffffffffffffff821115612d0d57612d0c612c77565b5b612d1682612937565b9050602081019050919050565b82818337600083830152505050565b6000612d45612d4084612cf2565b612cd7565b905082815260208101848484011115612d6157612d60612c72565b5b612d6c848285612d23565b509392505050565b600082601f830112612d8957612d88612c6d565b5b8135612d99848260208601612d32565b91505092915050565b600060208284031215612db857612db7612823565b5b600082013567ffffffffffffffff811115612dd657612dd5612828565b5b612de284828501612d74565b91505092915050565b612df481612c0a565b82525050565b6000602082019050612e0f6000830184612deb565b92915050565b600080fd5b600080fd5b60008083601f840112612e3557612e34612c6d565b5b8235905067ffffffffffffffff811115612e5257612e51612e15565b5b602083019150836020820283011115612e6e57612e6d612e1a565b5b9250929050565b60008060208385031215612e8c57612e8b612823565b5b600083013567ffffffffffffffff811115612eaa57612ea9612828565b5b612eb685828601612e1f565b92509250509250929050565b612ecb816128b2565b8114612ed657600080fd5b50565b600081359050612ee881612ec2565b92915050565b60008060408385031215612f0557612f04612823565b5b6000612f1385828601612a79565b9250506020612f2485828601612ed9565b9150509250929050565b600067ffffffffffffffff821115612f4957612f48612c77565b5b612f5282612937565b9050602081019050919050565b6000612f72612f6d84612f2e565b612cd7565b905082815260208101848484011115612f8e57612f8d612c72565b5b612f99848285612d23565b509392505050565b600082601f830112612fb657612fb5612c6d565b5b8135612fc6848260208601612f5f565b91505092915050565b60008060008060808587031215612fe957612fe8612823565b5b6000612ff787828801612a79565b945050602061300887828801612a79565b9350506040613019878288016129c4565b925050606085013567ffffffffffffffff81111561303a57613039612828565b5b61304687828801612fa1565b91505092959194509250565b6000806040838503121561306957613068612823565b5b600061307785828601612a79565b925050602061308885828601612a79565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d957607f821691505b602082108114156130ed576130ec613092565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613129601f836128f3565b9150613134826130f3565b602082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b600081905092915050565b6000613175826128e8565b61317f818561315f565b935061318f818560208601612904565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131d160058361315f565b91506131dc8261319b565b600582019050919050565b60006131f3828561316a565b91506131ff828461316a565b915061320a826131c4565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613250826129a3565b915061325b836129a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132905761328f613216565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132f76026836128f3565b91506133028261329b565b604082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b6000613338826129a3565b9150613343836129a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337c5761337b613216565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133bd6020836128f3565b91506133c882613387565b602082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b60008160601b9050919050565b600061340b826133f3565b9050919050565b600061341d82613400565b9050919050565b61343561343082612a26565b613412565b82525050565b60006134478284613424565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061347d82613456565b6134878185613461565b9350613497818560208601612904565b6134a081612937565b840191505092915050565b60006080820190506134c06000830187612a38565b6134cd6020830186612a38565b6134da6040830185612ace565b81810360608301526134ec8184613472565b905095945050505050565b60008151905061350681612859565b92915050565b60006020828403121561352257613521612823565b5b6000613530848285016134f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613573826129a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135a6576135a5613216565b5b60018201905091905056fea2646970667358221220caa303bbba99853e95ad1ca8cf0f88c3bdf8ab7b79803963df386dfab8c36d4d64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806369ba1a751161010d578063a035b1fe116100a0578063e985e9c51161006f578063e985e9c5146106dc578063f19e75d414610719578063f2fde38b14610742578063f524d6cd1461076b578063f7ea7a3d146107a8576101f9565b8063a035b1fe1461062f578063a22cb4651461065a578063b88d4fde14610683578063c87b56dd1461069f576101f9565b80638da5cb5b116100dc5780638da5cb5b1461058757806391b7f5ed146105b257806395d89b41146105db57806397254e5514610606576101f9565b806369ba1a75146104df5780636c0360eb1461050857806370a0823114610533578063715018a614610570576101f9565b8063374bc20b116101905780634d7216901161015f5780634d721690146103e657806355f804b314610423578063561892361461044c5780636352211e1461047757806365f4fd12146104b4576101f9565b8063374bc20b1461034d5780633ccfd60b1461038a57806342842e0e146103a157806345149bb3146103bd576101f9565b806318160ddd116101cc57806318160ddd146102bf578063200d2ed2146102ea57806323b872dd146103155780632db1154414610331576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612885565b6107d1565b60405161023291906128cd565b60405180910390f35b34801561024757600080fd5b50610250610863565b60405161025d9190612981565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906129d9565b6108f5565b60405161029a9190612a47565b60405180910390f35b6102bd60048036038101906102b89190612a8e565b610974565b005b3480156102cb57600080fd5b506102d4610ab8565b6040516102e19190612add565b60405180910390f35b3480156102f657600080fd5b506102ff610acf565b60405161030c9190612b6f565b60405180910390f35b61032f600480360381019061032a9190612b8a565b610ae2565b005b61034b600480360381019061034691906129d9565b610e07565b005b34801561035957600080fd5b50610374600480360381019061036f9190612bdd565b610f54565b60405161038191906128cd565b60405180910390f35b34801561039657600080fd5b5061039f610faa565b005b6103bb60048036038101906103b69190612b8a565b611051565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612c40565b611071565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612bdd565b611083565b60405161041a9190612add565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612da2565b6110cc565b005b34801561045857600080fd5b506104616110ee565b60405161046e9190612add565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906129d9565b6110f8565b6040516104ab9190612a47565b60405180910390f35b3480156104c057600080fd5b506104c961110a565b6040516104d69190612dfa565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906129d9565b611110565b005b34801561051457600080fd5b5061051d61118e565b60405161052a9190612981565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612bdd565b61121c565b6040516105679190612add565b60405180910390f35b34801561057c57600080fd5b506105856112d5565b005b34801561059357600080fd5b5061059c6112e9565b6040516105a99190612a47565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906129d9565b611313565b005b3480156105e757600080fd5b506105f0611325565b6040516105fd9190612981565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612e75565b6113b7565b005b34801561063b57600080fd5b5061064461165c565b6040516106519190612add565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612eee565b611662565b005b61069d60048036038101906106989190612fcf565b61176d565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906129d9565b6117e0565b6040516106d39190612981565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613052565b611902565b60405161071091906128cd565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906129d9565b611996565b005b34801561074e57600080fd5b5061076960048036038101906107649190612bdd565b611a5a565b005b34801561077757600080fd5b50610792600480360381019061078d9190612bdd565b611ade565b60405161079f91906128cd565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906129d9565b611b34565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610872906130c1565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906130c1565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611b46565b610936576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097f826110f8565b90508073ffffffffffffffffffffffffffffffffffffffff166109a0611ba5565b73ffffffffffffffffffffffffffffffffffffffff1614610a03576109cc816109c7611ba5565b611902565b610a02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ac2611bad565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610aed82611bb6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6084611c84565b91509150610b768187610b71611ba5565b611cab565b610bc257610b8b86610b86611ba5565b611902565b610bc1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c29576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c368686866001611cef565b8015610c4157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0f85610ceb888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d97576000600185019050600060046000838152602001908152602001600020541415610d95576000548114610d94578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dff8686866001611d48565b505050505050565b60026009541415610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e449061313f565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280811115610ecd57610ecc612af8565b5b600a60009054906101000a900460ff166002811115610eef57610eee612af8565b5b14610f26576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ae600e541115610f4057610f3b81611d4e565b610f49565b610f48611f2a565b5b600160098190555050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60026009541415610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061313f565b60405180910390fd5b60026009819055506110006120b4565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611046573d6000803e3d6000fd5b506001600981905550565b61106c8383836040518060200160405280600081525061176d565b505050565b6110796120b4565b80600d8190555050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d46120b4565b80600c90805190602001906110ea929190612776565b5050565b6000600e54905090565b600061110382611bb6565b9050919050565b600d5481565b6111186120b4565b80600281111561112b5761112a612af8565b5b600a60006101000a81548160ff0219169083600281111561114f5761114e612af8565b5b02179055507f3665a8b73cada881fbf8d8433b7d9e7d21c1e53eecf7bb51fb15262d98ee0afb816040516111839190612add565b60405180910390a150565b600c805461119b906130c1565b80601f01602080910402602001604051908101604052809291908181526020018280546111c7906130c1565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611284576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112dd6120b4565b6112e76000612132565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131b6120b4565b80600b8190555050565b606060038054611334906130c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611360906130c1565b80156113ad5780601f10611382576101008083540402835291602001916113ad565b820191906000526020600020905b81548152906001019060200180831161139057829003601f168201915b5050505050905090565b600260095414156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f49061313f565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461146a576040517f2e75101900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600281111561147e5761147d612af8565b5b600a60009054906101000a900460ff1660028111156114a05761149f612af8565b5b146114d7576040517f012cd2e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106a4600e541115611515576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115228282600d546121f8565b611558576040517f6a9a57a500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115dc576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e600082825401925050819055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611650336001612275565b60016009819055505050565b600b5481565b806007600061166f611ba5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171c611ba5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176191906128cd565b60405180910390a35050565b611778848484610ae2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117da576117a384848484612293565b6117d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117eb82611b46565b611821576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600c8054611830906130c1565b80601f016020809104026020016040519081016040528092919081815260200182805461185c906130c1565b80156118a95780601f1061187e576101008083540402835291602001916118a9565b820191906000526020600020905b81548152906001019060200180831161188c57829003601f168201915b505050505090506000815114156118cf57604051806020016040528060008152506118fa565b806118d9846123f3565b6040516020016118ea9291906131e7565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600260095414156119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061313f565b60405180910390fd5b60026009819055506119ec6120b4565b600f5481600e546119fd9190613245565b1115611a35576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60008282540192505081905550611a4f3382612275565b600160098190555050565b611a626120b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac99061330d565b60405180910390fd5b611adb81612132565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b3c6120b4565b80600f8190555050565b600081611b51611bad565b11158015611b60575060005482105b8015611b9e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611bc5611bad565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c4a575b6000811415611c40576004600083600190039350838152602001908152602001600020549050611c15565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c86868461244c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b9061313f565b60405180910390fd5b6002600981905550600b5481611daa919061332d565b3414611de2576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060058282611e349190613245565b1115611e6c576040517f06f5d75400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f5482600e54611e7d9190613245565b1115611eb5576040517f47747fa900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600e600082825401925050819055508181611ed19190613245565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f1e3383612275565b50600160098190555050565b60026009541415611f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f679061313f565b60405180910390fd5b600260098190555060003414611fb2576040517fc534702400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612036576040517f6f5aa9e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e600082825401925050819055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120aa336001612275565b6001600981905550565b6120bc612455565b73ffffffffffffffffffffffffffffffffffffffff166120da6112e9565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906133d3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061226c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508333604051602001612251919061343b565b6040516020818303038152906040528051906020012061245d565b90509392505050565b61228f828260405180602001604052806000815250612474565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122b9611ba5565b8786866040518563ffffffff1660e01b81526004016122db94939291906134ab565b602060405180830381600087803b1580156122f557600080fd5b505af192505050801561232657506040513d601f19601f82011682018060405250810190612323919061350c565b60015b6123a0573d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b50600081511415612398576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561243757600184039350600a81066030018453600a810490508061243257612437565b61240c565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60008261246a8584612511565b1490509392505050565b61247e8383612567565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461250c57600080549050600083820390505b6124be6000868380600101945086612293565b6124f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124ab57816000541461250957600080fd5b50505b505050565b60008082905060005b845181101561255c576125478286838151811061253a57612539613539565b5b6020026020010151612724565b9150808061255490613568565b91505061251a565b508091505092915050565b60008054905060008214156125a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b56000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061262c8361261d6000866000611cf5565b6126268561274f565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612692565b506000821415612709576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061271f6000848385611d48565b505050565b600081831061273c57612737828461275f565b612747565b612746838361275f565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612782906130c1565b90600052602060002090601f0160209004810192826127a457600085556127eb565b82601f106127bd57805160ff19168380011785556127eb565b828001600101855582156127eb579182015b828111156127ea5782518255916020019190600101906127cf565b5b5090506127f891906127fc565b5090565b5b808211156128155760008160009055506001016127fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128628161282d565b811461286d57600080fd5b50565b60008135905061287f81612859565b92915050565b60006020828403121561289b5761289a612823565b5b60006128a984828501612870565b91505092915050565b60008115159050919050565b6128c7816128b2565b82525050565b60006020820190506128e260008301846128be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612922578082015181840152602081019050612907565b83811115612931576000848401525b50505050565b6000601f19601f8301169050919050565b6000612953826128e8565b61295d81856128f3565b935061296d818560208601612904565b61297681612937565b840191505092915050565b6000602082019050818103600083015261299b8184612948565b905092915050565b6000819050919050565b6129b6816129a3565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b6000602082840312156129ef576129ee612823565b5b60006129fd848285016129c4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3182612a06565b9050919050565b612a4181612a26565b82525050565b6000602082019050612a5c6000830184612a38565b92915050565b612a6b81612a26565b8114612a7657600080fd5b50565b600081359050612a8881612a62565b92915050565b60008060408385031215612aa557612aa4612823565b5b6000612ab385828601612a79565b9250506020612ac4858286016129c4565b9150509250929050565b612ad7816129a3565b82525050565b6000602082019050612af26000830184612ace565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612b3857612b37612af8565b5b50565b6000819050612b4982612b27565b919050565b6000612b5982612b3b565b9050919050565b612b6981612b4e565b82525050565b6000602082019050612b846000830184612b60565b92915050565b600080600060608486031215612ba357612ba2612823565b5b6000612bb186828701612a79565b9350506020612bc286828701612a79565b9250506040612bd3868287016129c4565b9150509250925092565b600060208284031215612bf357612bf2612823565b5b6000612c0184828501612a79565b91505092915050565b6000819050919050565b612c1d81612c0a565b8114612c2857600080fd5b50565b600081359050612c3a81612c14565b92915050565b600060208284031215612c5657612c55612823565b5b6000612c6484828501612c2b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612caf82612937565b810181811067ffffffffffffffff82111715612cce57612ccd612c77565b5b80604052505050565b6000612ce1612819565b9050612ced8282612ca6565b919050565b600067ffffffffffffffff821115612d0d57612d0c612c77565b5b612d1682612937565b9050602081019050919050565b82818337600083830152505050565b6000612d45612d4084612cf2565b612cd7565b905082815260208101848484011115612d6157612d60612c72565b5b612d6c848285612d23565b509392505050565b600082601f830112612d8957612d88612c6d565b5b8135612d99848260208601612d32565b91505092915050565b600060208284031215612db857612db7612823565b5b600082013567ffffffffffffffff811115612dd657612dd5612828565b5b612de284828501612d74565b91505092915050565b612df481612c0a565b82525050565b6000602082019050612e0f6000830184612deb565b92915050565b600080fd5b600080fd5b60008083601f840112612e3557612e34612c6d565b5b8235905067ffffffffffffffff811115612e5257612e51612e15565b5b602083019150836020820283011115612e6e57612e6d612e1a565b5b9250929050565b60008060208385031215612e8c57612e8b612823565b5b600083013567ffffffffffffffff811115612eaa57612ea9612828565b5b612eb685828601612e1f565b92509250509250929050565b612ecb816128b2565b8114612ed657600080fd5b50565b600081359050612ee881612ec2565b92915050565b60008060408385031215612f0557612f04612823565b5b6000612f1385828601612a79565b9250506020612f2485828601612ed9565b9150509250929050565b600067ffffffffffffffff821115612f4957612f48612c77565b5b612f5282612937565b9050602081019050919050565b6000612f72612f6d84612f2e565b612cd7565b905082815260208101848484011115612f8e57612f8d612c72565b5b612f99848285612d23565b509392505050565b600082601f830112612fb657612fb5612c6d565b5b8135612fc6848260208601612f5f565b91505092915050565b60008060008060808587031215612fe957612fe8612823565b5b6000612ff787828801612a79565b945050602061300887828801612a79565b9350506040613019878288016129c4565b925050606085013567ffffffffffffffff81111561303a57613039612828565b5b61304687828801612fa1565b91505092959194509250565b6000806040838503121561306957613068612823565b5b600061307785828601612a79565b925050602061308885828601612a79565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d957607f821691505b602082108114156130ed576130ec613092565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613129601f836128f3565b9150613134826130f3565b602082019050919050565b600060208201905081810360008301526131588161311c565b9050919050565b600081905092915050565b6000613175826128e8565b61317f818561315f565b935061318f818560208601612904565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006131d160058361315f565b91506131dc8261319b565b600582019050919050565b60006131f3828561316a565b91506131ff828461316a565b915061320a826131c4565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613250826129a3565b915061325b836129a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132905761328f613216565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132f76026836128f3565b91506133028261329b565b604082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b6000613338826129a3565b9150613343836129a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337c5761337b613216565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133bd6020836128f3565b91506133c882613387565b602082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b60008160601b9050919050565b600061340b826133f3565b9050919050565b600061341d82613400565b9050919050565b61343561343082612a26565b613412565b82525050565b60006134478284613424565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061347d82613456565b6134878185613461565b9350613497818560208601612904565b6134a081612937565b840191505092915050565b60006080820190506134c06000830187612a38565b6134cd6020830186612a38565b6134da6040830185612ace565b81810360608301526134ec8184613472565b905095945050505050565b60008151905061350681612859565b92915050565b60006020828403121561352257613521612823565b5b6000613530848285016134f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613573826129a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135a6576135a5613216565b5b60018201905091905056fea2646970667358221220caa303bbba99853e95ad1ca8cf0f88c3bdf8ab7b79803963df386dfab8c36d4d64736f6c63430008090033
Deployed Bytecode Sourcemap
553:7119:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;806:20:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3169:452:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6375:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7550:120;;;;;;;;;;;;;:::i;:::-;;22758:187:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7151:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6669:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7047:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6277:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;887:28:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;859:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1201:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7257:86:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2207:956:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;832:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16901:231:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3968:457:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1838:363:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6503:160:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7349:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:5;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;5894:317::-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;806:20:4:-;;;;;;;;;;;;;:::o;19903:2764:5:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;3169:452:4:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3303:10:4::1;3290:23;;:9;:23;;;3286:50;;3322:14;;;;;;;;;;;;;;3286:50;3394:13;3384:23:::0;::::1;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:23;;;;;;;;:::i;:::-;;;3380:55;;3416:19;;;;;;;;;;;;;;3380:55;1290:4;3502:7;;:27;3498:117;;;3545:18;3554:8;3545;:18::i;:::-;3498:117;;;3594:10;:8;:10::i;:::-;3498:117;1701:1:1::0;2628:7;:22;;;;3169:452:4;:::o;6375:122::-;6443:4;6466:13;:24;6480:9;6466:24;;;;;;;;;;;;;;;;;;;;;;;;;6459:31;;6375:122;;;:::o;7550:120::-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;1094:13:0::1;:11;:13::i;:::-;7620:10:4::2;7612:28;;:51;7641:21;7612:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;1701:1:1::0;2628:7;:22;;;;7550:120:4:o;22758:187:5:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;7151:100:4:-;1094:13:0;:11;:13::i;:::-;7238:6:4::1;7222:13;:22;;;;7151:100:::0;:::o;6669:153::-;6761:7;6791:13;:24;6805:9;6791:24;;;;;;;;;;;;;;;;6784:31;;6669:153;;;:::o;7047:98::-;1094:13:0;:11;:13::i;:::-;7130:8:4::1;7120:7;:18;;;;;;;;;;;;:::i;:::-;;7047:98:::0;:::o;6277:92::-;6329:7;6355;;6348:14;;6277:92;:::o;11391:150:5:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;887:28:4:-;;;;:::o;6905:136::-;1094:13:0;:11;:13::i;:::-;6987:8:4::1;6980:16;;;;;;;;:::i;:::-;;6971:6;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;7011:23;7025:8;7011:23;;;;;;:::i;:::-;;;;;;;;6905:136:::0;:::o;859:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:5:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;7257:86:4:-;1094:13:0;:11;:13::i;:::-;7329:7:4::1;7321:5;:15;;;;7257:86:::0;:::o;10208:102:5:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;2207:956:4:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2346:10:4::1;2333:23;;:9;:23;;;2329:50;;2365:14;;;;;;;;;;;;;;2329:50;2442:16;2432:26;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;2428:58;;2467:19;;;;;;;;;;;;;;2428:58;1235:4;2573:7;;:32;2569:65;;;2614:20;;;;;;;;;;;;;;2569:65;2695:39;2711:7;;2720:13;;2695:15;:39::i;:::-;2690:69;;2743:16;;;;;;;;;;;;;;2690:69;2845:18;:30;2864:10;2845:30;;;;;;;;;;;;;;;;;;;;;;;;;2841:68;;;2884:25;;;;;;;;;;;;;;2841:68;2984:1;2973:7;;:12;;;;;;;;;;;3093:4;3060:18;:30;3079:10;3060:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;3132:24;3142:10;3154:1;3132:9;:24::i;:::-;1701:1:1::0;2628:7;:22;;;;2207:956:4;;:::o;832:20::-;;;;:::o;16901:231:5:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;3968:457:4:-;4083:13;4117:18;4125:9;4117:7;:18::i;:::-;4112:61;;4144:29;;;;;;;;;;;;;;4112:61;4184:23;4210:7;4184:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4273:1;4252:9;4246:23;:28;;:172;;;;;;;;;;;;;;;;;4338:9;4349:20;4359:9;4349;:20::i;:::-;4321:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4246:172;4227:191;;;3968:457;;;:::o;17282:162:5:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;1838:363:4:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;1094:13:0::1;:11;:13::i;:::-;1994:12:4::2;;1983:8;1973:7;;:18;;;;:::i;:::-;:33;1969:66;;;2015:20;;;;;;;;;;;;;;1969:66;2110:8;2099:7;;:19;;;;;;;;;;;2163:31;2173:10;2185:8;2163:9;:31::i;:::-;1701:1:1::0;2628:7;:22;;;;1838:363:4;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;6503:160:4:-;6600:4;6627:18;:29;6646:9;6627:29;;;;;;;;;;;;;;;;;;;;;;;;;6620:36;;6503:160;;;:::o;7349:117::-;1094:13:0;:11;:13::i;:::-;7443:16:4::1;7428:12;:31;;;;7349:117:::0;:::o;17693:277:5:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;3807:155:4:-;3872:7;3954:1;3947:8;;3807:155;:::o;12515:1249:5:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;5063:827:4:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;5229:5:4::1;;5218:8;:16;;;;:::i;:::-;5205:9;:29;5201:64;;5243:22;;;;;;;;;;;;;;5201:64;5328:20;5351:13;:25;5365:10;5351:25;;;;;;;;;;;;;;;;5328:48;;1390:1;5405:8;5390:12;:23;;;;:::i;:::-;:47;5386:97;;;5458:25;;;;;;;;;;;;;;5386:97;5577:12;;5566:8;5556:7;;:18;;;;:::i;:::-;:33;5552:66;;;5598:20;;;;;;;;;;;;;;5552:66;5693:8;5682:7;;:19;;;;;;;;;;;5809:8;5794:12;:23;;;;:::i;:::-;5766:13;:25;5780:10;5766:25;;;;;;;;;;;;;;;:51;;;;5852:31;5862:10;5874:8;5852:9;:31::i;:::-;5121:769;1701:1:1::0;2628:7;:22;;;;5063:827:4;:::o;4505:552::-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;4619:1:4::1;4606:9;:14;4602:49;;4629:22;;;;;;;;;;;;;;4602:49;4743:13;:25;4757:10;4743:25;;;;;;;;;;;;;;;;;;;;;;;;;4739:63;;;4777:25;;;;;;;;;;;;;;4739:63;4877:1;4866:7;;:12;;;;;;;;;;;4986:4;4958:13;:25;4972:10;4958:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;5026:24;5036:10;5048:1;5026:9;:24::i;:::-;1701:1:1::0;2628:7;:22;;;;4505:552:4:o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:187::-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;5896:300:4:-;6012:4;6051:138;6087:7;;6051:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6112:6;6163:10;6146:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;6136:39;;;;;;6051:18;:138::i;:::-;6032:157;;5896:300;;;;;:::o;33423:110:5:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;39637:1708::-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;1153:184:3:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;32675:669:5:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;1991:290:3:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;27091:2902:5:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;8054:147:3:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;14837:318:5:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;8207:261:3:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:7:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:180::-;5338:77;5335:1;5328:88;5435:4;5432:1;5425:15;5459:4;5456:1;5449:15;5476:115;5559:1;5552:5;5549:12;5539:46;;5565:18;;:::i;:::-;5539:46;5476:115;:::o;5597:131::-;5644:7;5673:5;5662:16;;5679:43;5716:5;5679:43;:::i;:::-;5597:131;;;:::o;5734:::-;5792:9;5825:34;5853:5;5825:34;:::i;:::-;5812:47;;5734:131;;;:::o;5871:147::-;5966:45;6005:5;5966:45;:::i;:::-;5961:3;5954:58;5871:147;;:::o;6024:238::-;6125:4;6163:2;6152:9;6148:18;6140:26;;6176:79;6252:1;6241:9;6237:17;6228:6;6176:79;:::i;:::-;6024:238;;;;:::o;6268:619::-;6345:6;6353;6361;6410:2;6398:9;6389:7;6385:23;6381:32;6378:119;;;6416:79;;:::i;:::-;6378:119;6536:1;6561:53;6606:7;6597:6;6586:9;6582:22;6561:53;:::i;:::-;6551:63;;6507:117;6663:2;6689:53;6734:7;6725:6;6714:9;6710:22;6689:53;:::i;:::-;6679:63;;6634:118;6791:2;6817:53;6862:7;6853:6;6842:9;6838:22;6817:53;:::i;:::-;6807:63;;6762:118;6268:619;;;;;:::o;6893:329::-;6952:6;7001:2;6989:9;6980:7;6976:23;6972:32;6969:119;;;7007:79;;:::i;:::-;6969:119;7127:1;7152:53;7197:7;7188:6;7177:9;7173:22;7152:53;:::i;:::-;7142:63;;7098:117;6893:329;;;;:::o;7228:77::-;7265:7;7294:5;7283:16;;7228:77;;;:::o;7311:122::-;7384:24;7402:5;7384:24;:::i;:::-;7377:5;7374:35;7364:63;;7423:1;7420;7413:12;7364:63;7311:122;:::o;7439:139::-;7485:5;7523:6;7510:20;7501:29;;7539:33;7566:5;7539:33;:::i;:::-;7439:139;;;;:::o;7584:329::-;7643:6;7692:2;7680:9;7671:7;7667:23;7663:32;7660:119;;;7698:79;;:::i;:::-;7660:119;7818:1;7843:53;7888:7;7879:6;7868:9;7864:22;7843:53;:::i;:::-;7833:63;;7789:117;7584:329;;;;:::o;7919:117::-;8028:1;8025;8018:12;8042:117;8151:1;8148;8141:12;8165:180;8213:77;8210:1;8203:88;8310:4;8307:1;8300:15;8334:4;8331:1;8324:15;8351:281;8434:27;8456:4;8434:27;:::i;:::-;8426:6;8422:40;8564:6;8552:10;8549:22;8528:18;8516:10;8513:34;8510:62;8507:88;;;8575:18;;:::i;:::-;8507:88;8615:10;8611:2;8604:22;8394:238;8351:281;;:::o;8638:129::-;8672:6;8699:20;;:::i;:::-;8689:30;;8728:33;8756:4;8748:6;8728:33;:::i;:::-;8638:129;;;:::o;8773:308::-;8835:4;8925:18;8917:6;8914:30;8911:56;;;8947:18;;:::i;:::-;8911:56;8985:29;9007:6;8985:29;:::i;:::-;8977:37;;9069:4;9063;9059:15;9051:23;;8773:308;;;:::o;9087:154::-;9171:6;9166:3;9161;9148:30;9233:1;9224:6;9219:3;9215:16;9208:27;9087:154;;;:::o;9247:412::-;9325:5;9350:66;9366:49;9408:6;9366:49;:::i;:::-;9350:66;:::i;:::-;9341:75;;9439:6;9432:5;9425:21;9477:4;9470:5;9466:16;9515:3;9506:6;9501:3;9497:16;9494:25;9491:112;;;9522:79;;:::i;:::-;9491:112;9612:41;9646:6;9641:3;9636;9612:41;:::i;:::-;9331:328;9247:412;;;;;:::o;9679:340::-;9735:5;9784:3;9777:4;9769:6;9765:17;9761:27;9751:122;;9792:79;;:::i;:::-;9751:122;9909:6;9896:20;9934:79;10009:3;10001:6;9994:4;9986:6;9982:17;9934:79;:::i;:::-;9925:88;;9741:278;9679:340;;;;:::o;10025:509::-;10094:6;10143:2;10131:9;10122:7;10118:23;10114:32;10111:119;;;10149:79;;:::i;:::-;10111:119;10297:1;10286:9;10282:17;10269:31;10327:18;10319:6;10316:30;10313:117;;;10349:79;;:::i;:::-;10313:117;10454:63;10509:7;10500:6;10489:9;10485:22;10454:63;:::i;:::-;10444:73;;10240:287;10025:509;;;;:::o;10540:118::-;10627:24;10645:5;10627:24;:::i;:::-;10622:3;10615:37;10540:118;;:::o;10664:222::-;10757:4;10795:2;10784:9;10780:18;10772:26;;10808:71;10876:1;10865:9;10861:17;10852:6;10808:71;:::i;:::-;10664:222;;;;:::o;10892:117::-;11001:1;10998;10991:12;11015:117;11124:1;11121;11114:12;11155:568;11228:8;11238:6;11288:3;11281:4;11273:6;11269:17;11265:27;11255:122;;11296:79;;:::i;:::-;11255:122;11409:6;11396:20;11386:30;;11439:18;11431:6;11428:30;11425:117;;;11461:79;;:::i;:::-;11425:117;11575:4;11567:6;11563:17;11551:29;;11629:3;11621:4;11613:6;11609:17;11599:8;11595:32;11592:41;11589:128;;;11636:79;;:::i;:::-;11589:128;11155:568;;;;;:::o;11729:559::-;11815:6;11823;11872:2;11860:9;11851:7;11847:23;11843:32;11840:119;;;11878:79;;:::i;:::-;11840:119;12026:1;12015:9;12011:17;11998:31;12056:18;12048:6;12045:30;12042:117;;;12078:79;;:::i;:::-;12042:117;12191:80;12263:7;12254:6;12243:9;12239:22;12191:80;:::i;:::-;12173:98;;;;11969:312;11729:559;;;;;:::o;12294:116::-;12364:21;12379:5;12364:21;:::i;:::-;12357:5;12354:32;12344:60;;12400:1;12397;12390:12;12344:60;12294:116;:::o;12416:133::-;12459:5;12497:6;12484:20;12475:29;;12513:30;12537:5;12513:30;:::i;:::-;12416:133;;;;:::o;12555:468::-;12620:6;12628;12677:2;12665:9;12656:7;12652:23;12648:32;12645:119;;;12683:79;;:::i;:::-;12645:119;12803:1;12828:53;12873:7;12864:6;12853:9;12849:22;12828:53;:::i;:::-;12818:63;;12774:117;12930:2;12956:50;12998:7;12989:6;12978:9;12974:22;12956:50;:::i;:::-;12946:60;;12901:115;12555:468;;;;;:::o;13029:307::-;13090:4;13180:18;13172:6;13169:30;13166:56;;;13202:18;;:::i;:::-;13166:56;13240:29;13262:6;13240:29;:::i;:::-;13232:37;;13324:4;13318;13314:15;13306:23;;13029:307;;;:::o;13342:410::-;13419:5;13444:65;13460:48;13501:6;13460:48;:::i;:::-;13444:65;:::i;:::-;13435:74;;13532:6;13525:5;13518:21;13570:4;13563:5;13559:16;13608:3;13599:6;13594:3;13590:16;13587:25;13584:112;;;13615:79;;:::i;:::-;13584:112;13705:41;13739:6;13734:3;13729;13705:41;:::i;:::-;13425:327;13342:410;;;;;:::o;13771:338::-;13826:5;13875:3;13868:4;13860:6;13856:17;13852:27;13842:122;;13883:79;;:::i;:::-;13842:122;14000:6;13987:20;14025:78;14099:3;14091:6;14084:4;14076:6;14072:17;14025:78;:::i;:::-;14016:87;;13832:277;13771:338;;;;:::o;14115:943::-;14210:6;14218;14226;14234;14283:3;14271:9;14262:7;14258:23;14254:33;14251:120;;;14290:79;;:::i;:::-;14251:120;14410:1;14435:53;14480:7;14471:6;14460:9;14456:22;14435:53;:::i;:::-;14425:63;;14381:117;14537:2;14563:53;14608:7;14599:6;14588:9;14584:22;14563:53;:::i;:::-;14553:63;;14508:118;14665:2;14691:53;14736:7;14727:6;14716:9;14712:22;14691:53;:::i;:::-;14681:63;;14636:118;14821:2;14810:9;14806:18;14793:32;14852:18;14844:6;14841:30;14838:117;;;14874:79;;:::i;:::-;14838:117;14979:62;15033:7;15024:6;15013:9;15009:22;14979:62;:::i;:::-;14969:72;;14764:287;14115:943;;;;;;;:::o;15064:474::-;15132:6;15140;15189:2;15177:9;15168:7;15164:23;15160:32;15157:119;;;15195:79;;:::i;:::-;15157:119;15315:1;15340:53;15385:7;15376:6;15365:9;15361:22;15340:53;:::i;:::-;15330:63;;15286:117;15442:2;15468:53;15513:7;15504:6;15493:9;15489:22;15468:53;:::i;:::-;15458:63;;15413:118;15064:474;;;;;:::o;15544:180::-;15592:77;15589:1;15582:88;15689:4;15686:1;15679:15;15713:4;15710:1;15703:15;15730:320;15774:6;15811:1;15805:4;15801:12;15791:22;;15858:1;15852:4;15848:12;15879:18;15869:81;;15935:4;15927:6;15923:17;15913:27;;15869:81;15997:2;15989:6;15986:14;15966:18;15963:38;15960:84;;;16016:18;;:::i;:::-;15960:84;15781:269;15730:320;;;:::o;16056:181::-;16196:33;16192:1;16184:6;16180:14;16173:57;16056:181;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:148::-;17142:11;17179:3;17164:18;;17040:148;;;;:::o;17194:377::-;17300:3;17328:39;17361:5;17328:39;:::i;:::-;17383:89;17465:6;17460:3;17383:89;:::i;:::-;17376:96;;17481:52;17526:6;17521:3;17514:4;17507:5;17503:16;17481:52;:::i;:::-;17558:6;17553:3;17549:16;17542:23;;17304:267;17194:377;;;;:::o;17577:155::-;17717:7;17713:1;17705:6;17701:14;17694:31;17577:155;:::o;17738:400::-;17898:3;17919:84;18001:1;17996:3;17919:84;:::i;:::-;17912:91;;18012:93;18101:3;18012:93;:::i;:::-;18130:1;18125:3;18121:11;18114:18;;17738:400;;;:::o;18144:701::-;18425:3;18447:95;18538:3;18529:6;18447:95;:::i;:::-;18440:102;;18559:95;18650:3;18641:6;18559:95;:::i;:::-;18552:102;;18671:148;18815:3;18671:148;:::i;:::-;18664:155;;18836:3;18829:10;;18144:701;;;;;:::o;18851:180::-;18899:77;18896:1;18889:88;18996:4;18993:1;18986:15;19020:4;19017:1;19010:15;19037:305;19077:3;19096:20;19114:1;19096:20;:::i;:::-;19091:25;;19130:20;19148:1;19130:20;:::i;:::-;19125:25;;19284:1;19216:66;19212:74;19209:1;19206:81;19203:107;;;19290:18;;:::i;:::-;19203:107;19334:1;19331;19327:9;19320:16;;19037:305;;;;:::o;19348:225::-;19488:34;19484:1;19476:6;19472:14;19465:58;19557:8;19552:2;19544:6;19540:15;19533:33;19348:225;:::o;19579:366::-;19721:3;19742:67;19806:2;19801:3;19742:67;:::i;:::-;19735:74;;19818:93;19907:3;19818:93;:::i;:::-;19936:2;19931:3;19927:12;19920:19;;19579:366;;;:::o;19951:419::-;20117:4;20155:2;20144:9;20140:18;20132:26;;20204:9;20198:4;20194:20;20190:1;20179:9;20175:17;20168:47;20232:131;20358:4;20232:131;:::i;:::-;20224:139;;19951:419;;;:::o;20376:348::-;20416:7;20439:20;20457:1;20439:20;:::i;:::-;20434:25;;20473:20;20491:1;20473:20;:::i;:::-;20468:25;;20661:1;20593:66;20589:74;20586:1;20583:81;20578:1;20571:9;20564:17;20560:105;20557:131;;;20668:18;;:::i;:::-;20557:131;20716:1;20713;20709:9;20698:20;;20376:348;;;;:::o;20730:182::-;20870:34;20866:1;20858:6;20854:14;20847:58;20730:182;:::o;20918:366::-;21060:3;21081:67;21145:2;21140:3;21081:67;:::i;:::-;21074:74;;21157:93;21246:3;21157:93;:::i;:::-;21275:2;21270:3;21266:12;21259:19;;20918:366;;;:::o;21290:419::-;21456:4;21494:2;21483:9;21479:18;21471:26;;21543:9;21537:4;21533:20;21529:1;21518:9;21514:17;21507:47;21571:131;21697:4;21571:131;:::i;:::-;21563:139;;21290:419;;;:::o;21715:94::-;21748:8;21796:5;21792:2;21788:14;21767:35;;21715:94;;;:::o;21815:::-;21854:7;21883:20;21897:5;21883:20;:::i;:::-;21872:31;;21815:94;;;:::o;21915:100::-;21954:7;21983:26;22003:5;21983:26;:::i;:::-;21972:37;;21915:100;;;:::o;22021:157::-;22126:45;22146:24;22164:5;22146:24;:::i;:::-;22126:45;:::i;:::-;22121:3;22114:58;22021:157;;:::o;22184:256::-;22296:3;22311:75;22382:3;22373:6;22311:75;:::i;:::-;22411:2;22406:3;22402:12;22395:19;;22431:3;22424:10;;22184:256;;;;:::o;22446:98::-;22497:6;22531:5;22525:12;22515:22;;22446:98;;;:::o;22550:168::-;22633:11;22667:6;22662:3;22655:19;22707:4;22702:3;22698:14;22683:29;;22550:168;;;;:::o;22724:360::-;22810:3;22838:38;22870:5;22838:38;:::i;:::-;22892:70;22955:6;22950:3;22892:70;:::i;:::-;22885:77;;22971:52;23016:6;23011:3;23004:4;22997:5;22993:16;22971:52;:::i;:::-;23048:29;23070:6;23048:29;:::i;:::-;23043:3;23039:39;23032:46;;22814:270;22724:360;;;;:::o;23090:640::-;23285:4;23323:3;23312:9;23308:19;23300:27;;23337:71;23405:1;23394:9;23390:17;23381:6;23337:71;:::i;:::-;23418:72;23486:2;23475:9;23471:18;23462:6;23418:72;:::i;:::-;23500;23568:2;23557:9;23553:18;23544:6;23500:72;:::i;:::-;23619:9;23613:4;23609:20;23604:2;23593:9;23589:18;23582:48;23647:76;23718:4;23709:6;23647:76;:::i;:::-;23639:84;;23090:640;;;;;;;:::o;23736:141::-;23792:5;23823:6;23817:13;23808:22;;23839:32;23865:5;23839:32;:::i;:::-;23736:141;;;;:::o;23883:349::-;23952:6;24001:2;23989:9;23980:7;23976:23;23972:32;23969:119;;;24007:79;;:::i;:::-;23969:119;24127:1;24152:63;24207:7;24198:6;24187:9;24183:22;24152:63;:::i;:::-;24142:73;;24098:127;23883:349;;;;:::o;24238:180::-;24286:77;24283:1;24276:88;24383:4;24380:1;24373:15;24407:4;24404:1;24397:15;24424:233;24463:3;24486:24;24504:5;24486:24;:::i;:::-;24477:33;;24532:66;24525:5;24522:77;24519:103;;;24602:18;;:::i;:::-;24519:103;24649:1;24642:5;24638:13;24631:20;;24424:233;;;:::o
Swarm Source
ipfs://caa303bbba99853e95ad1ca8cf0f88c3bdf8ab7b79803963df386dfab8c36d4d
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.