ERC-721
Overview
Max Total Supply
133 HDLP
Holders
109
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HDLPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hodlopaths
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-21 */ // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * 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. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ 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 simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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 sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _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}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _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) } } } // File: contracts/hodlopathsMerkle.sol pragma solidity 0.8.9; contract Merkle is Ownable{ bytes32 internal doubleWhiteListMerkleRoot = ""; bytes32 internal whiteListMerkleRoot = ""; bytes32 internal waitListMerkleRoot = ""; function setWhitelistMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ whiteListMerkleRoot = merkleRoot_; } function setDoubleWhiteListMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ doubleWhiteListMerkleRoot = merkleRoot_; } function setWaitlistMerkleRoot( bytes32 merkleRoot_ ) external onlyOwner{ waitListMerkleRoot = merkleRoot_; } function _isValidWhitelistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == whiteListMerkleRoot; } function _isValidDoubleWhitelistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == doubleWhiteListMerkleRoot; } function _isValidWaitlistProof(bytes32 leaf, bytes32[] memory proof) internal view returns( bool ){ return MerkleProof.processProof( proof, leaf ) == waitListMerkleRoot; } } // File: erc721a/contracts/IERC721A.sol // 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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) } } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: contracts/hodlopaths.sol pragma solidity 0.8.9; contract Hodlopaths is ERC721A, ERC2981, Merkle { using Address for address; enum Phases { NULL_PHASE, WHITELIST_PHASE, WAITLIST_PHASE } Phases phaseState = Phases.NULL_PHASE; struct SaleConfig { uint64 price; uint16 maxMint; uint16 maxSupply; } SaleConfig public waitlistPhase = SaleConfig(0.039 ether, 1, 2929); SaleConfig public whitelistPhase = SaleConfig(0.029 ether, 1, 2929); SaleConfig public doubleWhitelistConf = SaleConfig(0.029 ether, 2, 2929); bool beforeReveal = true; string private _contractURI = "https://ipfs.io/ipfs/Qmf3eMJcVnkXjNcVhQoDcLwoV2V4cTXrZymosCGYkQSFoy"; string public preUnlockURI = "https://ipfs.io/ipfs/QmV8duhJzjPRCuU9VvmWMYaFF98tu78ry37F9PjdQGRyRF/hidden.json"; string public afterRevealURI = ""; string public baseExtension = ".json"; constructor() ERC721A("Hodlopaths", "HDLP") { setDefaultRoyalty(0xa986078AC161bF5b947C86C81B1c8bd4EAbAa68a, 750); } receive() external payable {} function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function mintWhitelist(bytes32[] calldata proof) external payable { SaleConfig memory whitelistConfig = whitelistPhase; require( _numberMinted(msg.sender) < whitelistConfig.maxMint, "Max 1 mint per wallet" ); require(totalSupply() < whitelistConfig.maxSupply, "Exceeds supply"); require(msg.value == whitelistConfig.price, "Invalid price"); require(phaseState != Phases.NULL_PHASE,"Not in sale"); require( _isValidWhitelistProof( keccak256(abi.encodePacked(msg.sender)), proof ), "You are not on the white list" ); _mint(msg.sender, 1); } function mintWaitlist(bytes32[] calldata proof) external payable { SaleConfig memory waitlistConfig = waitlistPhase; require( _numberMinted(msg.sender) < waitlistConfig.maxMint, "Max 1 mint per wallet" ); require(totalSupply() < waitlistConfig.maxSupply, "Exceeds supply"); require(msg.value == waitlistConfig.price, "Invalid price"); require( _isValidWaitlistProof( keccak256(abi.encodePacked(msg.sender)), proof ) || _isValidWhitelistProof( keccak256(abi.encodePacked(msg.sender)), proof ), "You are not on the premint list" ); require(phaseState == Phases.WAITLIST_PHASE, "Not in waitlist phase"); _mint(msg.sender, 1); } function mintDoubleWhitelist( uint16 quantity, bytes32[] calldata proof ) external payable { SaleConfig memory whitelistConfig = doubleWhitelistConf; require( _numberMinted(msg.sender) + quantity <= whitelistConfig.maxMint, "Max 2 mints per wallet" ); require( totalSupply() + quantity <= whitelistConfig.maxSupply, "Exceeds supply" ); require( msg.value == quantity * whitelistConfig.price, "Ether sent is not correct" ); require( _isValidDoubleWhitelistProof( keccak256(abi.encodePacked(msg.sender)), proof ), "You are not on the double white list" ); require(phaseState != Phases.NULL_PHASE, "sale is not active"); _mint(msg.sender, quantity); } function airdrop( uint16[] calldata quantity, address[] calldata recipient ) external payable onlyOwner { require( quantity.length == recipient.length, "must provide equal quantities and recipients" ); uint256 totalQuantity = 0; for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } uint256 tokenId = totalSupply(); require( tokenId + totalQuantity <= whitelistPhase.maxSupply, "Reached max supply" ); for (uint256 i = 0; i < recipient.length; ++i) { _mint(recipient[i], quantity[i]); } } function setPhases(Phases _saleState) external onlyOwner { require(uint8(_saleState) < 3, "invalid sale state"); phaseState = _saleState; } function setContractURI(string memory newContractURI) external onlyOwner { _contractURI = newContractURI; } function setPreUnlockURI(string memory newBeforeReveal) external onlyOwner { preUnlockURI = newBeforeReveal; } function revealNfts(string memory baseURI) external onlyOwner { beforeReveal = false; afterRevealURI=baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (beforeReveal) { return preUnlockURI; } else { string memory currentBaseURI = afterRevealURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _toString(tokenId), baseExtension ) ) : ""; } } function setDefaultRoyalty( address receiver, uint96 feeNumerator ) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function contractURI() external view returns (string memory) { return _contractURI; } function supportsInterface( bytes4 interfaceId ) public view override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function getBalance() public view returns (uint) { return address(this).balance; } function getPhase() public view returns (Phases){ return phaseState; } function widthdrawTo(address _address, uint256 _amount) public onlyOwner { payable(_address).transfer(_amount); } function _widthdraw(address _address, uint256 _amount) private { payable(_address).transfer(_amount); } function withdrawAll(address vault) external onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(vault, balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"afterRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"quantity","type":"uint16[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doubleWhitelistConf","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"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":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPhase","outputs":[{"internalType":"enum Hodlopaths.Phases","name":"","type":"uint8"}],"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":[{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintDoubleWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWaitlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preUnlockURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"revealNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setDoubleWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Hodlopaths.Phases","name":"_saleState","type":"uint8"}],"name":"setPhases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBeforeReveal","type":"string"}],"name":"setPreUnlockURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWaitlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"waitlistPhase","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint16","name":"maxMint","type":"uint16"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"widthdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vault","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600b556000600c556000600d556000600e60006101000a81548160ff021916908360028111156200003c576200003b6200086e565b5b02179055506040518060600160405280668a8e4b1a3d800067ffffffffffffffff168152602001600161ffff168152602001610b7161ffff16815250600f60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff1602179055505050604051806060016040528066670758aa7c800067ffffffffffffffff168152602001600161ffff168152602001610b7161ffff16815250601060008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff1602179055505050604051806060016040528066670758aa7c800067ffffffffffffffff168152602001600261ffff168152602001610b7161ffff16815250601160008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548161ffff021916908361ffff160217905550604082015181600001600a6101000a81548161ffff021916908361ffff16021790555050506001601260006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620056c560439139601390805190602001906200029d929190620007be565b506040518060800160405280604f815260200162005676604f913960149080519060200190620002cf929190620007be565b506040518060200160405280600081525060159080519060200190620002f7929190620007be565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506016908051906020019062000345929190620007be565b503480156200035357600080fd5b506040518060400160405280600a81526020017f486f646c6f7061746873000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f48444c50000000000000000000000000000000000000000000000000000000008152508160029080519060200190620003d8929190620007be565b508060039080519060200190620003f1929190620007be565b50620004026200045860201b60201c565b60008190555050506200042a6200041e6200046160201b60201c565b6200046960201b60201c565b6200045273a986078ac161bf5b947c86c81b1c8bd4eabaa68a6102ee6200052f60201b60201c565b62000a8f565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200053f6200055560201b60201c565b620005518282620005e660201b60201c565b5050565b620005656200046160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200058b6200078a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005db90620008fe565b60405180910390fd5b565b620005f6620007b460201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000657576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064e9062000996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c19062000a08565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b828054620007cc9062000a59565b90600052602060002090601f016020900481019282620007f057600085556200083c565b82601f106200080b57805160ff19168380011785556200083c565b828001600101855582156200083c579182015b828111156200083b5782518255916020019190600101906200081e565b5b5090506200084b91906200084f565b5090565b5b808211156200086a57600081600090555060010162000850565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008e66020836200089d565b9150620008f382620008ae565b602082019050919050565b600060208201905081810360008301526200091981620008d7565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006200097e602a836200089d565b91506200098b8262000920565b604082019050919050565b60006020820190508181036000830152620009b1816200096f565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000620009f06019836200089d565b9150620009fd82620009b8565b602082019050919050565b6000602082019050818103600083015262000a2381620009e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7257607f821691505b6020821081141562000a895762000a8862000a2a565b5b50919050565b614bd78062000a9f6000396000f3fe60806040526004361061024a5760003560e01c8063785617b311610139578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610808578063e985e9c514610833578063eced028014610870578063f2fde38b1461089b578063fa09e630146108c4578063feecee71146108ed57610251565b8063b88d4fde14610732578063bd32fb661461074e578063c668286214610777578063c87b56dd146107a2578063d378d8f9146107df57610251565b80639491730b116100fd5780639491730b1461065f57806395d89b411461068a578063a22cb465146106b5578063a3f3b3b2146106de578063abcd9c831461070757610251565b8063785617b314610599578063815d544c146105b5578063899fe6bc146105e25780638da5cb5b1461060b578063938e3d7b1461063657610251565b80632a55205a116101c7578063516b006c1161018b578063516b006c146104b25780636352211e146104db57806370a0823114610518578063715018a61461055557806374d6a4ad1461056c57610251565b80632a55205a146103f7578063318e26e01461043557806342842e0e1461045157806344d843811461046d5780634c5758261461048957610251565b806312065fe01161020e57806312065fe01461034057806318160ddd1461036b5780631a86a22a1461039657806323b872dd146103b25780632421d49a146103ce57610251565b806301ffc9a71461025657806304634d8d1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b31461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906132bf565b61091a565b60405161028a9190613307565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906133c4565b61093c565b005b3480156102c857600080fd5b506102d1610952565b6040516102de919061349d565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906134f5565b6109e4565b60405161031b9190613531565b60405180910390f35b61033e6004803603810190610339919061354c565b610a63565b005b34801561034c57600080fd5b50610355610ba7565b604051610362919061359b565b60405180910390f35b34801561037757600080fd5b50610380610baf565b60405161038d919061359b565b60405180910390f35b6103b060048036038101906103ab919061361b565b610bc6565b005b6103cc60048036038101906103c79190613668565b610ee9565b005b3480156103da57600080fd5b506103f560048036038101906103f091906136f1565b61120e565b005b34801561040357600080fd5b5061041e6004803603810190610419919061371e565b611220565b60405161042c92919061375e565b60405180910390f35b61044f600480360381019061044a9190613833565b61140b565b005b61046b60048036038101906104669190613668565b6115aa565b005b6104876004803603810190610482919061361b565b6115ca565b005b34801561049557600080fd5b506104b060048036038101906104ab91906139e4565b611877565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613a52565b611899565b005b3480156104e757600080fd5b5061050260048036038101906104fd91906134f5565b611926565b60405161050f9190613531565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613a7f565b611938565b60405161054c919061359b565b60405180910390f35b34801561056157600080fd5b5061056a6119f1565b005b34801561057857600080fd5b50610581611a05565b60405161059093929190613aec565b60405180910390f35b6105b360048036038101906105ae9190613b4f565b611a4d565b005b3480156105c157600080fd5b506105ca611d2d565b6040516105d993929190613aec565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906139e4565b611d75565b005b34801561061757600080fd5b50610620611db2565b60405161062d9190613531565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906139e4565b611ddc565b005b34801561066b57600080fd5b50610674611dfe565b604051610681919061349d565b60405180910390f35b34801561069657600080fd5b5061069f611e8c565b6040516106ac919061349d565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613bdb565b611f1e565b005b3480156106ea57600080fd5b50610705600480360381019061070091906136f1565b612029565b005b34801561071357600080fd5b5061071c61203b565b604051610729919061349d565b60405180910390f35b61074c60048036038101906107479190613cbc565b6120c9565b005b34801561075a57600080fd5b50610775600480360381019061077091906136f1565b61213c565b005b34801561078357600080fd5b5061078c61214e565b604051610799919061349d565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906134f5565b6121dc565b6040516107d6919061349d565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061354c565b6123b1565b005b34801561081457600080fd5b5061081d612404565b60405161082a919061349d565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613d3f565b612496565b6040516108679190613307565b60405180910390f35b34801561087c57600080fd5b5061088561252a565b6040516108929190613df6565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613a7f565b612541565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a7f565b6125c5565b005b3480156108f957600080fd5b506109026125ed565b60405161091193929190613aec565b60405180910390f35b600061092582612635565b806109355750610934826126c7565b5b9050919050565b610944612741565b61094e82826127bf565b5050565b60606002805461096190613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90613e40565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef82612955565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e82611926565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8f6129b4565b73ffffffffffffffffffffffffffffffffffffffff1614610af257610abb81610ab66129b4565b612496565b610af1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610bb96129bc565b6001546000540303905090565b6000600f6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff16610c5b336129c5565b10610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613ebe565b60405180910390fd5b806040015161ffff16610cac610baf565b10610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613f2a565b60405180910390fd5b806000015167ffffffffffffffff163414610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613f96565b60405180910390fd5b610dad33604051602001610d509190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a1c565b80610e255750610e2433604051602001610dc79190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a34565b5b610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90614065565b60405180910390fd5b600280811115610e7757610e76613d7f565b5b600e60009054906101000a900460ff166002811115610e9957610e98613d7f565b5b14610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906140d1565b60405180910390fd5b610ee4336001612a4c565b505050565b6000610ef482612c09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f6784612cd7565b91509150610f7d8187610f786129b4565b612cfe565b610fc957610f9286610f8d6129b4565b612496565b610fc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611030576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61103d8686866001612d42565b801561104857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611116856110f2888887612d48565b7c020000000000000000000000000000000000000000000000000000000017612d70565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561119e57600060018501905060006004600083815260200190815260200160002054141561119c57600054811461119b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112068686866001612d9b565b505050505050565b611216612741565b80600b8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156113b65760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006113c0612da1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113ec9190614120565b6113f691906141a9565b90508160000151819350935050509250929050565b611413612741565b81819050848490501461145b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114529061424c565b60405180910390fd5b6000805b858590508110156114b45785858281811061147d5761147c61426c565b5b9050602002016020810190611492919061429b565b61ffff16826114a191906142c8565b9150806114ad9061431e565b905061145f565b5060006114bf610baf565b90506010600001600a9054906101000a900461ffff1661ffff1682826114e591906142c8565b1115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906143b3565b60405180910390fd5b60005b848490508110156115a15761159085858381811061154a5761154961426c565b5b905060200201602081019061155f9190613a7f565b8888848181106115725761157161426c565b5b9050602002016020810190611587919061429b565b61ffff16612a4c565b8061159a9061431e565b9050611529565b50505050505050565b6115c5838383604051806020016040528060008152506120c9565b505050565b600060106040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff1661165f336129c5565b1061169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613ebe565b60405180910390fd5b806040015161ffff166116b0610baf565b106116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613f2a565b60405180910390fd5b806000015167ffffffffffffffff163414611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613f96565b60405180910390fd5b6000600281111561175457611753613d7f565b5b600e60009054906101000a900460ff16600281111561177657611775613d7f565b5b14156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061441f565b60405180910390fd5b611828336040516020016117cb9190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a34565b611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e9061448b565b60405180910390fd5b611872336001612a4c565b505050565b61187f612741565b80601490805190602001906118959291906131b0565b5050565b6118a1612741565b60038160028111156118b6576118b5613d7f565b5b60ff16106118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906144f7565b60405180910390fd5b80600e60006101000a81548160ff0219169083600281111561191e5761191d613d7f565b5b021790555050565b600061193182612c09565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6119f9612741565b611a036000612dab565b565b600f8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b600060116040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff168461ffff16611ae7336129c5565b611af191906142c8565b1115611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990614563565b60405180910390fd5b806040015161ffff168461ffff16611b48610baf565b611b5291906142c8565b1115611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613f2a565b60405180910390fd5b80600001518461ffff16611ba79190614583565b67ffffffffffffffff163414611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614611565b60405180910390fd5b611c6333604051602001611c069190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e71565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906146a3565b60405180910390fd5b60006002811115611cb657611cb5613d7f565b5b600e60009054906101000a900460ff166002811115611cd857611cd7613d7f565b5b1415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109061470f565b60405180910390fd5b611d27338561ffff16612a4c565b50505050565b60108060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b611d7d612741565b6000601260006101000a81548160ff0219169083151502179055508060159080519060200190611dae9291906131b0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611de4612741565b8060139080519060200190611dfa9291906131b0565b5050565b60158054611e0b90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3790613e40565b8015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b505050505081565b606060038054611e9b90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790613e40565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b8060076000611f2b6129b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fd86129b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161201d9190613307565b60405180910390a35050565b612031612741565b80600d8190555050565b6014805461204890613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461207490613e40565b80156120c15780601f10612096576101008083540402835291602001916120c1565b820191906000526020600020905b8154815290600101906020018083116120a457829003601f168201915b505050505081565b6120d4848484610ee9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612136576120ff84848484612e89565b612135576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612144612741565b80600c8190555050565b6016805461215b90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461218790613e40565b80156121d45780601f106121a9576101008083540402835291602001916121d4565b820191906000526020600020905b8154815290600101906020018083116121b757829003601f168201915b505050505081565b60606121e782612955565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d906147a1565b60405180910390fd5b601260009054906101000a900460ff16156122cd576014805461224890613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461227490613e40565b80156122c15780601f10612296576101008083540402835291602001916122c1565b820191906000526020600020905b8154815290600101906020018083116122a457829003601f168201915b505050505090506123ac565b6000601580546122dc90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461230890613e40565b80156123555780601f1061232a57610100808354040283529160200191612355565b820191906000526020600020905b81548152906001019060200180831161233857829003601f168201915b50505050509050600081511161237a57604051806020016040528060008152506123a8565b8061238484612fe9565b601660405160200161239893929190614891565b6040516020818303038152906040525b9150505b919050565b6123b9612741565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156123ff573d6000803e3d6000fd5b505050565b60606013805461241390613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461243f90613e40565b801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60009054906101000a900460ff16905090565b612549612741565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614934565b60405180910390fd5b6125c281612dab565b50565b6125cd612741565b6000479050600081116125df57600080fd5b6125e98282613042565b5050565b60118060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061269057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273a57506127398261308d565b5b9050919050565b6127496130f7565b73ffffffffffffffffffffffffffffffffffffffff16612767611db2565b73ffffffffffffffffffffffffffffffffffffffff16146127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b4906149a0565b60405180910390fd5b565b6127c7612da1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c90614a32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614a9e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816129606129bc565b1115801561296f575060005482105b80156129ad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600d54612a2b83856130ff565b14905092915050565b6000600c54612a4383856130ff565b14905092915050565b6000805490506000821415612a8d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9a6000848385612d42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b1183612b026000866000612d48565b612b0b85613155565b17612d70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bb257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b77565b506000821415612bee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c046000848385612d9b565b505050565b60008082905080612c186129bc565b11612ca057600054811015612c9f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c9d575b6000811415612c93576004600083600190039350838152602001908152602001600020549050612c68565b8092505050612cd2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d5f868684613165565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600b54612e8083856130ff565b14905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eaf6129b4565b8786866040518563ffffffff1660e01b8152600401612ed19493929190614b13565b602060405180830381600087803b158015612eeb57600080fd5b505af1925050508015612f1c57506040513d601f19601f82011682018060405250810190612f199190614b74565b60015b612f96573d8060008114612f4c576040519150601f19603f3d011682016040523d82523d6000602084013e612f51565b606091505b50600081511415612f8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561302d57600184039350600a81066030018453600a81049050806130285761302d565b613002565b50828103602084039350808452505050919050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613088573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008082905060005b845181101561314a57613135828683815181106131285761312761426c565b5b602002602001015161316e565b915080806131429061431e565b915050613108565b508091505092915050565b60006001821460e11b9050919050565b60009392505050565b6000818310613186576131818284613199565b613191565b6131908383613199565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131bc90613e40565b90600052602060002090601f0160209004810192826131de5760008555613225565b82601f106131f757805160ff1916838001178555613225565b82800160010185558215613225579182015b82811115613224578251825591602001919060010190613209565b5b5090506132329190613236565b5090565b5b8082111561324f576000816000905550600101613237565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61329c81613267565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b6000602082840312156132d5576132d461325d565b5b60006132e3848285016132aa565b91505092915050565b60008115159050919050565b613301816132ec565b82525050565b600060208201905061331c60008301846132f8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334d82613322565b9050919050565b61335d81613342565b811461336857600080fd5b50565b60008135905061337a81613354565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6133a181613380565b81146133ac57600080fd5b50565b6000813590506133be81613398565b92915050565b600080604083850312156133db576133da61325d565b5b60006133e98582860161336b565b92505060206133fa858286016133af565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343e578082015181840152602081019050613423565b8381111561344d576000848401525b50505050565b6000601f19601f8301169050919050565b600061346f82613404565b613479818561340f565b9350613489818560208601613420565b61349281613453565b840191505092915050565b600060208201905081810360008301526134b78184613464565b905092915050565b6000819050919050565b6134d2816134bf565b81146134dd57600080fd5b50565b6000813590506134ef816134c9565b92915050565b60006020828403121561350b5761350a61325d565b5b6000613519848285016134e0565b91505092915050565b61352b81613342565b82525050565b60006020820190506135466000830184613522565b92915050565b600080604083850312156135635761356261325d565b5b60006135718582860161336b565b9250506020613582858286016134e0565b9150509250929050565b613595816134bf565b82525050565b60006020820190506135b0600083018461358c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126135db576135da6135b6565b5b8235905067ffffffffffffffff8111156135f8576135f76135bb565b5b602083019150836020820283011115613614576136136135c0565b5b9250929050565b600080602083850312156136325761363161325d565b5b600083013567ffffffffffffffff8111156136505761364f613262565b5b61365c858286016135c5565b92509250509250929050565b6000806000606084860312156136815761368061325d565b5b600061368f8682870161336b565b93505060206136a08682870161336b565b92505060406136b1868287016134e0565b9150509250925092565b6000819050919050565b6136ce816136bb565b81146136d957600080fd5b50565b6000813590506136eb816136c5565b92915050565b6000602082840312156137075761370661325d565b5b6000613715848285016136dc565b91505092915050565b600080604083850312156137355761373461325d565b5b6000613743858286016134e0565b9250506020613754858286016134e0565b9150509250929050565b60006040820190506137736000830185613522565b613780602083018461358c565b9392505050565b60008083601f84011261379d5761379c6135b6565b5b8235905067ffffffffffffffff8111156137ba576137b96135bb565b5b6020830191508360208202830111156137d6576137d56135c0565b5b9250929050565b60008083601f8401126137f3576137f26135b6565b5b8235905067ffffffffffffffff8111156138105761380f6135bb565b5b60208301915083602082028301111561382c5761382b6135c0565b5b9250929050565b6000806000806040858703121561384d5761384c61325d565b5b600085013567ffffffffffffffff81111561386b5761386a613262565b5b61387787828801613787565b9450945050602085013567ffffffffffffffff81111561389a57613899613262565b5b6138a6878288016137dd565b925092505092959194509250565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f182613453565b810181811067ffffffffffffffff821117156139105761390f6138b9565b5b80604052505050565b6000613923613253565b905061392f82826138e8565b919050565b600067ffffffffffffffff82111561394f5761394e6138b9565b5b61395882613453565b9050602081019050919050565b82818337600083830152505050565b600061398761398284613934565b613919565b9050828152602081018484840111156139a3576139a26138b4565b5b6139ae848285613965565b509392505050565b600082601f8301126139cb576139ca6135b6565b5b81356139db848260208601613974565b91505092915050565b6000602082840312156139fa576139f961325d565b5b600082013567ffffffffffffffff811115613a1857613a17613262565b5b613a24848285016139b6565b91505092915050565b60038110613a3a57600080fd5b50565b600081359050613a4c81613a2d565b92915050565b600060208284031215613a6857613a6761325d565b5b6000613a7684828501613a3d565b91505092915050565b600060208284031215613a9557613a9461325d565b5b6000613aa38482850161336b565b91505092915050565b600067ffffffffffffffff82169050919050565b613ac981613aac565b82525050565b600061ffff82169050919050565b613ae681613acf565b82525050565b6000606082019050613b016000830186613ac0565b613b0e6020830185613add565b613b1b6040830184613add565b949350505050565b613b2c81613acf565b8114613b3757600080fd5b50565b600081359050613b4981613b23565b92915050565b600080600060408486031215613b6857613b6761325d565b5b6000613b7686828701613b3a565b935050602084013567ffffffffffffffff811115613b9757613b96613262565b5b613ba3868287016135c5565b92509250509250925092565b613bb8816132ec565b8114613bc357600080fd5b50565b600081359050613bd581613baf565b92915050565b60008060408385031215613bf257613bf161325d565b5b6000613c008582860161336b565b9250506020613c1185828601613bc6565b9150509250929050565b600067ffffffffffffffff821115613c3657613c356138b9565b5b613c3f82613453565b9050602081019050919050565b6000613c5f613c5a84613c1b565b613919565b905082815260208101848484011115613c7b57613c7a6138b4565b5b613c86848285613965565b509392505050565b600082601f830112613ca357613ca26135b6565b5b8135613cb3848260208601613c4c565b91505092915050565b60008060008060808587031215613cd657613cd561325d565b5b6000613ce48782880161336b565b9450506020613cf58782880161336b565b9350506040613d06878288016134e0565b925050606085013567ffffffffffffffff811115613d2757613d26613262565b5b613d3387828801613c8e565b91505092959194509250565b60008060408385031215613d5657613d5561325d565b5b6000613d648582860161336b565b9250506020613d758582860161336b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613dbf57613dbe613d7f565b5b50565b6000819050613dd082613dae565b919050565b6000613de082613dc2565b9050919050565b613df081613dd5565b82525050565b6000602082019050613e0b6000830184613de7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e5857607f821691505b60208210811415613e6c57613e6b613e11565b5b50919050565b7f4d61782031206d696e74207065722077616c6c65740000000000000000000000600082015250565b6000613ea860158361340f565b9150613eb382613e72565b602082019050919050565b60006020820190508181036000830152613ed781613e9b565b9050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b6000613f14600e8361340f565b9150613f1f82613ede565b602082019050919050565b60006020820190508181036000830152613f4381613f07565b9050919050565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b6000613f80600d8361340f565b9150613f8b82613f4a565b602082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b60008160601b9050919050565b6000613fce82613fb6565b9050919050565b6000613fe082613fc3565b9050919050565b613ff8613ff382613342565b613fd5565b82525050565b600061400a8284613fe7565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e20746865207072656d696e74206c69737400600082015250565b600061404f601f8361340f565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e6f7420696e20776169746c6973742070686173650000000000000000000000600082015250565b60006140bb60158361340f565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412b826134bf565b9150614136836134bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416f5761416e6140f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b4826134bf565b91506141bf836134bf565b9250826141cf576141ce61417a565b5b828204905092915050565b7f6d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b6000614236602c8361340f565b9150614241826141da565b604082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156142b1576142b061325d565b5b60006142bf84828501613b3a565b91505092915050565b60006142d3826134bf565b91506142de836134bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614313576143126140f1565b5b828201905092915050565b6000614329826134bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561435c5761435b6140f1565b5b600182019050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061439d60128361340f565b91506143a882614367565b602082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f4e6f7420696e2073616c65000000000000000000000000000000000000000000600082015250565b6000614409600b8361340f565b9150614414826143d3565b602082019050919050565b60006020820190508181036000830152614438816143fc565b9050919050565b7f596f7520617265206e6f74206f6e20746865207768697465206c697374000000600082015250565b6000614475601d8361340f565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f696e76616c69642073616c652073746174650000000000000000000000000000600082015250565b60006144e160128361340f565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4d61782032206d696e7473207065722077616c6c657400000000000000000000600082015250565b600061454d60168361340f565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b600061458e82613aac565b915061459983613aac565b92508167ffffffffffffffff04831182151516156145ba576145b96140f1565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006145fb60198361340f565b9150614606826145c5565b602082019050919050565b6000602082019050818103600083015261462a816145ee565b9050919050565b7f596f7520617265206e6f74206f6e2074686520646f75626c652077686974652060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b600061468d60248361340f565b915061469882614631565b604082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006146f960128361340f565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061478b602f8361340f565b91506147968261472f565b604082019050919050565b600060208201905081810360008301526147ba8161477e565b9050919050565b600081905092915050565b60006147d782613404565b6147e181856147c1565b93506147f1818560208601613420565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461481f81613e40565b61482981866147c1565b94506001821660008114614844576001811461485557614888565b60ff19831686528186019350614888565b61485e856147fd565b60005b8381101561488057815481890152600182019150602081019050614861565b838801955050505b50505092915050565b600061489d82866147cc565b91506148a982856147cc565b91506148b58284614812565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061491e60268361340f565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061498a60208361340f565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614a1c602a8361340f565b9150614a27826149c0565b604082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614a8860198361340f565b9150614a9382614a52565b602082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ae582614abe565b614aef8185614ac9565b9350614aff818560208601613420565b614b0881613453565b840191505092915050565b6000608082019050614b286000830187613522565b614b356020830186613522565b614b42604083018561358c565b8181036060830152614b548184614ada565b905095945050505050565b600081519050614b6e81613293565b92915050565b600060208284031215614b8a57614b8961325d565b5b6000614b9884828501614b5f565b9150509291505056fea264697066735822122057c4362c82a62a4f8dd7ca1de67e84527b2cd3ae458b846e6b8d275730e8faa864736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d56386475684a7a6a50524375553956766d574d59614646393874753738727933374639506a645147527952462f68696464656e2e6a736f6e68747470733a2f2f697066732e696f2f697066732f516d6633654d4a63566e6b586a4e635668516f44634c776f56325634635458725a796d6f734347596b5153466f79
Deployed Bytecode
0x60806040526004361061024a5760003560e01c8063785617b311610139578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610808578063e985e9c514610833578063eced028014610870578063f2fde38b1461089b578063fa09e630146108c4578063feecee71146108ed57610251565b8063b88d4fde14610732578063bd32fb661461074e578063c668286214610777578063c87b56dd146107a2578063d378d8f9146107df57610251565b80639491730b116100fd5780639491730b1461065f57806395d89b411461068a578063a22cb465146106b5578063a3f3b3b2146106de578063abcd9c831461070757610251565b8063785617b314610599578063815d544c146105b5578063899fe6bc146105e25780638da5cb5b1461060b578063938e3d7b1461063657610251565b80632a55205a116101c7578063516b006c1161018b578063516b006c146104b25780636352211e146104db57806370a0823114610518578063715018a61461055557806374d6a4ad1461056c57610251565b80632a55205a146103f7578063318e26e01461043557806342842e0e1461045157806344d843811461046d5780634c5758261461048957610251565b806312065fe01161020e57806312065fe01461034057806318160ddd1461036b5780631a86a22a1461039657806323b872dd146103b25780632421d49a146103ce57610251565b806301ffc9a71461025657806304634d8d1461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b31461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906132bf565b61091a565b60405161028a9190613307565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906133c4565b61093c565b005b3480156102c857600080fd5b506102d1610952565b6040516102de919061349d565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906134f5565b6109e4565b60405161031b9190613531565b60405180910390f35b61033e6004803603810190610339919061354c565b610a63565b005b34801561034c57600080fd5b50610355610ba7565b604051610362919061359b565b60405180910390f35b34801561037757600080fd5b50610380610baf565b60405161038d919061359b565b60405180910390f35b6103b060048036038101906103ab919061361b565b610bc6565b005b6103cc60048036038101906103c79190613668565b610ee9565b005b3480156103da57600080fd5b506103f560048036038101906103f091906136f1565b61120e565b005b34801561040357600080fd5b5061041e6004803603810190610419919061371e565b611220565b60405161042c92919061375e565b60405180910390f35b61044f600480360381019061044a9190613833565b61140b565b005b61046b60048036038101906104669190613668565b6115aa565b005b6104876004803603810190610482919061361b565b6115ca565b005b34801561049557600080fd5b506104b060048036038101906104ab91906139e4565b611877565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613a52565b611899565b005b3480156104e757600080fd5b5061050260048036038101906104fd91906134f5565b611926565b60405161050f9190613531565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613a7f565b611938565b60405161054c919061359b565b60405180910390f35b34801561056157600080fd5b5061056a6119f1565b005b34801561057857600080fd5b50610581611a05565b60405161059093929190613aec565b60405180910390f35b6105b360048036038101906105ae9190613b4f565b611a4d565b005b3480156105c157600080fd5b506105ca611d2d565b6040516105d993929190613aec565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906139e4565b611d75565b005b34801561061757600080fd5b50610620611db2565b60405161062d9190613531565b60405180910390f35b34801561064257600080fd5b5061065d600480360381019061065891906139e4565b611ddc565b005b34801561066b57600080fd5b50610674611dfe565b604051610681919061349d565b60405180910390f35b34801561069657600080fd5b5061069f611e8c565b6040516106ac919061349d565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613bdb565b611f1e565b005b3480156106ea57600080fd5b50610705600480360381019061070091906136f1565b612029565b005b34801561071357600080fd5b5061071c61203b565b604051610729919061349d565b60405180910390f35b61074c60048036038101906107479190613cbc565b6120c9565b005b34801561075a57600080fd5b50610775600480360381019061077091906136f1565b61213c565b005b34801561078357600080fd5b5061078c61214e565b604051610799919061349d565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906134f5565b6121dc565b6040516107d6919061349d565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061354c565b6123b1565b005b34801561081457600080fd5b5061081d612404565b60405161082a919061349d565b60405180910390f35b34801561083f57600080fd5b5061085a60048036038101906108559190613d3f565b612496565b6040516108679190613307565b60405180910390f35b34801561087c57600080fd5b5061088561252a565b6040516108929190613df6565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613a7f565b612541565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a7f565b6125c5565b005b3480156108f957600080fd5b506109026125ed565b60405161091193929190613aec565b60405180910390f35b600061092582612635565b806109355750610934826126c7565b5b9050919050565b610944612741565b61094e82826127bf565b5050565b60606002805461096190613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90613e40565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109ef82612955565b610a25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6e82611926565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8f6129b4565b73ffffffffffffffffffffffffffffffffffffffff1614610af257610abb81610ab66129b4565b612496565b610af1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600047905090565b6000610bb96129bc565b6001546000540303905090565b6000600f6040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff16610c5b336129c5565b10610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613ebe565b60405180910390fd5b806040015161ffff16610cac610baf565b10610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390613f2a565b60405180910390fd5b806000015167ffffffffffffffff163414610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613f96565b60405180910390fd5b610dad33604051602001610d509190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a1c565b80610e255750610e2433604051602001610dc79190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a34565b5b610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90614065565b60405180910390fd5b600280811115610e7757610e76613d7f565b5b600e60009054906101000a900460ff166002811115610e9957610e98613d7f565b5b14610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed0906140d1565b60405180910390fd5b610ee4336001612a4c565b505050565b6000610ef482612c09565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f6784612cd7565b91509150610f7d8187610f786129b4565b612cfe565b610fc957610f9286610f8d6129b4565b612496565b610fc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611030576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61103d8686866001612d42565b801561104857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611116856110f2888887612d48565b7c020000000000000000000000000000000000000000000000000000000017612d70565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561119e57600060018501905060006004600083815260200190815260200160002054141561119c57600054811461119b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112068686866001612d9b565b505050505050565b611216612741565b80600b8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156113b65760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006113c0612da1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866113ec9190614120565b6113f691906141a9565b90508160000151819350935050509250929050565b611413612741565b81819050848490501461145b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114529061424c565b60405180910390fd5b6000805b858590508110156114b45785858281811061147d5761147c61426c565b5b9050602002016020810190611492919061429b565b61ffff16826114a191906142c8565b9150806114ad9061431e565b905061145f565b5060006114bf610baf565b90506010600001600a9054906101000a900461ffff1661ffff1682826114e591906142c8565b1115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906143b3565b60405180910390fd5b60005b848490508110156115a15761159085858381811061154a5761154961426c565b5b905060200201602081019061155f9190613a7f565b8888848181106115725761157161426c565b5b9050602002016020810190611587919061429b565b61ffff16612a4c565b8061159a9061431e565b9050611529565b50505050505050565b6115c5838383604051806020016040528060008152506120c9565b505050565b600060106040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff1661165f336129c5565b1061169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613ebe565b60405180910390fd5b806040015161ffff166116b0610baf565b106116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613f2a565b60405180910390fd5b806000015167ffffffffffffffff163414611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790613f96565b60405180910390fd5b6000600281111561175457611753613d7f565b5b600e60009054906101000a900460ff16600281111561177657611775613d7f565b5b14156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061441f565b60405180910390fd5b611828336040516020016117cb9190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612a34565b611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e9061448b565b60405180910390fd5b611872336001612a4c565b505050565b61187f612741565b80601490805190602001906118959291906131b0565b5050565b6118a1612741565b60038160028111156118b6576118b5613d7f565b5b60ff16106118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906144f7565b60405180910390fd5b80600e60006101000a81548160ff0219169083600281111561191e5761191d613d7f565b5b021790555050565b600061193182612c09565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6119f9612741565b611a036000612dab565b565b600f8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b600060116040518060600160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900461ffff1661ffff1661ffff16815260200160008201600a9054906101000a900461ffff1661ffff1661ffff16815250509050806020015161ffff168461ffff16611ae7336129c5565b611af191906142c8565b1115611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990614563565b60405180910390fd5b806040015161ffff168461ffff16611b48610baf565b611b5291906142c8565b1115611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613f2a565b60405180910390fd5b80600001518461ffff16611ba79190614583565b67ffffffffffffffff163414611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614611565b60405180910390fd5b611c6333604051602001611c069190613ffe565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e71565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c99906146a3565b60405180910390fd5b60006002811115611cb657611cb5613d7f565b5b600e60009054906101000a900460ff166002811115611cd857611cd7613d7f565b5b1415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109061470f565b60405180910390fd5b611d27338561ffff16612a4c565b50505050565b60108060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b611d7d612741565b6000601260006101000a81548160ff0219169083151502179055508060159080519060200190611dae9291906131b0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611de4612741565b8060139080519060200190611dfa9291906131b0565b5050565b60158054611e0b90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3790613e40565b8015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b505050505081565b606060038054611e9b90613e40565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790613e40565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b8060076000611f2b6129b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fd86129b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161201d9190613307565b60405180910390a35050565b612031612741565b80600d8190555050565b6014805461204890613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461207490613e40565b80156120c15780601f10612096576101008083540402835291602001916120c1565b820191906000526020600020905b8154815290600101906020018083116120a457829003601f168201915b505050505081565b6120d4848484610ee9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612136576120ff84848484612e89565b612135576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612144612741565b80600c8190555050565b6016805461215b90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461218790613e40565b80156121d45780601f106121a9576101008083540402835291602001916121d4565b820191906000526020600020905b8154815290600101906020018083116121b757829003601f168201915b505050505081565b60606121e782612955565b612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d906147a1565b60405180910390fd5b601260009054906101000a900460ff16156122cd576014805461224890613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461227490613e40565b80156122c15780601f10612296576101008083540402835291602001916122c1565b820191906000526020600020905b8154815290600101906020018083116122a457829003601f168201915b505050505090506123ac565b6000601580546122dc90613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461230890613e40565b80156123555780601f1061232a57610100808354040283529160200191612355565b820191906000526020600020905b81548152906001019060200180831161233857829003601f168201915b50505050509050600081511161237a57604051806020016040528060008152506123a8565b8061238484612fe9565b601660405160200161239893929190614891565b6040516020818303038152906040525b9150505b919050565b6123b9612741565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156123ff573d6000803e3d6000fd5b505050565b60606013805461241390613e40565b80601f016020809104026020016040519081016040528092919081815260200182805461243f90613e40565b801561248c5780601f106124615761010080835404028352916020019161248c565b820191906000526020600020905b81548152906001019060200180831161246f57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600e60009054906101000a900460ff16905090565b612549612741565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614934565b60405180910390fd5b6125c281612dab565b50565b6125cd612741565b6000479050600081116125df57600080fd5b6125e98282613042565b5050565b60118060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900461ffff169080600001600a9054906101000a900461ffff16905083565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061269057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273a57506127398261308d565b5b9050919050565b6127496130f7565b73ffffffffffffffffffffffffffffffffffffffff16612767611db2565b73ffffffffffffffffffffffffffffffffffffffff16146127bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b4906149a0565b60405180910390fd5b565b6127c7612da1565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c90614a32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90614a9e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816129606129bc565b1115801561296f575060005482105b80156129ad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600d54612a2b83856130ff565b14905092915050565b6000600c54612a4383856130ff565b14905092915050565b6000805490506000821415612a8d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9a6000848385612d42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b1183612b026000866000612d48565b612b0b85613155565b17612d70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bb257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b77565b506000821415612bee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c046000848385612d9b565b505050565b60008082905080612c186129bc565b11612ca057600054811015612c9f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c9d575b6000811415612c93576004600083600190039350838152602001908152602001600020549050612c68565b8092505050612cd2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d5f868684613165565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600b54612e8083856130ff565b14905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eaf6129b4565b8786866040518563ffffffff1660e01b8152600401612ed19493929190614b13565b602060405180830381600087803b158015612eeb57600080fd5b505af1925050508015612f1c57506040513d601f19601f82011682018060405250810190612f199190614b74565b60015b612f96573d8060008114612f4c576040519150601f19603f3d011682016040523d82523d6000602084013e612f51565b606091505b50600081511415612f8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561302d57600184039350600a81066030018453600a81049050806130285761302d565b613002565b50828103602084039350808452505050919050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613088573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008082905060005b845181101561314a57613135828683815181106131285761312761426c565b5b602002602001015161316e565b915080806131429061431e565b915050613108565b508091505092915050565b60006001821460e11b9050919050565b60009392505050565b6000818310613186576131818284613199565b613191565b6131908383613199565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131bc90613e40565b90600052602060002090601f0160209004810192826131de5760008555613225565b82601f106131f757805160ff1916838001178555613225565b82800160010185558215613225579182015b82811115613224578251825591602001919060010190613209565b5b5090506132329190613236565b5090565b5b8082111561324f576000816000905550600101613237565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61329c81613267565b81146132a757600080fd5b50565b6000813590506132b981613293565b92915050565b6000602082840312156132d5576132d461325d565b5b60006132e3848285016132aa565b91505092915050565b60008115159050919050565b613301816132ec565b82525050565b600060208201905061331c60008301846132f8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334d82613322565b9050919050565b61335d81613342565b811461336857600080fd5b50565b60008135905061337a81613354565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6133a181613380565b81146133ac57600080fd5b50565b6000813590506133be81613398565b92915050565b600080604083850312156133db576133da61325d565b5b60006133e98582860161336b565b92505060206133fa858286016133af565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561343e578082015181840152602081019050613423565b8381111561344d576000848401525b50505050565b6000601f19601f8301169050919050565b600061346f82613404565b613479818561340f565b9350613489818560208601613420565b61349281613453565b840191505092915050565b600060208201905081810360008301526134b78184613464565b905092915050565b6000819050919050565b6134d2816134bf565b81146134dd57600080fd5b50565b6000813590506134ef816134c9565b92915050565b60006020828403121561350b5761350a61325d565b5b6000613519848285016134e0565b91505092915050565b61352b81613342565b82525050565b60006020820190506135466000830184613522565b92915050565b600080604083850312156135635761356261325d565b5b60006135718582860161336b565b9250506020613582858286016134e0565b9150509250929050565b613595816134bf565b82525050565b60006020820190506135b0600083018461358c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126135db576135da6135b6565b5b8235905067ffffffffffffffff8111156135f8576135f76135bb565b5b602083019150836020820283011115613614576136136135c0565b5b9250929050565b600080602083850312156136325761363161325d565b5b600083013567ffffffffffffffff8111156136505761364f613262565b5b61365c858286016135c5565b92509250509250929050565b6000806000606084860312156136815761368061325d565b5b600061368f8682870161336b565b93505060206136a08682870161336b565b92505060406136b1868287016134e0565b9150509250925092565b6000819050919050565b6136ce816136bb565b81146136d957600080fd5b50565b6000813590506136eb816136c5565b92915050565b6000602082840312156137075761370661325d565b5b6000613715848285016136dc565b91505092915050565b600080604083850312156137355761373461325d565b5b6000613743858286016134e0565b9250506020613754858286016134e0565b9150509250929050565b60006040820190506137736000830185613522565b613780602083018461358c565b9392505050565b60008083601f84011261379d5761379c6135b6565b5b8235905067ffffffffffffffff8111156137ba576137b96135bb565b5b6020830191508360208202830111156137d6576137d56135c0565b5b9250929050565b60008083601f8401126137f3576137f26135b6565b5b8235905067ffffffffffffffff8111156138105761380f6135bb565b5b60208301915083602082028301111561382c5761382b6135c0565b5b9250929050565b6000806000806040858703121561384d5761384c61325d565b5b600085013567ffffffffffffffff81111561386b5761386a613262565b5b61387787828801613787565b9450945050602085013567ffffffffffffffff81111561389a57613899613262565b5b6138a6878288016137dd565b925092505092959194509250565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f182613453565b810181811067ffffffffffffffff821117156139105761390f6138b9565b5b80604052505050565b6000613923613253565b905061392f82826138e8565b919050565b600067ffffffffffffffff82111561394f5761394e6138b9565b5b61395882613453565b9050602081019050919050565b82818337600083830152505050565b600061398761398284613934565b613919565b9050828152602081018484840111156139a3576139a26138b4565b5b6139ae848285613965565b509392505050565b600082601f8301126139cb576139ca6135b6565b5b81356139db848260208601613974565b91505092915050565b6000602082840312156139fa576139f961325d565b5b600082013567ffffffffffffffff811115613a1857613a17613262565b5b613a24848285016139b6565b91505092915050565b60038110613a3a57600080fd5b50565b600081359050613a4c81613a2d565b92915050565b600060208284031215613a6857613a6761325d565b5b6000613a7684828501613a3d565b91505092915050565b600060208284031215613a9557613a9461325d565b5b6000613aa38482850161336b565b91505092915050565b600067ffffffffffffffff82169050919050565b613ac981613aac565b82525050565b600061ffff82169050919050565b613ae681613acf565b82525050565b6000606082019050613b016000830186613ac0565b613b0e6020830185613add565b613b1b6040830184613add565b949350505050565b613b2c81613acf565b8114613b3757600080fd5b50565b600081359050613b4981613b23565b92915050565b600080600060408486031215613b6857613b6761325d565b5b6000613b7686828701613b3a565b935050602084013567ffffffffffffffff811115613b9757613b96613262565b5b613ba3868287016135c5565b92509250509250925092565b613bb8816132ec565b8114613bc357600080fd5b50565b600081359050613bd581613baf565b92915050565b60008060408385031215613bf257613bf161325d565b5b6000613c008582860161336b565b9250506020613c1185828601613bc6565b9150509250929050565b600067ffffffffffffffff821115613c3657613c356138b9565b5b613c3f82613453565b9050602081019050919050565b6000613c5f613c5a84613c1b565b613919565b905082815260208101848484011115613c7b57613c7a6138b4565b5b613c86848285613965565b509392505050565b600082601f830112613ca357613ca26135b6565b5b8135613cb3848260208601613c4c565b91505092915050565b60008060008060808587031215613cd657613cd561325d565b5b6000613ce48782880161336b565b9450506020613cf58782880161336b565b9350506040613d06878288016134e0565b925050606085013567ffffffffffffffff811115613d2757613d26613262565b5b613d3387828801613c8e565b91505092959194509250565b60008060408385031215613d5657613d5561325d565b5b6000613d648582860161336b565b9250506020613d758582860161336b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613dbf57613dbe613d7f565b5b50565b6000819050613dd082613dae565b919050565b6000613de082613dc2565b9050919050565b613df081613dd5565b82525050565b6000602082019050613e0b6000830184613de7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e5857607f821691505b60208210811415613e6c57613e6b613e11565b5b50919050565b7f4d61782031206d696e74207065722077616c6c65740000000000000000000000600082015250565b6000613ea860158361340f565b9150613eb382613e72565b602082019050919050565b60006020820190508181036000830152613ed781613e9b565b9050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b6000613f14600e8361340f565b9150613f1f82613ede565b602082019050919050565b60006020820190508181036000830152613f4381613f07565b9050919050565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b6000613f80600d8361340f565b9150613f8b82613f4a565b602082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b60008160601b9050919050565b6000613fce82613fb6565b9050919050565b6000613fe082613fc3565b9050919050565b613ff8613ff382613342565b613fd5565b82525050565b600061400a8284613fe7565b60148201915081905092915050565b7f596f7520617265206e6f74206f6e20746865207072656d696e74206c69737400600082015250565b600061404f601f8361340f565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e6f7420696e20776169746c6973742070686173650000000000000000000000600082015250565b60006140bb60158361340f565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412b826134bf565b9150614136836134bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416f5761416e6140f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b4826134bf565b91506141bf836134bf565b9250826141cf576141ce61417a565b5b828204905092915050565b7f6d7573742070726f7669646520657175616c207175616e74697469657320616e60008201527f6420726563697069656e74730000000000000000000000000000000000000000602082015250565b6000614236602c8361340f565b9150614241826141da565b604082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156142b1576142b061325d565b5b60006142bf84828501613b3a565b91505092915050565b60006142d3826134bf565b91506142de836134bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614313576143126140f1565b5b828201905092915050565b6000614329826134bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561435c5761435b6140f1565b5b600182019050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b600061439d60128361340f565b91506143a882614367565b602082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f4e6f7420696e2073616c65000000000000000000000000000000000000000000600082015250565b6000614409600b8361340f565b9150614414826143d3565b602082019050919050565b60006020820190508181036000830152614438816143fc565b9050919050565b7f596f7520617265206e6f74206f6e20746865207768697465206c697374000000600082015250565b6000614475601d8361340f565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f696e76616c69642073616c652073746174650000000000000000000000000000600082015250565b60006144e160128361340f565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4d61782032206d696e7473207065722077616c6c657400000000000000000000600082015250565b600061454d60168361340f565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b600061458e82613aac565b915061459983613aac565b92508167ffffffffffffffff04831182151516156145ba576145b96140f1565b5b828202905092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006145fb60198361340f565b9150614606826145c5565b602082019050919050565b6000602082019050818103600083015261462a816145ee565b9050919050565b7f596f7520617265206e6f74206f6e2074686520646f75626c652077686974652060008201527f6c69737400000000000000000000000000000000000000000000000000000000602082015250565b600061468d60248361340f565b915061469882614631565b604082019050919050565b600060208201905081810360008301526146bc81614680565b9050919050565b7f73616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b60006146f960128361340f565b9150614704826146c3565b602082019050919050565b60006020820190508181036000830152614728816146ec565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061478b602f8361340f565b91506147968261472f565b604082019050919050565b600060208201905081810360008301526147ba8161477e565b9050919050565b600081905092915050565b60006147d782613404565b6147e181856147c1565b93506147f1818560208601613420565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461481f81613e40565b61482981866147c1565b94506001821660008114614844576001811461485557614888565b60ff19831686528186019350614888565b61485e856147fd565b60005b8381101561488057815481890152600182019150602081019050614861565b838801955050505b50505092915050565b600061489d82866147cc565b91506148a982856147cc565b91506148b58284614812565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061491e60268361340f565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061498a60208361340f565b915061499582614954565b602082019050919050565b600060208201905081810360008301526149b98161497d565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614a1c602a8361340f565b9150614a27826149c0565b604082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614a8860198361340f565b9150614a9382614a52565b602082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ae582614abe565b614aef8185614ac9565b9350614aff818560208601613420565b614b0881613453565b840191505092915050565b6000608082019050614b286000830187613522565b614b356020830186613522565b614b42604083018561358c565b8181036060830152614b548184614ada565b905095945050505050565b600081519050614b6e81613293565b92915050565b600060208284031215614b8a57614b8961325d565b5b6000614b9884828501614b5f565b9150509291505056fea264697066735822122057c4362c82a62a4f8dd7ca1de67e84527b2cd3ae458b846e6b8d275730e8faa864736f6c63430008090033
Deployed Bytecode Sourcemap
82298:7062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88463:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88179:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33671:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40162:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39595:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88720:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29422:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84273:887;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43801:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13530:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79728:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;86106:714;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46722:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83508:757;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87117:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86828:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35064:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30606:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;82642:66;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;85168:930;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82717:67;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;87243:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86996:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83130:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40720:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13667:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83013:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47513:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13405:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83170:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87389:780;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88916:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88356:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88824:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89176:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82793:72;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;88463:249;88574:4;88611:38;88637:11;88611:25;:38::i;:::-;:93;;;;88666:38;88692:11;88666:25;:38::i;:::-;88611:93;88591:113;;88463:249;;;:::o;88179:169::-;2014:13;:11;:13::i;:::-;88298:42:::1;88317:8;88327:12;88298:18;:42::i;:::-;88179:169:::0;;:::o;33671:100::-;33725:13;33758:5;33751:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33671:100;:::o;40162:218::-;40238:7;40263:16;40271:7;40263;:16::i;:::-;40258:64;;40288:34;;;;;;;;;;;;;;40258:64;40342:15;:24;40358:7;40342:24;;;;;;;;;;;:30;;;;;;;;;;;;40335:37;;40162:218;;;:::o;39595:408::-;39684:13;39700:16;39708:7;39700;:16::i;:::-;39684:32;;39756:5;39733:28;;:19;:17;:19::i;:::-;:28;;;39729:175;;39781:44;39798:5;39805:19;:17;:19::i;:::-;39781:16;:44::i;:::-;39776:128;;39853:35;;;;;;;;;;;;;;39776:128;39729:175;39949:2;39916:15;:24;39932:7;39916:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39987:7;39983:2;39967:28;;39976:5;39967:28;;;;;;;;;;;;39673:330;39595:408;;:::o;88720:96::-;88763:4;88787:21;88780:28;;88720:96;:::o;29422:323::-;29483:7;29711:15;:13;:15::i;:::-;29696:12;;29680:13;;:28;:46;29673:53;;29422:323;:::o;84273:887::-;84349:32;84384:13;84349:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84458:14;:22;;;84430:50;;:25;84444:10;84430:13;:25::i;:::-;:50;84408:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;84564:14;:24;;;84548:40;;:13;:11;:13::i;:::-;:40;84540:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;84639:14;:20;;;84626:33;;:9;:33;84618:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;84712:118;84779:10;84762:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;84752:39;;;;;;84810:5;;84712:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:21;:118::i;:::-;:270;;;;84851:131;84923:10;84906:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;84896:39;;;;;;84958:5;;84851:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;:131::i;:::-;84712:270;84690:351;;;;;;;;;;;;:::i;:::-;;;;;;;;;85074:21;85060:35;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:35;;;;;;;;:::i;:::-;;;85052:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;85132:20;85138:10;85150:1;85132:5;:20::i;:::-;84338:822;84273:887;;:::o;43801:2825::-;43943:27;43973;43992:7;43973:18;:27::i;:::-;43943:57;;44058:4;44017:45;;44033:19;44017:45;;;44013:86;;44071:28;;;;;;;;;;;;;;44013:86;44113:27;44142:23;44169:35;44196:7;44169:26;:35::i;:::-;44112:92;;;;44304:68;44329:15;44346:4;44352:19;:17;:19::i;:::-;44304:24;:68::i;:::-;44299:180;;44392:43;44409:4;44415:19;:17;:19::i;:::-;44392:16;:43::i;:::-;44387:92;;44444:35;;;;;;;;;;;;;;44387:92;44299:180;44510:1;44496:16;;:2;:16;;;44492:52;;;44521:23;;;;;;;;;;;;;;44492:52;44557:43;44579:4;44585:2;44589:7;44598:1;44557:21;:43::i;:::-;44693:15;44690:160;;;44833:1;44812:19;44805:30;44690:160;45230:18;:24;45249:4;45230:24;;;;;;;;;;;;;;;;45228:26;;;;;;;;;;;;45299:18;:22;45318:2;45299:22;;;;;;;;;;;;;;;;45297:24;;;;;;;;;;;45621:146;45658:2;45707:45;45722:4;45728:2;45732:19;45707:14;:45::i;:::-;25821:8;45679:73;45621:18;:146::i;:::-;45592:17;:26;45610:7;45592:26;;;;;;;;;;;:175;;;;45938:1;25821:8;45887:19;:47;:52;45883:627;;;45960:19;45992:1;45982:7;:11;45960:33;;46149:1;46115:17;:30;46133:11;46115:30;;;;;;;;;;;;:35;46111:384;;;46253:13;;46238:11;:28;46234:242;;46433:19;46400:17;:30;46418:11;46400:30;;;;;;;;;;;:52;;;;46234:242;46111:384;45941:569;45883:627;46557:7;46553:2;46538:27;;46547:4;46538:27;;;;;;;;;;;;46576:42;46597:4;46603:2;46607:7;46616:1;46576:20;:42::i;:::-;43932:2694;;;43801:2825;;;:::o;13530:131::-;2014:13;:11;:13::i;:::-;13644:11:::1;13616:25;:39;;;;13530:131:::0;:::o;79728:442::-;79825:7;79834;79854:26;79883:17;:27;79901:8;79883:27;;;;;;;;;;;79854:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79955:1;79927:30;;:7;:16;;;:30;;;79923:92;;;79984:19;79974:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79923:92;80027:21;80092:17;:15;:17::i;:::-;80051:58;;80065:7;:23;;;80052:36;;:10;:36;;;;:::i;:::-;80051:58;;;;:::i;:::-;80027:82;;80130:7;:16;;;80148:13;80122:40;;;;;;79728:442;;;;;:::o;86106:714::-;2014:13;:11;:13::i;:::-;86285:9:::1;;:16;;86266:8;;:15;;:35;86244:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;86386:21;86427:9:::0;86422:101:::1;86446:8;;:15;;86442:1;:19;86422:101;;;86500:8;;86509:1;86500:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;86483:28;;;;;;;:::i;:::-;;;86463:3;;;;:::i;:::-;;;86422:101;;;;86533:15;86551:13;:11;:13::i;:::-;86533:31;;86624:14;:24;;;;;;;;;;;;86597:51;;86607:13;86597:7;:23;;;;:::i;:::-;:51;;86575:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;86712:9;86707:106;86731:9;;:16;;86727:1;:20;86707:106;;;86769:32;86775:9;;86785:1;86775:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;86789:8;;86798:1;86789:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;86769:32;;:5;:32::i;:::-;86749:3;;;;:::i;:::-;;;86707:106;;;;86233:587;;86106:714:::0;;;;:::o;46722:193::-;46868:39;46885:4;46891:2;46895:7;46868:39;;;;;;;;;;;;:16;:39::i;:::-;46722:193;;;:::o;83508:757::-;83585:33;83621:14;83585:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83696:15;:23;;;83668:51;;:25;83682:10;83668:13;:25::i;:::-;:51;83646:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;83803:15;:25;;;83787:41;;:13;:11;:13::i;:::-;:41;83779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83879:15;:21;;;83866:34;;:9;:34;83858:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;83953:17;83939:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;;83931:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;84026:131;84098:10;84081:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;84071:39;;;;;;84133:5;;84026:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:22;:131::i;:::-;84000:222;;;;;;;;;;;;:::i;:::-;;;;;;;;;84237:20;84243:10;84255:1;84237:5;:20::i;:::-;83574:691;83508:757;;:::o;87117:118::-;2014:13;:11;:13::i;:::-;87214:15:::1;87199:12;:30;;;;;;;;;;;;:::i;:::-;;87117:118:::0;:::o;86828:162::-;2014:13;:11;:13::i;:::-;86924:1:::1;86910:10;86904:17;;;;;;;;:::i;:::-;;:21;;;86896:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;86972:10;86959;;:23;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;86828:162:::0;:::o;35064:152::-;35136:7;35179:27;35198:7;35179:18;:27::i;:::-;35156:52;;35064:152;;;:::o;30606:233::-;30678:7;30719:1;30702:19;;:5;:19;;;30698:60;;;30730:28;;;;;;;;;;;;;;30698:60;24765:13;30776:18;:25;30795:5;30776:25;;;;;;;;;;;;;;;;:55;30769:62;;30606:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;82642:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;85168:930::-;85293:33;85329:19;85293:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85421:15;:23;;;85381:63;;85409:8;85381:36;;:25;85395:10;85381:13;:25::i;:::-;:36;;;;:::i;:::-;:63;;85359:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;85555:15;:25;;;85527:53;;85543:8;85527:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:53;;85505:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;85679:15;:21;;;85668:8;:32;;;;;;:::i;:::-;85655:45;;:9;:45;85633:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;85788:125;85862:10;85845:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;85835:39;;;;;;85893:5;;85788:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:28;:125::i;:::-;85766:211;;;;;;;;;;;;:::i;:::-;;;;;;;;;86010:17;85996:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;;85988:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;86063:27;86069:10;86081:8;86063:27;;:5;:27::i;:::-;85282:816;85168:930;;;:::o;82717:67::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87243:134::-;2014:13;:11;:13::i;:::-;87331:5:::1;87316:12;;:20;;;;;;;;;;;;;;;;;;87362:7;87347:14;:22;;;;;;;;;;;;:::i;:::-;;87243:134:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;86996:115::-;2014:13;:11;:13::i;:::-;87091:14:::1;87076:12;:29;;;;;;;;;;;;:::i;:::-;;86996:115:::0;:::o;83130:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33847:104::-;33903:13;33936:7;33929:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33847:104;:::o;40720:234::-;40867:8;40815:18;:39;40834:19;:17;:19::i;:::-;40815:39;;;;;;;;;;;;;;;:49;40855:8;40815:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40927:8;40891:55;;40906:19;:17;:19::i;:::-;40891:55;;;40937:8;40891:55;;;;;;:::i;:::-;;;;;;;;40720:234;;:::o;13667:117::-;2014:13;:11;:13::i;:::-;13767:11:::1;13746:18;:32;;;;13667:117:::0;:::o;83013:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47513:407::-;47688:31;47701:4;47707:2;47711:7;47688:12;:31::i;:::-;47752:1;47734:2;:14;;;:19;47730:183;;47773:56;47804:4;47810:2;47814:7;47823:5;47773:30;:56::i;:::-;47768:145;;47857:40;;;;;;;;;;;;;;47768:145;47730:183;47513:407;;;;:::o;13405:119::-;2014:13;:11;:13::i;:::-;13507:11:::1;13485:19;:33;;;;13405:119:::0;:::o;83170:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87389:780::-;87507:13;87560:16;87568:7;87560;:16::i;:::-;87538:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;87666:12;;;;;;;;;;;87662:500;;;87702:12;87695:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87662:500;87747:28;87778:14;87747:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87862:1;87837:14;87831:28;:32;:319;;;;;;;;;;;;;;;;;87967:14;88012:18;88022:7;88012:9;:18::i;:::-;88061:13;87920:181;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;87831:319;87807:343;;;87389:780;;;;:::o;88916:127::-;2014:13;:11;:13::i;:::-;89008:8:::1;89000:26;;:35;89027:7;89000:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;88916:127:::0;;:::o;88356:99::-;88402:13;88435:12;88428:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88356:99;:::o;41111:164::-;41208:4;41232:18;:25;41251:5;41232:25;;;;;;;;;;;;;;;:35;41258:8;41232:35;;;;;;;;;;;;;;;;;;;;;;;;;41225:42;;41111:164;;;;:::o;88824:84::-;88865:6;88890:10;;;;;;;;;;;88883:17;;88824:84;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;89176:181::-;2014:13;:11;:13::i;:::-;89242:15:::1;89260:21;89242:39;;89310:1;89300:7;:11;89292:20;;;::::0;::::1;;89323:26;89334:5;89341:7;89323:10;:26::i;:::-;89231:126;89176:181:::0;:::o;82793:72::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32769:639::-;32854:4;33193:10;33178:25;;:11;:25;;;;:102;;;;33270:10;33255:25;;:11;:25;;;;33178:102;:179;;;;33347:10;33332:25;;:11;:25;;;;33178:179;33158:199;;32769:639;;;:::o;79458:215::-;79560:4;79599:26;79584:41;;;:11;:41;;;;:81;;;;79629:36;79653:11;79629:23;:36::i;:::-;79584:81;79577:88;;79458:215;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;80820:332::-;80939:17;:15;:17::i;:::-;80923:33;;:12;:33;;;;80915:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;81042:1;81022:22;;:8;:22;;;;81014:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;81109:35;;;;;;;;81121:8;81109:35;;;;;;81131:12;81109:35;;;;;81087:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80820:332;;:::o;41533:282::-;41598:4;41654:7;41635:15;:13;:15::i;:::-;:26;;:66;;;;;41688:13;;41678:7;:23;41635:66;:153;;;;;41787:1;25541:8;41739:17;:26;41757:7;41739:26;;;;;;;;;;;;:44;:49;41635:153;41615:173;;41533:282;;;:::o;63841:105::-;63901:7;63928:10;63921:17;;63841:105;:::o;83390:110::-;83464:7;83491:1;83484:8;;83390:110;:::o;30921:178::-;30982:7;24765:13;24903:2;31010:18;:25;31029:5;31010:25;;;;;;;;;;;;;;;;:50;;31009:82;31002:89;;30921:178;;;:::o;14181:179::-;14273:4;14336:18;;14293:39;14319:5;14326:4;14293:24;:39::i;:::-;:61;14286:68;;14181:179;;;;:::o;13794:181::-;13887:4;13950:19;;13907:39;13933:5;13940:4;13907:24;:39::i;:::-;:62;13900:69;;13794:181;;;;:::o;51182:2966::-;51255:20;51278:13;;51255:36;;51318:1;51306:8;:13;51302:44;;;51328:18;;;;;;;;;;;;;;51302:44;51359:61;51389:1;51393:2;51397:12;51411:8;51359:21;:61::i;:::-;51903:1;24903:2;51873:1;:26;;51872:32;51860:8;:45;51834:18;:22;51853:2;51834:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52182:139;52219:2;52273:33;52296:1;52300:2;52304:1;52273:14;:33::i;:::-;52240:30;52261:8;52240:20;:30::i;:::-;:66;52182:18;:139::i;:::-;52148:17;:31;52166:12;52148:31;;;;;;;;;;;:173;;;;52338:16;52369:11;52398:8;52383:12;:23;52369:37;;52919:16;52915:2;52911:25;52899:37;;53291:12;53251:8;53210:1;53148:25;53089:1;53028;53001:335;53662:1;53648:12;53644:20;53602:346;53703:3;53694:7;53691:16;53602:346;;53921:7;53911:8;53908:1;53881:25;53878:1;53875;53870:59;53756:1;53747:7;53743:15;53732:26;;53602:346;;;53606:77;53993:1;53981:8;:13;53977:45;;;54003:19;;;;;;;;;;;;;;53977:45;54055:3;54039:13;:19;;;;51608:2462;;54080:60;54109:1;54113:2;54117:12;54131:8;54080:20;:60::i;:::-;51244:2904;51182:2966;;:::o;36219:1275::-;36286:7;36306:12;36321:7;36306:22;;36389:4;36370:15;:13;:15::i;:::-;:23;36366:1061;;36423:13;;36416:4;:20;36412:1015;;;36461:14;36478:17;:23;36496:4;36478:23;;;;;;;;;;;;36461:40;;36595:1;25541:8;36567:6;:24;:29;36563:845;;;37232:113;37249:1;37239:6;:11;37232:113;;;37292:17;:25;37310:6;;;;;;;37292:25;;;;;;;;;;;;37283:34;;37232:113;;;37378:6;37371:13;;;;;;36563:845;36438:989;36412:1015;36366:1061;37455:31;;;;;;;;;;;;;;36219:1275;;;;:::o;42696:485::-;42798:27;42827:23;42868:38;42909:15;:24;42925:7;42909:24;;;;;;;;;;;42868:65;;43086:18;43063:41;;43143:19;43137:26;43118:45;;43048:126;42696:485;;;:::o;41924:659::-;42073:11;42238:16;42231:5;42227:28;42218:37;;42398:16;42387:9;42383:32;42370:45;;42548:15;42537:9;42534:30;42526:5;42515:9;42512:20;42509:56;42499:66;;41924:659;;;;;:::o;48582:159::-;;;;;:::o;63150:311::-;63285:7;63305:16;25945:3;63331:19;:41;;63305:68;;25945:3;63399:31;63410:4;63416:2;63420:9;63399:10;:31::i;:::-;63391:40;;:62;;63384:69;;;63150:311;;;;;:::o;38042:450::-;38122:14;38290:16;38283:5;38279:28;38270:37;;38467:5;38453:11;38428:23;38424:41;38421:52;38414:5;38411:63;38401:73;;38042:450;;;;:::o;49406:158::-;;;;;:::o;80452:97::-;80510:6;80536:5;80529:12;;80452:97;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;13982:193::-;14081:4;14144:25;;14101:39;14127:5;14134:4;14101:24;:39::i;:::-;:68;14094:75;;13982:193;;;;:::o;50004:716::-;50167:4;50213:2;50188:45;;;50234:19;:17;:19::i;:::-;50255:4;50261:7;50270:5;50188:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50184:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50488:1;50471:6;:13;:18;50467:235;;;50517:40;;;;;;;;;;;;;;50467:235;50660:6;50654:13;50645:6;50641:2;50637:15;50630:38;50184:529;50357:54;;;50347:64;;;:6;:64;;;;50340:71;;;50004:716;;;;;;:::o;64048:1745::-;64113:17;64547:4;64540;64534:11;64530:22;64639:1;64633:4;64626:15;64714:4;64711:1;64707:12;64700:19;;64796:1;64791:3;64784:14;64900:3;65139:5;65121:428;65147:1;65121:428;;;65187:1;65182:3;65178:11;65171:18;;65358:2;65352:4;65348:13;65344:2;65340:22;65335:3;65327:36;65452:2;65446:4;65442:13;65434:21;;65519:4;65509:25;;65527:5;;65509:25;65121:428;;;65125:21;65588:3;65583;65579:13;65703:4;65698:3;65694:14;65687:21;;65768:6;65763:3;65756:19;64152:1634;;;64048:1745;;;:::o;89051:117::-;89133:8;89125:26;;:35;89152:7;89125:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89051:117;;:::o;77010:157::-;77095:4;77134:25;77119:40;;;:11;:40;;;;77112:47;;77010:157;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;5682:296::-;5765:7;5785:20;5808:4;5785:27;;5828:9;5823:118;5847:5;:12;5843:1;:16;5823:118;;;5896:33;5906:12;5920:5;5926:1;5920:8;;;;;;;;:::i;:::-;;;;;;;;5896:9;:33::i;:::-;5881:48;;5861:3;;;;;:::i;:::-;;;;5823:118;;;;5958:12;5951:19;;;5682:296;;;;:::o;38594:324::-;38664:14;38897:1;38887:8;38884:15;38858:24;38854:46;38844:56;;38594:324;;;:::o;62851:147::-;62988:6;62851:147;;;;;:::o;12722:149::-;12785:7;12816:1;12812;:5;:51;;12843:20;12858:1;12861;12843:14;:20::i;:::-;12812:51;;;12820:20;12835:1;12838;12820:14;:20::i;:::-;12812:51;12805:58;;12722:149;;;;:::o;12879:268::-;12947:13;13054:1;13048:4;13041:15;13083:1;13077:4;13070:15;13124:4;13118;13108:21;13099:30;;12879:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:117::-;6261:1;6258;6251:12;6275:117;6384:1;6381;6374:12;6398:117;6507:1;6504;6497:12;6538:568;6611:8;6621:6;6671:3;6664:4;6656:6;6652:17;6648:27;6638:122;;6679:79;;:::i;:::-;6638:122;6792:6;6779:20;6769:30;;6822:18;6814:6;6811:30;6808:117;;;6844:79;;:::i;:::-;6808:117;6958:4;6950:6;6946:17;6934:29;;7012:3;7004:4;6996:6;6992:17;6982:8;6978:32;6975:41;6972:128;;;7019:79;;:::i;:::-;6972:128;6538:568;;;;;:::o;7112:559::-;7198:6;7206;7255:2;7243:9;7234:7;7230:23;7226:32;7223:119;;;7261:79;;:::i;:::-;7223:119;7409:1;7398:9;7394:17;7381:31;7439:18;7431:6;7428:30;7425:117;;;7461:79;;:::i;:::-;7425:117;7574:80;7646:7;7637:6;7626:9;7622:22;7574:80;:::i;:::-;7556:98;;;;7352:312;7112:559;;;;;:::o;7677:619::-;7754:6;7762;7770;7819:2;7807:9;7798:7;7794:23;7790:32;7787:119;;;7825:79;;:::i;:::-;7787:119;7945:1;7970:53;8015:7;8006:6;7995:9;7991:22;7970:53;:::i;:::-;7960:63;;7916:117;8072:2;8098:53;8143:7;8134:6;8123:9;8119:22;8098:53;:::i;:::-;8088:63;;8043:118;8200:2;8226:53;8271:7;8262:6;8251:9;8247:22;8226:53;:::i;:::-;8216:63;;8171:118;7677:619;;;;;:::o;8302:77::-;8339:7;8368:5;8357:16;;8302:77;;;:::o;8385:122::-;8458:24;8476:5;8458:24;:::i;:::-;8451:5;8448:35;8438:63;;8497:1;8494;8487:12;8438:63;8385:122;:::o;8513:139::-;8559:5;8597:6;8584:20;8575:29;;8613:33;8640:5;8613:33;:::i;:::-;8513:139;;;;:::o;8658:329::-;8717:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:119;;;8772:79;;:::i;:::-;8734:119;8892:1;8917:53;8962:7;8953:6;8942:9;8938:22;8917:53;:::i;:::-;8907:63;;8863:117;8658:329;;;;:::o;8993:474::-;9061:6;9069;9118:2;9106:9;9097:7;9093:23;9089:32;9086:119;;;9124:79;;:::i;:::-;9086:119;9244:1;9269:53;9314:7;9305:6;9294:9;9290:22;9269:53;:::i;:::-;9259:63;;9215:117;9371:2;9397:53;9442:7;9433:6;9422:9;9418:22;9397:53;:::i;:::-;9387:63;;9342:118;8993:474;;;;;:::o;9473:332::-;9594:4;9632:2;9621:9;9617:18;9609:26;;9645:71;9713:1;9702:9;9698:17;9689:6;9645:71;:::i;:::-;9726:72;9794:2;9783:9;9779:18;9770:6;9726:72;:::i;:::-;9473:332;;;;;:::o;9827:567::-;9899:8;9909:6;9959:3;9952:4;9944:6;9940:17;9936:27;9926:122;;9967:79;;:::i;:::-;9926:122;10080:6;10067:20;10057:30;;10110:18;10102:6;10099:30;10096:117;;;10132:79;;:::i;:::-;10096:117;10246:4;10238:6;10234:17;10222:29;;10300:3;10292:4;10284:6;10280:17;10270:8;10266:32;10263:41;10260:128;;;10307:79;;:::i;:::-;10260:128;9827:567;;;;;:::o;10417:568::-;10490:8;10500:6;10550:3;10543:4;10535:6;10531:17;10527:27;10517:122;;10558:79;;:::i;:::-;10517:122;10671:6;10658:20;10648:30;;10701:18;10693:6;10690:30;10687:117;;;10723:79;;:::i;:::-;10687:117;10837:4;10829:6;10825:17;10813:29;;10891:3;10883:4;10875:6;10871:17;10861:8;10857:32;10854:41;10851:128;;;10898:79;;:::i;:::-;10851:128;10417:568;;;;;:::o;10991:932::-;11112:6;11120;11128;11136;11185:2;11173:9;11164:7;11160:23;11156:32;11153:119;;;11191:79;;:::i;:::-;11153:119;11339:1;11328:9;11324:17;11311:31;11369:18;11361:6;11358:30;11355:117;;;11391:79;;:::i;:::-;11355:117;11504:79;11575:7;11566:6;11555:9;11551:22;11504:79;:::i;:::-;11486:97;;;;11282:311;11660:2;11649:9;11645:18;11632:32;11691:18;11683:6;11680:30;11677:117;;;11713:79;;:::i;:::-;11677:117;11826:80;11898:7;11889:6;11878:9;11874:22;11826:80;:::i;:::-;11808:98;;;;11603:313;10991:932;;;;;;;:::o;11929:117::-;12038:1;12035;12028:12;12052:180;12100:77;12097:1;12090:88;12197:4;12194:1;12187:15;12221:4;12218:1;12211:15;12238:281;12321:27;12343:4;12321:27;:::i;:::-;12313:6;12309:40;12451:6;12439:10;12436:22;12415:18;12403:10;12400:34;12397:62;12394:88;;;12462:18;;:::i;:::-;12394:88;12502:10;12498:2;12491:22;12281:238;12238:281;;:::o;12525:129::-;12559:6;12586:20;;:::i;:::-;12576:30;;12615:33;12643:4;12635:6;12615:33;:::i;:::-;12525:129;;;:::o;12660:308::-;12722:4;12812:18;12804:6;12801:30;12798:56;;;12834:18;;:::i;:::-;12798:56;12872:29;12894:6;12872:29;:::i;:::-;12864:37;;12956:4;12950;12946:15;12938:23;;12660:308;;;:::o;12974:154::-;13058:6;13053:3;13048;13035:30;13120:1;13111:6;13106:3;13102:16;13095:27;12974:154;;;:::o;13134:412::-;13212:5;13237:66;13253:49;13295:6;13253:49;:::i;:::-;13237:66;:::i;:::-;13228:75;;13326:6;13319:5;13312:21;13364:4;13357:5;13353:16;13402:3;13393:6;13388:3;13384:16;13381:25;13378:112;;;13409:79;;:::i;:::-;13378:112;13499:41;13533:6;13528:3;13523;13499:41;:::i;:::-;13218:328;13134:412;;;;;:::o;13566:340::-;13622:5;13671:3;13664:4;13656:6;13652:17;13648:27;13638:122;;13679:79;;:::i;:::-;13638:122;13796:6;13783:20;13821:79;13896:3;13888:6;13881:4;13873:6;13869:17;13821:79;:::i;:::-;13812:88;;13628:278;13566:340;;;;:::o;13912:509::-;13981:6;14030:2;14018:9;14009:7;14005:23;14001:32;13998:119;;;14036:79;;:::i;:::-;13998:119;14184:1;14173:9;14169:17;14156:31;14214:18;14206:6;14203:30;14200:117;;;14236:79;;:::i;:::-;14200:117;14341:63;14396:7;14387:6;14376:9;14372:22;14341:63;:::i;:::-;14331:73;;14127:287;13912:509;;;;:::o;14427:110::-;14511:1;14504:5;14501:12;14491:40;;14527:1;14524;14517:12;14491:40;14427:110;:::o;14543:161::-;14600:5;14638:6;14625:20;14616:29;;14654:44;14692:5;14654:44;:::i;:::-;14543:161;;;;:::o;14710:351::-;14780:6;14829:2;14817:9;14808:7;14804:23;14800:32;14797:119;;;14835:79;;:::i;:::-;14797:119;14955:1;14980:64;15036:7;15027:6;15016:9;15012:22;14980:64;:::i;:::-;14970:74;;14926:128;14710:351;;;;:::o;15067:329::-;15126:6;15175:2;15163:9;15154:7;15150:23;15146:32;15143:119;;;15181:79;;:::i;:::-;15143:119;15301:1;15326:53;15371:7;15362:6;15351:9;15347:22;15326:53;:::i;:::-;15316:63;;15272:117;15067:329;;;;:::o;15402:101::-;15438:7;15478:18;15471:5;15467:30;15456:41;;15402:101;;;:::o;15509:115::-;15594:23;15611:5;15594:23;:::i;:::-;15589:3;15582:36;15509:115;;:::o;15630:89::-;15666:7;15706:6;15699:5;15695:18;15684:29;;15630:89;;;:::o;15725:115::-;15810:23;15827:5;15810:23;:::i;:::-;15805:3;15798:36;15725:115;;:::o;15846:430::-;15989:4;16027:2;16016:9;16012:18;16004:26;;16040:69;16106:1;16095:9;16091:17;16082:6;16040:69;:::i;:::-;16119:70;16185:2;16174:9;16170:18;16161:6;16119:70;:::i;:::-;16199;16265:2;16254:9;16250:18;16241:6;16199:70;:::i;:::-;15846:430;;;;;;:::o;16282:120::-;16354:23;16371:5;16354:23;:::i;:::-;16347:5;16344:34;16334:62;;16392:1;16389;16382:12;16334:62;16282:120;:::o;16408:137::-;16453:5;16491:6;16478:20;16469:29;;16507:32;16533:5;16507:32;:::i;:::-;16408:137;;;;:::o;16551:702::-;16645:6;16653;16661;16710:2;16698:9;16689:7;16685:23;16681:32;16678:119;;;16716:79;;:::i;:::-;16678:119;16836:1;16861:52;16905:7;16896:6;16885:9;16881:22;16861:52;:::i;:::-;16851:62;;16807:116;16990:2;16979:9;16975:18;16962:32;17021:18;17013:6;17010:30;17007:117;;;17043:79;;:::i;:::-;17007:117;17156:80;17228:7;17219:6;17208:9;17204:22;17156:80;:::i;:::-;17138:98;;;;16933:313;16551:702;;;;;:::o;17259:116::-;17329:21;17344:5;17329:21;:::i;:::-;17322:5;17319:32;17309:60;;17365:1;17362;17355:12;17309:60;17259:116;:::o;17381:133::-;17424:5;17462:6;17449:20;17440:29;;17478:30;17502:5;17478:30;:::i;:::-;17381:133;;;;:::o;17520:468::-;17585:6;17593;17642:2;17630:9;17621:7;17617:23;17613:32;17610:119;;;17648:79;;:::i;:::-;17610:119;17768:1;17793:53;17838:7;17829:6;17818:9;17814:22;17793:53;:::i;:::-;17783:63;;17739:117;17895:2;17921:50;17963:7;17954:6;17943:9;17939:22;17921:50;:::i;:::-;17911:60;;17866:115;17520:468;;;;;:::o;17994:307::-;18055:4;18145:18;18137:6;18134:30;18131:56;;;18167:18;;:::i;:::-;18131:56;18205:29;18227:6;18205:29;:::i;:::-;18197:37;;18289:4;18283;18279:15;18271:23;;17994:307;;;:::o;18307:410::-;18384:5;18409:65;18425:48;18466:6;18425:48;:::i;:::-;18409:65;:::i;:::-;18400:74;;18497:6;18490:5;18483:21;18535:4;18528:5;18524:16;18573:3;18564:6;18559:3;18555:16;18552:25;18549:112;;;18580:79;;:::i;:::-;18549:112;18670:41;18704:6;18699:3;18694;18670:41;:::i;:::-;18390:327;18307:410;;;;;:::o;18736:338::-;18791:5;18840:3;18833:4;18825:6;18821:17;18817:27;18807:122;;18848:79;;:::i;:::-;18807:122;18965:6;18952:20;18990:78;19064:3;19056:6;19049:4;19041:6;19037:17;18990:78;:::i;:::-;18981:87;;18797:277;18736:338;;;;:::o;19080:943::-;19175:6;19183;19191;19199;19248:3;19236:9;19227:7;19223:23;19219:33;19216:120;;;19255:79;;:::i;:::-;19216:120;19375:1;19400:53;19445:7;19436:6;19425:9;19421:22;19400:53;:::i;:::-;19390:63;;19346:117;19502:2;19528:53;19573:7;19564:6;19553:9;19549:22;19528:53;:::i;:::-;19518:63;;19473:118;19630:2;19656:53;19701:7;19692:6;19681:9;19677:22;19656:53;:::i;:::-;19646:63;;19601:118;19786:2;19775:9;19771:18;19758:32;19817:18;19809:6;19806:30;19803:117;;;19839:79;;:::i;:::-;19803:117;19944:62;19998:7;19989:6;19978:9;19974:22;19944:62;:::i;:::-;19934:72;;19729:287;19080:943;;;;;;;:::o;20029:474::-;20097:6;20105;20154:2;20142:9;20133:7;20129:23;20125:32;20122:119;;;20160:79;;:::i;:::-;20122:119;20280:1;20305:53;20350:7;20341:6;20330:9;20326:22;20305:53;:::i;:::-;20295:63;;20251:117;20407:2;20433:53;20478:7;20469:6;20458:9;20454:22;20433:53;:::i;:::-;20423:63;;20378:118;20029:474;;;;;:::o;20509:180::-;20557:77;20554:1;20547:88;20654:4;20651:1;20644:15;20678:4;20675:1;20668:15;20695:116;20779:1;20772:5;20769:12;20759:46;;20785:18;;:::i;:::-;20759:46;20695:116;:::o;20817:133::-;20865:7;20894:5;20883:16;;20900:44;20938:5;20900:44;:::i;:::-;20817:133;;;:::o;20956:::-;21015:9;21048:35;21077:5;21048:35;:::i;:::-;21035:48;;20956:133;;;:::o;21095:149::-;21191:46;21231:5;21191:46;:::i;:::-;21186:3;21179:59;21095:149;;:::o;21250:240::-;21352:4;21390:2;21379:9;21375:18;21367:26;;21403:80;21480:1;21469:9;21465:17;21456:6;21403:80;:::i;:::-;21250:240;;;;:::o;21496:180::-;21544:77;21541:1;21534:88;21641:4;21638:1;21631:15;21665:4;21662:1;21655:15;21682:320;21726:6;21763:1;21757:4;21753:12;21743:22;;21810:1;21804:4;21800:12;21831:18;21821:81;;21887:4;21879:6;21875:17;21865:27;;21821:81;21949:2;21941:6;21938:14;21918:18;21915:38;21912:84;;;21968:18;;:::i;:::-;21912:84;21733:269;21682:320;;;:::o;22008:171::-;22148:23;22144:1;22136:6;22132:14;22125:47;22008:171;:::o;22185:366::-;22327:3;22348:67;22412:2;22407:3;22348:67;:::i;:::-;22341:74;;22424:93;22513:3;22424:93;:::i;:::-;22542:2;22537:3;22533:12;22526:19;;22185:366;;;:::o;22557:419::-;22723:4;22761:2;22750:9;22746:18;22738:26;;22810:9;22804:4;22800:20;22796:1;22785:9;22781:17;22774:47;22838:131;22964:4;22838:131;:::i;:::-;22830:139;;22557:419;;;:::o;22982:164::-;23122:16;23118:1;23110:6;23106:14;23099:40;22982:164;:::o;23152:366::-;23294:3;23315:67;23379:2;23374:3;23315:67;:::i;:::-;23308:74;;23391:93;23480:3;23391:93;:::i;:::-;23509:2;23504:3;23500:12;23493:19;;23152:366;;;:::o;23524:419::-;23690:4;23728:2;23717:9;23713:18;23705:26;;23777:9;23771:4;23767:20;23763:1;23752:9;23748:17;23741:47;23805:131;23931:4;23805:131;:::i;:::-;23797:139;;23524:419;;;:::o;23949:163::-;24089:15;24085:1;24077:6;24073:14;24066:39;23949:163;:::o;24118:366::-;24260:3;24281:67;24345:2;24340:3;24281:67;:::i;:::-;24274:74;;24357:93;24446:3;24357:93;:::i;:::-;24475:2;24470:3;24466:12;24459:19;;24118:366;;;:::o;24490:419::-;24656:4;24694:2;24683:9;24679:18;24671:26;;24743:9;24737:4;24733:20;24729:1;24718:9;24714:17;24707:47;24771:131;24897:4;24771:131;:::i;:::-;24763:139;;24490:419;;;:::o;24915:94::-;24948:8;24996:5;24992:2;24988:14;24967:35;;24915:94;;;:::o;25015:::-;25054:7;25083:20;25097:5;25083:20;:::i;:::-;25072:31;;25015:94;;;:::o;25115:100::-;25154:7;25183:26;25203:5;25183:26;:::i;:::-;25172:37;;25115:100;;;:::o;25221:157::-;25326:45;25346:24;25364:5;25346:24;:::i;:::-;25326:45;:::i;:::-;25321:3;25314:58;25221:157;;:::o;25384:256::-;25496:3;25511:75;25582:3;25573:6;25511:75;:::i;:::-;25611:2;25606:3;25602:12;25595:19;;25631:3;25624:10;;25384:256;;;;:::o;25646:181::-;25786:33;25782:1;25774:6;25770:14;25763:57;25646:181;:::o;25833:366::-;25975:3;25996:67;26060:2;26055:3;25996:67;:::i;:::-;25989:74;;26072:93;26161:3;26072:93;:::i;:::-;26190:2;26185:3;26181:12;26174:19;;25833:366;;;:::o;26205:419::-;26371:4;26409:2;26398:9;26394:18;26386:26;;26458:9;26452:4;26448:20;26444:1;26433:9;26429:17;26422:47;26486:131;26612:4;26486:131;:::i;:::-;26478:139;;26205:419;;;:::o;26630:171::-;26770:23;26766:1;26758:6;26754:14;26747:47;26630:171;:::o;26807:366::-;26949:3;26970:67;27034:2;27029:3;26970:67;:::i;:::-;26963:74;;27046:93;27135:3;27046:93;:::i;:::-;27164:2;27159:3;27155:12;27148:19;;26807:366;;;:::o;27179:419::-;27345:4;27383:2;27372:9;27368:18;27360:26;;27432:9;27426:4;27422:20;27418:1;27407:9;27403:17;27396:47;27460:131;27586:4;27460:131;:::i;:::-;27452:139;;27179:419;;;:::o;27604:180::-;27652:77;27649:1;27642:88;27749:4;27746:1;27739:15;27773:4;27770:1;27763:15;27790:348;27830:7;27853:20;27871:1;27853:20;:::i;:::-;27848:25;;27887:20;27905:1;27887:20;:::i;:::-;27882:25;;28075:1;28007:66;28003:74;28000:1;27997:81;27992:1;27985:9;27978:17;27974:105;27971:131;;;28082:18;;:::i;:::-;27971:131;28130:1;28127;28123:9;28112:20;;27790:348;;;;:::o;28144:180::-;28192:77;28189:1;28182:88;28289:4;28286:1;28279:15;28313:4;28310:1;28303:15;28330:185;28370:1;28387:20;28405:1;28387:20;:::i;:::-;28382:25;;28421:20;28439:1;28421:20;:::i;:::-;28416:25;;28460:1;28450:35;;28465:18;;:::i;:::-;28450:35;28507:1;28504;28500:9;28495:14;;28330:185;;;;:::o;28521:231::-;28661:34;28657:1;28649:6;28645:14;28638:58;28730:14;28725:2;28717:6;28713:15;28706:39;28521:231;:::o;28758:366::-;28900:3;28921:67;28985:2;28980:3;28921:67;:::i;:::-;28914:74;;28997:93;29086:3;28997:93;:::i;:::-;29115:2;29110:3;29106:12;29099:19;;28758:366;;;:::o;29130:419::-;29296:4;29334:2;29323:9;29319:18;29311:26;;29383:9;29377:4;29373:20;29369:1;29358:9;29354:17;29347:47;29411:131;29537:4;29411:131;:::i;:::-;29403:139;;29130:419;;;:::o;29555:180::-;29603:77;29600:1;29593:88;29700:4;29697:1;29690:15;29724:4;29721:1;29714:15;29741:327;29799:6;29848:2;29836:9;29827:7;29823:23;29819:32;29816:119;;;29854:79;;:::i;:::-;29816:119;29974:1;29999:52;30043:7;30034:6;30023:9;30019:22;29999:52;:::i;:::-;29989:62;;29945:116;29741:327;;;;:::o;30074:305::-;30114:3;30133:20;30151:1;30133:20;:::i;:::-;30128:25;;30167:20;30185:1;30167:20;:::i;:::-;30162:25;;30321:1;30253:66;30249:74;30246:1;30243:81;30240:107;;;30327:18;;:::i;:::-;30240:107;30371:1;30368;30364:9;30357:16;;30074:305;;;;:::o;30385:233::-;30424:3;30447:24;30465:5;30447:24;:::i;:::-;30438:33;;30493:66;30486:5;30483:77;30480:103;;;30563:18;;:::i;:::-;30480:103;30610:1;30603:5;30599:13;30592:20;;30385:233;;;:::o;30624:168::-;30764:20;30760:1;30752:6;30748:14;30741:44;30624:168;:::o;30798:366::-;30940:3;30961:67;31025:2;31020:3;30961:67;:::i;:::-;30954:74;;31037:93;31126:3;31037:93;:::i;:::-;31155:2;31150:3;31146:12;31139:19;;30798:366;;;:::o;31170:419::-;31336:4;31374:2;31363:9;31359:18;31351:26;;31423:9;31417:4;31413:20;31409:1;31398:9;31394:17;31387:47;31451:131;31577:4;31451:131;:::i;:::-;31443:139;;31170:419;;;:::o;31595:161::-;31735:13;31731:1;31723:6;31719:14;31712:37;31595:161;:::o;31762:366::-;31904:3;31925:67;31989:2;31984:3;31925:67;:::i;:::-;31918:74;;32001:93;32090:3;32001:93;:::i;:::-;32119:2;32114:3;32110:12;32103:19;;31762:366;;;:::o;32134:419::-;32300:4;32338:2;32327:9;32323:18;32315:26;;32387:9;32381:4;32377:20;32373:1;32362:9;32358:17;32351:47;32415:131;32541:4;32415:131;:::i;:::-;32407:139;;32134:419;;;:::o;32559:179::-;32699:31;32695:1;32687:6;32683:14;32676:55;32559:179;:::o;32744:366::-;32886:3;32907:67;32971:2;32966:3;32907:67;:::i;:::-;32900:74;;32983:93;33072:3;32983:93;:::i;:::-;33101:2;33096:3;33092:12;33085:19;;32744:366;;;:::o;33116:419::-;33282:4;33320:2;33309:9;33305:18;33297:26;;33369:9;33363:4;33359:20;33355:1;33344:9;33340:17;33333:47;33397:131;33523:4;33397:131;:::i;:::-;33389:139;;33116:419;;;:::o;33541:168::-;33681:20;33677:1;33669:6;33665:14;33658:44;33541:168;:::o;33715:366::-;33857:3;33878:67;33942:2;33937:3;33878:67;:::i;:::-;33871:74;;33954:93;34043:3;33954:93;:::i;:::-;34072:2;34067:3;34063:12;34056:19;;33715:366;;;:::o;34087:419::-;34253:4;34291:2;34280:9;34276:18;34268:26;;34340:9;34334:4;34330:20;34326:1;34315:9;34311:17;34304:47;34368:131;34494:4;34368:131;:::i;:::-;34360:139;;34087:419;;;:::o;34512:172::-;34652:24;34648:1;34640:6;34636:14;34629:48;34512:172;:::o;34690:366::-;34832:3;34853:67;34917:2;34912:3;34853:67;:::i;:::-;34846:74;;34929:93;35018:3;34929:93;:::i;:::-;35047:2;35042:3;35038:12;35031:19;;34690:366;;;:::o;35062:419::-;35228:4;35266:2;35255:9;35251:18;35243:26;;35315:9;35309:4;35305:20;35301:1;35290:9;35286:17;35279:47;35343:131;35469:4;35343:131;:::i;:::-;35335:139;;35062:419;;;:::o;35487:297::-;35526:7;35549:19;35566:1;35549:19;:::i;:::-;35544:24;;35582:19;35599:1;35582:19;:::i;:::-;35577:24;;35721:1;35701:18;35697:26;35694:1;35691:33;35686:1;35679:9;35672:17;35668:57;35665:83;;;35728:18;;:::i;:::-;35665:83;35776:1;35773;35769:9;35758:20;;35487:297;;;;:::o;35790:175::-;35930:27;35926:1;35918:6;35914:14;35907:51;35790:175;:::o;35971:366::-;36113:3;36134:67;36198:2;36193:3;36134:67;:::i;:::-;36127:74;;36210:93;36299:3;36210:93;:::i;:::-;36328:2;36323:3;36319:12;36312:19;;35971:366;;;:::o;36343:419::-;36509:4;36547:2;36536:9;36532:18;36524:26;;36596:9;36590:4;36586:20;36582:1;36571:9;36567:17;36560:47;36624:131;36750:4;36624:131;:::i;:::-;36616:139;;36343:419;;;:::o;36768:223::-;36908:34;36904:1;36896:6;36892:14;36885:58;36977:6;36972:2;36964:6;36960:15;36953:31;36768:223;:::o;36997:366::-;37139:3;37160:67;37224:2;37219:3;37160:67;:::i;:::-;37153:74;;37236:93;37325:3;37236:93;:::i;:::-;37354:2;37349:3;37345:12;37338:19;;36997:366;;;:::o;37369:419::-;37535:4;37573:2;37562:9;37558:18;37550:26;;37622:9;37616:4;37612:20;37608:1;37597:9;37593:17;37586:47;37650:131;37776:4;37650:131;:::i;:::-;37642:139;;37369:419;;;:::o;37794:168::-;37934:20;37930:1;37922:6;37918:14;37911:44;37794:168;:::o;37968:366::-;38110:3;38131:67;38195:2;38190:3;38131:67;:::i;:::-;38124:74;;38207:93;38296:3;38207:93;:::i;:::-;38325:2;38320:3;38316:12;38309:19;;37968:366;;;:::o;38340:419::-;38506:4;38544:2;38533:9;38529:18;38521:26;;38593:9;38587:4;38583:20;38579:1;38568:9;38564:17;38557:47;38621:131;38747:4;38621:131;:::i;:::-;38613:139;;38340:419;;;:::o;38765:234::-;38905:34;38901:1;38893:6;38889:14;38882:58;38974:17;38969:2;38961:6;38957:15;38950:42;38765:234;:::o;39005:366::-;39147:3;39168:67;39232:2;39227:3;39168:67;:::i;:::-;39161:74;;39244:93;39333:3;39244:93;:::i;:::-;39362:2;39357:3;39353:12;39346:19;;39005:366;;;:::o;39377:419::-;39543:4;39581:2;39570:9;39566:18;39558:26;;39630:9;39624:4;39620:20;39616:1;39605:9;39601:17;39594:47;39658:131;39784:4;39658:131;:::i;:::-;39650:139;;39377:419;;;:::o;39802:148::-;39904:11;39941:3;39926:18;;39802:148;;;;:::o;39956:377::-;40062:3;40090:39;40123:5;40090:39;:::i;:::-;40145:89;40227:6;40222:3;40145:89;:::i;:::-;40138:96;;40243:52;40288:6;40283:3;40276:4;40269:5;40265:16;40243:52;:::i;:::-;40320:6;40315:3;40311:16;40304:23;;40066:267;39956:377;;;;:::o;40339:141::-;40388:4;40411:3;40403:11;;40434:3;40431:1;40424:14;40468:4;40465:1;40455:18;40447:26;;40339:141;;;:::o;40510:845::-;40613:3;40650:5;40644:12;40679:36;40705:9;40679:36;:::i;:::-;40731:89;40813:6;40808:3;40731:89;:::i;:::-;40724:96;;40851:1;40840:9;40836:17;40867:1;40862:137;;;;41013:1;41008:341;;;;40829:520;;40862:137;40946:4;40942:9;40931;40927:25;40922:3;40915:38;40982:6;40977:3;40973:16;40966:23;;40862:137;;41008:341;41075:38;41107:5;41075:38;:::i;:::-;41135:1;41149:154;41163:6;41160:1;41157:13;41149:154;;;41237:7;41231:14;41227:1;41222:3;41218:11;41211:35;41287:1;41278:7;41274:15;41263:26;;41185:4;41182:1;41178:12;41173:17;;41149:154;;;41332:6;41327:3;41323:16;41316:23;;41015:334;;40829:520;;40617:738;;40510:845;;;;:::o;41361:589::-;41586:3;41608:95;41699:3;41690:6;41608:95;:::i;:::-;41601:102;;41720:95;41811:3;41802:6;41720:95;:::i;:::-;41713:102;;41832:92;41920:3;41911:6;41832:92;:::i;:::-;41825:99;;41941:3;41934:10;;41361:589;;;;;;:::o;41956:225::-;42096:34;42092:1;42084:6;42080:14;42073:58;42165:8;42160:2;42152:6;42148:15;42141:33;41956:225;:::o;42187:366::-;42329:3;42350:67;42414:2;42409:3;42350:67;:::i;:::-;42343:74;;42426:93;42515:3;42426:93;:::i;:::-;42544:2;42539:3;42535:12;42528:19;;42187:366;;;:::o;42559:419::-;42725:4;42763:2;42752:9;42748:18;42740:26;;42812:9;42806:4;42802:20;42798:1;42787:9;42783:17;42776:47;42840:131;42966:4;42840:131;:::i;:::-;42832:139;;42559:419;;;:::o;42984:182::-;43124:34;43120:1;43112:6;43108:14;43101:58;42984:182;:::o;43172:366::-;43314:3;43335:67;43399:2;43394:3;43335:67;:::i;:::-;43328:74;;43411:93;43500:3;43411:93;:::i;:::-;43529:2;43524:3;43520:12;43513:19;;43172:366;;;:::o;43544:419::-;43710:4;43748:2;43737:9;43733:18;43725:26;;43797:9;43791:4;43787:20;43783:1;43772:9;43768:17;43761:47;43825:131;43951:4;43825:131;:::i;:::-;43817:139;;43544:419;;;:::o;43969:229::-;44109:34;44105:1;44097:6;44093:14;44086:58;44178:12;44173:2;44165:6;44161:15;44154:37;43969:229;:::o;44204:366::-;44346:3;44367:67;44431:2;44426:3;44367:67;:::i;:::-;44360:74;;44443:93;44532:3;44443:93;:::i;:::-;44561:2;44556:3;44552:12;44545:19;;44204:366;;;:::o;44576:419::-;44742:4;44780:2;44769:9;44765:18;44757:26;;44829:9;44823:4;44819:20;44815:1;44804:9;44800:17;44793:47;44857:131;44983:4;44857:131;:::i;:::-;44849:139;;44576:419;;;:::o;45001:175::-;45141:27;45137:1;45129:6;45125:14;45118:51;45001:175;:::o;45182:366::-;45324:3;45345:67;45409:2;45404:3;45345:67;:::i;:::-;45338:74;;45421:93;45510:3;45421:93;:::i;:::-;45539:2;45534:3;45530:12;45523:19;;45182:366;;;:::o;45554:419::-;45720:4;45758:2;45747:9;45743:18;45735:26;;45807:9;45801:4;45797:20;45793:1;45782:9;45778:17;45771:47;45835:131;45961:4;45835:131;:::i;:::-;45827:139;;45554:419;;;:::o;45979:98::-;46030:6;46064:5;46058:12;46048:22;;45979:98;;;:::o;46083:168::-;46166:11;46200:6;46195:3;46188:19;46240:4;46235:3;46231:14;46216:29;;46083:168;;;;:::o;46257:360::-;46343:3;46371:38;46403:5;46371:38;:::i;:::-;46425:70;46488:6;46483:3;46425:70;:::i;:::-;46418:77;;46504:52;46549:6;46544:3;46537:4;46530:5;46526:16;46504:52;:::i;:::-;46581:29;46603:6;46581:29;:::i;:::-;46576:3;46572:39;46565:46;;46347:270;46257:360;;;;:::o;46623:640::-;46818:4;46856:3;46845:9;46841:19;46833:27;;46870:71;46938:1;46927:9;46923:17;46914:6;46870:71;:::i;:::-;46951:72;47019:2;47008:9;47004:18;46995:6;46951:72;:::i;:::-;47033;47101:2;47090:9;47086:18;47077:6;47033:72;:::i;:::-;47152:9;47146:4;47142:20;47137:2;47126:9;47122:18;47115:48;47180:76;47251:4;47242:6;47180:76;:::i;:::-;47172:84;;46623:640;;;;;;;:::o;47269:141::-;47325:5;47356:6;47350:13;47341:22;;47372:32;47398:5;47372:32;:::i;:::-;47269:141;;;;:::o;47416:349::-;47485:6;47534:2;47522:9;47513:7;47509:23;47505:32;47502:119;;;47540:79;;:::i;:::-;47502:119;47660:1;47685:63;47740:7;47731:6;47720:9;47716:22;47685:63;:::i;:::-;47675:73;;47631:127;47416:349;;;;:::o
Swarm Source
ipfs://57c4362c82a62a4f8dd7ca1de67e84527b2cd3ae458b846e6b8d275730e8faa8
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.