ERC-721
Overview
Max Total Supply
511 GG
Holders
326
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GobbleGun
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-02 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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: contracts/GobbleGun.sol pragma solidity 0.8.17; contract GobbleGun is ERC721A, Ownable, ReentrancyGuard { string public _baseTokenURI; uint public price = 0.0029 ether; uint public maxPerTx = 20; uint public maxFreePerWallet = 1; uint public maxPerWallet = 60; uint public totalFree = 3412; uint public maxSupply = 3412; bool public mintEnabled; uint public totalFreeMinted = 0; mapping(address => uint256) public _mintedFreeAmount; mapping(address => uint256) public _totalMintedAmount; constructor(string memory baseURI) ERC721A("Gobble Gun", "GG"){ setBaseURI(baseURI); } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalFreeMinted + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] < maxFreePerWallet)); if (isFree) { require(mintEnabled, "Mint is not live yet"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); if(count >= (maxFreePerWallet - _mintedFreeAmount[msg.sender])) { require(msg.value >= (count * cost) - ((maxFreePerWallet - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] = maxFreePerWallet; totalFreeMinted += maxFreePerWallet; } else if(count < (maxFreePerWallet - _mintedFreeAmount[msg.sender])) { require(msg.value >= 0, "Please send the exact ETH amount"); _mintedFreeAmount[msg.sender] += count; totalFreeMinted += count; } } else{ require(mintEnabled, "Mint is not live yet"); require(_totalMintedAmount[msg.sender] + count <= maxPerWallet, "Exceed maximum NFTs per wallet"); require(msg.value >= count * cost, "Please send the exact ETH amount"); require(totalSupply() + count <= maxSupply, "No more"); require(count <= maxPerTx, "Max per TX reached."); require(msg.sender == tx.origin, "The minter is another contract"); } _totalMintedAmount[msg.sender] += count; _safeMint(msg.sender, count); } function checkPrice() public view returns (uint256) { return price; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner { totalFree = MaxTotalFree_; } function setmaxFreePerWallet(uint256 maxFreePerWallet_) external onlyOwner { maxFreePerWallet = maxFreePerWallet_; } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFreePerWallet_","type":"uint256"}],"name":"setmaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660a4d88ddd94000600b556014600c556001600d55603c600e55610d54600f55610d5460105560006012553480156200003c57600080fd5b5060405162003d6638038062003d66833981810160405281019062000062919062000490565b6040518060400160405280600a81526020017f476f62626c652047756e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f47470000000000000000000000000000000000000000000000000000000000008152508160029081620000df91906200072c565b508060039081620000f191906200072c565b50620001026200014a60201b60201c565b60008190555050506200012a6200011e6200014f60201b60201c565b6200015760201b60201c565b600160098190555062000143816200021d60201b60201c565b5062000896565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022d6200024260201b60201c565b80600a90816200023e91906200072c565b5050565b620002526200014f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000278620002d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c89062000874565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000366826200031b565b810181811067ffffffffffffffff821117156200038857620003876200032c565b5b80604052505050565b60006200039d620002fd565b9050620003ab82826200035b565b919050565b600067ffffffffffffffff821115620003ce57620003cd6200032c565b5b620003d9826200031b565b9050602081019050919050565b60005b8381101562000406578082015181840152602081019050620003e9565b60008484015250505050565b6000620004296200042384620003b0565b62000391565b90508281526020810184848401111562000448576200044762000316565b5b62000455848285620003e6565b509392505050565b600082601f83011262000475576200047462000311565b5b81516200048784826020860162000412565b91505092915050565b600060208284031215620004a957620004a862000307565b5b600082015167ffffffffffffffff811115620004ca57620004c96200030c565b5b620004d8848285016200045d565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053457607f821691505b6020821081036200054a5762000549620004ec565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000575565b620005c0868362000575565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060d620006076200060184620005d8565b620005e2565b620005d8565b9050919050565b6000819050919050565b6200062983620005ec565b62000641620006388262000614565b84845462000582565b825550505050565b600090565b6200065862000649565b620006658184846200061e565b505050565b5b818110156200068d57620006816000826200064e565b6001810190506200066b565b5050565b601f821115620006dc57620006a68162000550565b620006b18462000565565b81016020851015620006c1578190505b620006d9620006d08562000565565b8301826200066a565b50505b505050565b600082821c905092915050565b60006200070160001984600802620006e1565b1980831691505092915050565b60006200071c8383620006ee565b9150826002028217905092915050565b6200073782620004e1565b67ffffffffffffffff8111156200075357620007526200032c565b5b6200075f82546200051b565b6200076c82828562000691565b600060209050601f831160018114620007a457600084156200078f578287015190505b6200079b85826200070e565b8655506200080b565b601f198416620007b48662000550565b60005b82811015620007de57848901518255600182019150602085019450602081019050620007b7565b86831015620007fe5784890151620007fa601f891682620006ee565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200085c60208362000813565b9150620008698262000824565b602082019050919050565b600060208201905081810360008301526200088f816200084d565b9050919050565b6134c080620008a66000396000f3fe60806040526004361061020f5760003560e01c80638fc3047d11610118578063c87b56dd116100a0578063dad7b5c91161006f578063dad7b5c914610724578063e985e9c51461074f578063f2fde38b1461078c578063f4db2acb146107b5578063f968adbe146107f25761020f565b8063c87b56dd14610666578063cfc86f7b146106a3578063d1239730146106ce578063d5abeb01146106f95761020f565b8063a035b1fe116100e7578063a035b1fe146105af578063a0712d68146105da578063a22cb465146105f6578063a70273571461061f578063b88d4fde1461064a5761020f565b80638fc3047d1461050757806391b7f5ed146105325780639254d4f41461055b57806395d89b41146105845761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461043457806370a0823114610471578063715018a6146104ae5780637d55094d146104c55780638da5cb5b146104dc5761020f565b806342842e0e1461039b578063453c2310146103b757806355f804b3146103e25780635a963f1b1461040b5761020f565b806311b01a32116101e257806311b01a32146102d557806318160ddd1461031257806323b872dd1461033d578063333e44e6146103595780633ccfd60b146103845761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906124b4565b61081d565b60405161024891906124fc565b60405180910390f35b34801561025d57600080fd5b506102666108af565b60405161027391906125a7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906125ff565b610941565b6040516102b0919061266d565b60405180910390f35b6102d360048036038101906102ce91906126b4565b6109c0565b005b3480156102e157600080fd5b506102fc60048036038101906102f791906126f4565b610b04565b6040516103099190612730565b60405180910390f35b34801561031e57600080fd5b50610327610b1c565b6040516103349190612730565b60405180910390f35b6103576004803603810190610352919061274b565b610b33565b005b34801561036557600080fd5b5061036e610e55565b60405161037b9190612730565b60405180910390f35b34801561039057600080fd5b50610399610e5b565b005b6103b560048036038101906103b0919061274b565b610f67565b005b3480156103c357600080fd5b506103cc610f87565b6040516103d99190612730565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906128d3565b610f8d565b005b34801561041757600080fd5b50610432600480360381019061042d91906125ff565b610fa8565b005b34801561044057600080fd5b5061045b600480360381019061045691906125ff565b610fba565b604051610468919061266d565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906126f4565b610fcc565b6040516104a59190612730565b60405180910390f35b3480156104ba57600080fd5b506104c3611084565b005b3480156104d157600080fd5b506104da611098565b005b3480156104e857600080fd5b506104f16110cc565b6040516104fe919061266d565b60405180910390f35b34801561051357600080fd5b5061051c6110f6565b6040516105299190612730565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906125ff565b611100565b005b34801561056757600080fd5b50610582600480360381019061057d91906125ff565b611112565b005b34801561059057600080fd5b50610599611124565b6040516105a691906125a7565b60405180910390f35b3480156105bb57600080fd5b506105c46111b6565b6040516105d19190612730565b60405180910390f35b6105f460048036038101906105ef91906125ff565b6111bc565b005b34801561060257600080fd5b5061061d60048036038101906106189190612948565b611835565b005b34801561062b57600080fd5b50610634611940565b6040516106419190612730565b60405180910390f35b610664600480360381019061065f9190612a29565b611946565b005b34801561067257600080fd5b5061068d600480360381019061068891906125ff565b6119b9565b60405161069a91906125a7565b60405180910390f35b3480156106af57600080fd5b506106b8611a57565b6040516106c591906125a7565b60405180910390f35b3480156106da57600080fd5b506106e3611ae5565b6040516106f091906124fc565b60405180910390f35b34801561070557600080fd5b5061070e611af8565b60405161071b9190612730565b60405180910390f35b34801561073057600080fd5b50610739611afe565b6040516107469190612730565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612aac565b611b04565b60405161078391906124fc565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae91906126f4565b611b98565b005b3480156107c157600080fd5b506107dc60048036038101906107d791906126f4565b611c1b565b6040516107e99190612730565b60405180910390f35b3480156107fe57600080fd5b50610807611c33565b6040516108149190612730565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108be90612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108ea90612b1b565b80156109375780601f1061090c57610100808354040283529160200191610937565b820191906000526020600020905b81548152906001019060200180831161091a57829003601f168201915b5050505050905090565b600061094c82611c39565b610982576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cb82610fba565b90508073ffffffffffffffffffffffffffffffffffffffff166109ec611c98565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f57610a1881610a13611c98565b611b04565b610a4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60146020528060005260406000206000915090505481565b6000610b26611ca0565b6001546000540303905090565b6000610b3e82611ca5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb184611d71565b91509150610bc78187610bc2611c98565b611d98565b610c1357610bdc86610bd7611c98565b611b04565b610c12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c868686866001611ddc565b8015610c9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5f85610d3b888887611de2565b7c020000000000000000000000000000000000000000000000000000000017611e0a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610de55760006001850190506000600460008381526020019081526020016000205403610de3576000548114610de2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4d8686866001611e35565b505050505050565b600f5481565b610e63611e3b565b600260095403610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612b98565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed690612be9565b60006040518083038185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612c4a565b60405180910390fd5b506001600981905550565b610f8283838360405180602001604052806000815250611946565b505050565b600e5481565b610f95611e3b565b80600a9081610fa49190612e16565b5050565b610fb0611e3b565b80600f8190555050565b6000610fc582611ca5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611033576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61108c611e3b565b6110966000611eb9565b565b6110a0611e3b565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b54905090565b611108611e3b565b80600b8190555050565b61111a611e3b565b80600d8190555050565b60606003805461113390612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612b1b565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600f546111d49190612f17565b836012546111e29190612f17565b10801561122f5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561159957601160009054906101000a900460ff16611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612f97565b60405180910390fd5b60105483611292610b1c565b61129c9190612f17565b11156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613003565b60405180910390fd5b600c54831115611322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113199061306f565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461136f919061308f565b831061148b5781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546113c3919061308f565b6113cd91906130c3565b82846113d991906130c3565b6113e3919061308f565b341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613151565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d546012600082825461147f9190612f17565b92505081905550611594565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114d8919061308f565b831015611593576000341015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613151565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190612f17565b92505081905550826012600082825461158b9190612f17565b925050819055505b5b6117d0565b601160009054906101000a900460ff166115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90612f97565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116369190612f17565b1115611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e906131bd565b60405180910390fd5b818361168391906130c3565b3410156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613151565b60405180910390fd5b601054836116d1610b1c565b6116db9190612f17565b111561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613003565b60405180910390fd5b600c54831115611761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117589061306f565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613229565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181f9190612f17565b925050819055506118303384611f7f565b505050565b8060076000611842611c98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118ef611c98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193491906124fc565b60405180910390a35050565b600d5481565b611951848484610b33565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119b35761197c84848484611f9d565b6119b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119c482611c39565b6119fa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a046120ed565b90506000815103611a245760405180602001604052806000815250611a4f565b80611a2e8461217f565b604051602001611a3f929190613285565b6040516020818303038152906040525b915050919050565b600a8054611a6490612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9090612b1b565b8015611add5780601f10611ab257610100808354040283529160200191611add565b820191906000526020600020905b815481529060010190602001808311611ac057829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b60105481565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba0611e3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061331b565b60405180910390fd5b611c1881611eb9565b50565b60136020528060005260406000206000915090505481565b600c5481565b600081611c44611ca0565b11158015611c53575060005482105b8015611c91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611cb4611ca0565b11611d3a57600054811015611d395760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d37575b60008103611d2d576004600083600190039350838152602001908152602001600020549050611d03565b8092505050611d6c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611df98686846121cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e436121d8565b73ffffffffffffffffffffffffffffffffffffffff16611e616110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613387565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f998282604051806020016040528060008152506121e0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc3611c98565b8786866040518563ffffffff1660e01b8152600401611fe594939291906133fc565b6020604051808303816000875af192505050801561202157506040513d601f19601f8201168201806040525081019061201e919061345d565b60015b61209a573d8060008114612051576040519150601f19603f3d011682016040523d82523d6000602084013e612056565b606091505b506000815103612092576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120fc90612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461212890612b1b565b80156121755780601f1061214a57610100808354040283529160200191612175565b820191906000526020600020905b81548152906001019060200180831161215857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121ba57600184039350600a81066030018453600a8104905080612198575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6121ea838361227d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461227857600080549050600083820390505b61222a6000868380600101945086611f9d565b612260576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061221757816000541461227557600080fd5b50505b505050565b600080549050600082036122bd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ca6000848385611ddc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612341836123326000866000611de2565b61233b85612438565b17611e0a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123e257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a7565b506000820361241d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124336000848385611e35565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124918161245c565b811461249c57600080fd5b50565b6000813590506124ae81612488565b92915050565b6000602082840312156124ca576124c9612452565b5b60006124d88482850161249f565b91505092915050565b60008115159050919050565b6124f6816124e1565b82525050565b600060208201905061251160008301846124ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612551578082015181840152602081019050612536565b60008484015250505050565b6000601f19601f8301169050919050565b600061257982612517565b6125838185612522565b9350612593818560208601612533565b61259c8161255d565b840191505092915050565b600060208201905081810360008301526125c1818461256e565b905092915050565b6000819050919050565b6125dc816125c9565b81146125e757600080fd5b50565b6000813590506125f9816125d3565b92915050565b60006020828403121561261557612614612452565b5b6000612623848285016125ea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126578261262c565b9050919050565b6126678161264c565b82525050565b6000602082019050612682600083018461265e565b92915050565b6126918161264c565b811461269c57600080fd5b50565b6000813590506126ae81612688565b92915050565b600080604083850312156126cb576126ca612452565b5b60006126d98582860161269f565b92505060206126ea858286016125ea565b9150509250929050565b60006020828403121561270a57612709612452565b5b60006127188482850161269f565b91505092915050565b61272a816125c9565b82525050565b60006020820190506127456000830184612721565b92915050565b60008060006060848603121561276457612763612452565b5b60006127728682870161269f565b93505060206127838682870161269f565b9250506040612794868287016125ea565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127e08261255d565b810181811067ffffffffffffffff821117156127ff576127fe6127a8565b5b80604052505050565b6000612812612448565b905061281e82826127d7565b919050565b600067ffffffffffffffff82111561283e5761283d6127a8565b5b6128478261255d565b9050602081019050919050565b82818337600083830152505050565b600061287661287184612823565b612808565b905082815260208101848484011115612892576128916127a3565b5b61289d848285612854565b509392505050565b600082601f8301126128ba576128b961279e565b5b81356128ca848260208601612863565b91505092915050565b6000602082840312156128e9576128e8612452565b5b600082013567ffffffffffffffff81111561290757612906612457565b5b612913848285016128a5565b91505092915050565b612925816124e1565b811461293057600080fd5b50565b6000813590506129428161291c565b92915050565b6000806040838503121561295f5761295e612452565b5b600061296d8582860161269f565b925050602061297e85828601612933565b9150509250929050565b600067ffffffffffffffff8211156129a3576129a26127a8565b5b6129ac8261255d565b9050602081019050919050565b60006129cc6129c784612988565b612808565b9050828152602081018484840111156129e8576129e76127a3565b5b6129f3848285612854565b509392505050565b600082601f830112612a1057612a0f61279e565b5b8135612a208482602086016129b9565b91505092915050565b60008060008060808587031215612a4357612a42612452565b5b6000612a518782880161269f565b9450506020612a628782880161269f565b9350506040612a73878288016125ea565b925050606085013567ffffffffffffffff811115612a9457612a93612457565b5b612aa0878288016129fb565b91505092959194509250565b60008060408385031215612ac357612ac2612452565b5b6000612ad18582860161269f565b9250506020612ae28582860161269f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3357607f821691505b602082108103612b4657612b45612aec565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b82601f83612522565b9150612b8d82612b4c565b602082019050919050565b60006020820190508181036000830152612bb181612b75565b9050919050565b600081905092915050565b50565b6000612bd3600083612bb8565b9150612bde82612bc3565b600082019050919050565b6000612bf482612bc6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612c34601083612522565b9150612c3f82612bfe565b602082019050919050565b60006020820190508181036000830152612c6381612c27565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ccc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c8f565b612cd68683612c8f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d13612d0e612d09846125c9565b612cee565b6125c9565b9050919050565b6000819050919050565b612d2d83612cf8565b612d41612d3982612d1a565b848454612c9c565b825550505050565b600090565b612d56612d49565b612d61818484612d24565b505050565b5b81811015612d8557612d7a600082612d4e565b600181019050612d67565b5050565b601f821115612dca57612d9b81612c6a565b612da484612c7f565b81016020851015612db3578190505b612dc7612dbf85612c7f565b830182612d66565b50505b505050565b600082821c905092915050565b6000612ded60001984600802612dcf565b1980831691505092915050565b6000612e068383612ddc565b9150826002028217905092915050565b612e1f82612517565b67ffffffffffffffff811115612e3857612e376127a8565b5b612e428254612b1b565b612e4d828285612d89565b600060209050601f831160018114612e805760008415612e6e578287015190505b612e788582612dfa565b865550612ee0565b601f198416612e8e86612c6a565b60005b82811015612eb657848901518255600182019150602085019450602081019050612e91565b86831015612ed35784890151612ecf601f891682612ddc565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f22826125c9565b9150612f2d836125c9565b9250828201905080821115612f4557612f44612ee8565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000612f81601483612522565b9150612f8c82612f4b565b602082019050919050565b60006020820190508181036000830152612fb081612f74565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612fed600783612522565b9150612ff882612fb7565b602082019050919050565b6000602082019050818103600083015261301c81612fe0565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613059601383612522565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b600061309a826125c9565b91506130a5836125c9565b92508282039050818111156130bd576130bc612ee8565b5b92915050565b60006130ce826125c9565b91506130d9836125c9565b92508282026130e7816125c9565b915082820484148315176130fe576130fd612ee8565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b600061313b602083612522565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006131a7601e83612522565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613213601e83612522565b915061321e826131dd565b602082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b600081905092915050565b600061325f82612517565b6132698185613249565b9350613279818560208601612533565b80840191505092915050565b60006132918285613254565b915061329d8284613254565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613305602683612522565b9150613310826132a9565b604082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613371602083612522565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133ce826133a7565b6133d881856133b2565b93506133e8818560208601612533565b6133f18161255d565b840191505092915050565b6000608082019050613411600083018761265e565b61341e602083018661265e565b61342b6040830185612721565b818103606083015261343d81846133c3565b905095945050505050565b60008151905061345781612488565b92915050565b60006020828403121561347357613472612452565b5b600061348184828501613448565b9150509291505056fea2646970667358221220e706d5b409631a433bba6c1d605ed05bd522c46e842bc63bee19db74db61106b64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638fc3047d11610118578063c87b56dd116100a0578063dad7b5c91161006f578063dad7b5c914610724578063e985e9c51461074f578063f2fde38b1461078c578063f4db2acb146107b5578063f968adbe146107f25761020f565b8063c87b56dd14610666578063cfc86f7b146106a3578063d1239730146106ce578063d5abeb01146106f95761020f565b8063a035b1fe116100e7578063a035b1fe146105af578063a0712d68146105da578063a22cb465146105f6578063a70273571461061f578063b88d4fde1461064a5761020f565b80638fc3047d1461050757806391b7f5ed146105325780639254d4f41461055b57806395d89b41146105845761020f565b806342842e0e1161019b5780636352211e1161016a5780636352211e1461043457806370a0823114610471578063715018a6146104ae5780637d55094d146104c55780638da5cb5b146104dc5761020f565b806342842e0e1461039b578063453c2310146103b757806355f804b3146103e25780635a963f1b1461040b5761020f565b806311b01a32116101e257806311b01a32146102d557806318160ddd1461031257806323b872dd1461033d578063333e44e6146103595780633ccfd60b146103845761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906124b4565b61081d565b60405161024891906124fc565b60405180910390f35b34801561025d57600080fd5b506102666108af565b60405161027391906125a7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906125ff565b610941565b6040516102b0919061266d565b60405180910390f35b6102d360048036038101906102ce91906126b4565b6109c0565b005b3480156102e157600080fd5b506102fc60048036038101906102f791906126f4565b610b04565b6040516103099190612730565b60405180910390f35b34801561031e57600080fd5b50610327610b1c565b6040516103349190612730565b60405180910390f35b6103576004803603810190610352919061274b565b610b33565b005b34801561036557600080fd5b5061036e610e55565b60405161037b9190612730565b60405180910390f35b34801561039057600080fd5b50610399610e5b565b005b6103b560048036038101906103b0919061274b565b610f67565b005b3480156103c357600080fd5b506103cc610f87565b6040516103d99190612730565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906128d3565b610f8d565b005b34801561041757600080fd5b50610432600480360381019061042d91906125ff565b610fa8565b005b34801561044057600080fd5b5061045b600480360381019061045691906125ff565b610fba565b604051610468919061266d565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906126f4565b610fcc565b6040516104a59190612730565b60405180910390f35b3480156104ba57600080fd5b506104c3611084565b005b3480156104d157600080fd5b506104da611098565b005b3480156104e857600080fd5b506104f16110cc565b6040516104fe919061266d565b60405180910390f35b34801561051357600080fd5b5061051c6110f6565b6040516105299190612730565b60405180910390f35b34801561053e57600080fd5b50610559600480360381019061055491906125ff565b611100565b005b34801561056757600080fd5b50610582600480360381019061057d91906125ff565b611112565b005b34801561059057600080fd5b50610599611124565b6040516105a691906125a7565b60405180910390f35b3480156105bb57600080fd5b506105c46111b6565b6040516105d19190612730565b60405180910390f35b6105f460048036038101906105ef91906125ff565b6111bc565b005b34801561060257600080fd5b5061061d60048036038101906106189190612948565b611835565b005b34801561062b57600080fd5b50610634611940565b6040516106419190612730565b60405180910390f35b610664600480360381019061065f9190612a29565b611946565b005b34801561067257600080fd5b5061068d600480360381019061068891906125ff565b6119b9565b60405161069a91906125a7565b60405180910390f35b3480156106af57600080fd5b506106b8611a57565b6040516106c591906125a7565b60405180910390f35b3480156106da57600080fd5b506106e3611ae5565b6040516106f091906124fc565b60405180910390f35b34801561070557600080fd5b5061070e611af8565b60405161071b9190612730565b60405180910390f35b34801561073057600080fd5b50610739611afe565b6040516107469190612730565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612aac565b611b04565b60405161078391906124fc565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae91906126f4565b611b98565b005b3480156107c157600080fd5b506107dc60048036038101906107d791906126f4565b611c1b565b6040516107e99190612730565b60405180910390f35b3480156107fe57600080fd5b50610807611c33565b6040516108149190612730565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108be90612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108ea90612b1b565b80156109375780601f1061090c57610100808354040283529160200191610937565b820191906000526020600020905b81548152906001019060200180831161091a57829003601f168201915b5050505050905090565b600061094c82611c39565b610982576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cb82610fba565b90508073ffffffffffffffffffffffffffffffffffffffff166109ec611c98565b73ffffffffffffffffffffffffffffffffffffffff1614610a4f57610a1881610a13611c98565b611b04565b610a4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60146020528060005260406000206000915090505481565b6000610b26611ca0565b6001546000540303905090565b6000610b3e82611ca5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb184611d71565b91509150610bc78187610bc2611c98565b611d98565b610c1357610bdc86610bd7611c98565b611b04565b610c12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c868686866001611ddc565b8015610c9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5f85610d3b888887611de2565b7c020000000000000000000000000000000000000000000000000000000017611e0a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610de55760006001850190506000600460008381526020019081526020016000205403610de3576000548114610de2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4d8686866001611e35565b505050505050565b600f5481565b610e63611e3b565b600260095403610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612b98565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ed690612be9565b60006040518083038185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612c4a565b60405180910390fd5b506001600981905550565b610f8283838360405180602001604052806000815250611946565b505050565b600e5481565b610f95611e3b565b80600a9081610fa49190612e16565b5050565b610fb0611e3b565b80600f8190555050565b6000610fc582611ca5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611033576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61108c611e3b565b6110966000611eb9565b565b6110a0611e3b565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b54905090565b611108611e3b565b80600b8190555050565b61111a611e3b565b80600d8190555050565b60606003805461113390612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461115f90612b1b565b80156111ac5780601f10611181576101008083540402835291602001916111ac565b820191906000526020600020905b81548152906001019060200180831161118f57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600f546111d49190612f17565b836012546111e29190612f17565b10801561122f5750600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561159957601160009054906101000a900460ff16611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612f97565b60405180910390fd5b60105483611292610b1c565b61129c9190612f17565b11156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613003565b60405180910390fd5b600c54831115611322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113199061306f565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461136f919061308f565b831061148b5781601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546113c3919061308f565b6113cd91906130c3565b82846113d991906130c3565b6113e3919061308f565b341015611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613151565b60405180910390fd5b600d54601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d546012600082825461147f9190612f17565b92505081905550611594565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546114d8919061308f565b831015611593576000341015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613151565b60405180910390fd5b82601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115729190612f17565b92505081905550826012600082825461158b9190612f17565b925050819055505b5b6117d0565b601160009054906101000a900460ff166115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90612f97565b60405180910390fd5b600e5483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116369190612f17565b1115611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e906131bd565b60405180910390fd5b818361168391906130c3565b3410156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90613151565b60405180910390fd5b601054836116d1610b1c565b6116db9190612f17565b111561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390613003565b60405180910390fd5b600c54831115611761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117589061306f565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c690613229565b60405180910390fd5b5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181f9190612f17565b925050819055506118303384611f7f565b505050565b8060076000611842611c98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118ef611c98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161193491906124fc565b60405180910390a35050565b600d5481565b611951848484610b33565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119b35761197c84848484611f9d565b6119b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119c482611c39565b6119fa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a046120ed565b90506000815103611a245760405180602001604052806000815250611a4f565b80611a2e8461217f565b604051602001611a3f929190613285565b6040516020818303038152906040525b915050919050565b600a8054611a6490612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9090612b1b565b8015611add5780601f10611ab257610100808354040283529160200191611add565b820191906000526020600020905b815481529060010190602001808311611ac057829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b60105481565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ba0611e3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061331b565b60405180910390fd5b611c1881611eb9565b50565b60136020528060005260406000206000915090505481565b600c5481565b600081611c44611ca0565b11158015611c53575060005482105b8015611c91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611cb4611ca0565b11611d3a57600054811015611d395760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d37575b60008103611d2d576004600083600190039350838152602001908152602001600020549050611d03565b8092505050611d6c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611df98686846121cf565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e436121d8565b73ffffffffffffffffffffffffffffffffffffffff16611e616110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90613387565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f998282604051806020016040528060008152506121e0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc3611c98565b8786866040518563ffffffff1660e01b8152600401611fe594939291906133fc565b6020604051808303816000875af192505050801561202157506040513d601f19601f8201168201806040525081019061201e919061345d565b60015b61209a573d8060008114612051576040519150601f19603f3d011682016040523d82523d6000602084013e612056565b606091505b506000815103612092576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120fc90612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461212890612b1b565b80156121755780601f1061214a57610100808354040283529160200191612175565b820191906000526020600020905b81548152906001019060200180831161215857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121ba57600184039350600a81066030018453600a8104905080612198575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6121ea838361227d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461227857600080549050600083820390505b61222a6000868380600101945086611f9d565b612260576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061221757816000541461227557600080fd5b50505b505050565b600080549050600082036122bd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ca6000848385611ddc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612341836123326000866000611de2565b61233b85612438565b17611e0a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123e257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123a7565b506000820361241d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124336000848385611e35565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124918161245c565b811461249c57600080fd5b50565b6000813590506124ae81612488565b92915050565b6000602082840312156124ca576124c9612452565b5b60006124d88482850161249f565b91505092915050565b60008115159050919050565b6124f6816124e1565b82525050565b600060208201905061251160008301846124ed565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612551578082015181840152602081019050612536565b60008484015250505050565b6000601f19601f8301169050919050565b600061257982612517565b6125838185612522565b9350612593818560208601612533565b61259c8161255d565b840191505092915050565b600060208201905081810360008301526125c1818461256e565b905092915050565b6000819050919050565b6125dc816125c9565b81146125e757600080fd5b50565b6000813590506125f9816125d3565b92915050565b60006020828403121561261557612614612452565b5b6000612623848285016125ea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126578261262c565b9050919050565b6126678161264c565b82525050565b6000602082019050612682600083018461265e565b92915050565b6126918161264c565b811461269c57600080fd5b50565b6000813590506126ae81612688565b92915050565b600080604083850312156126cb576126ca612452565b5b60006126d98582860161269f565b92505060206126ea858286016125ea565b9150509250929050565b60006020828403121561270a57612709612452565b5b60006127188482850161269f565b91505092915050565b61272a816125c9565b82525050565b60006020820190506127456000830184612721565b92915050565b60008060006060848603121561276457612763612452565b5b60006127728682870161269f565b93505060206127838682870161269f565b9250506040612794868287016125ea565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127e08261255d565b810181811067ffffffffffffffff821117156127ff576127fe6127a8565b5b80604052505050565b6000612812612448565b905061281e82826127d7565b919050565b600067ffffffffffffffff82111561283e5761283d6127a8565b5b6128478261255d565b9050602081019050919050565b82818337600083830152505050565b600061287661287184612823565b612808565b905082815260208101848484011115612892576128916127a3565b5b61289d848285612854565b509392505050565b600082601f8301126128ba576128b961279e565b5b81356128ca848260208601612863565b91505092915050565b6000602082840312156128e9576128e8612452565b5b600082013567ffffffffffffffff81111561290757612906612457565b5b612913848285016128a5565b91505092915050565b612925816124e1565b811461293057600080fd5b50565b6000813590506129428161291c565b92915050565b6000806040838503121561295f5761295e612452565b5b600061296d8582860161269f565b925050602061297e85828601612933565b9150509250929050565b600067ffffffffffffffff8211156129a3576129a26127a8565b5b6129ac8261255d565b9050602081019050919050565b60006129cc6129c784612988565b612808565b9050828152602081018484840111156129e8576129e76127a3565b5b6129f3848285612854565b509392505050565b600082601f830112612a1057612a0f61279e565b5b8135612a208482602086016129b9565b91505092915050565b60008060008060808587031215612a4357612a42612452565b5b6000612a518782880161269f565b9450506020612a628782880161269f565b9350506040612a73878288016125ea565b925050606085013567ffffffffffffffff811115612a9457612a93612457565b5b612aa0878288016129fb565b91505092959194509250565b60008060408385031215612ac357612ac2612452565b5b6000612ad18582860161269f565b9250506020612ae28582860161269f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3357607f821691505b602082108103612b4657612b45612aec565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b82601f83612522565b9150612b8d82612b4c565b602082019050919050565b60006020820190508181036000830152612bb181612b75565b9050919050565b600081905092915050565b50565b6000612bd3600083612bb8565b9150612bde82612bc3565b600082019050919050565b6000612bf482612bc6565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612c34601083612522565b9150612c3f82612bfe565b602082019050919050565b60006020820190508181036000830152612c6381612c27565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ccc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c8f565b612cd68683612c8f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d13612d0e612d09846125c9565b612cee565b6125c9565b9050919050565b6000819050919050565b612d2d83612cf8565b612d41612d3982612d1a565b848454612c9c565b825550505050565b600090565b612d56612d49565b612d61818484612d24565b505050565b5b81811015612d8557612d7a600082612d4e565b600181019050612d67565b5050565b601f821115612dca57612d9b81612c6a565b612da484612c7f565b81016020851015612db3578190505b612dc7612dbf85612c7f565b830182612d66565b50505b505050565b600082821c905092915050565b6000612ded60001984600802612dcf565b1980831691505092915050565b6000612e068383612ddc565b9150826002028217905092915050565b612e1f82612517565b67ffffffffffffffff811115612e3857612e376127a8565b5b612e428254612b1b565b612e4d828285612d89565b600060209050601f831160018114612e805760008415612e6e578287015190505b612e788582612dfa565b865550612ee0565b601f198416612e8e86612c6a565b60005b82811015612eb657848901518255600182019150602085019450602081019050612e91565b86831015612ed35784890151612ecf601f891682612ddc565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f22826125c9565b9150612f2d836125c9565b9250828201905080821115612f4557612f44612ee8565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000612f81601483612522565b9150612f8c82612f4b565b602082019050919050565b60006020820190508181036000830152612fb081612f74565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612fed600783612522565b9150612ff882612fb7565b602082019050919050565b6000602082019050818103600083015261301c81612fe0565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000613059601383612522565b915061306482613023565b602082019050919050565b600060208201905081810360008301526130888161304c565b9050919050565b600061309a826125c9565b91506130a5836125c9565b92508282039050818111156130bd576130bc612ee8565b5b92915050565b60006130ce826125c9565b91506130d9836125c9565b92508282026130e7816125c9565b915082820484148315176130fe576130fd612ee8565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b600061313b602083612522565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006131a7601e83612522565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613213601e83612522565b915061321e826131dd565b602082019050919050565b6000602082019050818103600083015261324281613206565b9050919050565b600081905092915050565b600061325f82612517565b6132698185613249565b9350613279818560208601612533565b80840191505092915050565b60006132918285613254565b915061329d8284613254565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613305602683612522565b9150613310826132a9565b604082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613371602083612522565b915061337c8261333b565b602082019050919050565b600060208201905081810360008301526133a081613364565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133ce826133a7565b6133d881856133b2565b93506133e8818560208601612533565b6133f18161255d565b840191505092915050565b6000608082019050613411600083018761265e565b61341e602083018661265e565b61342b6040830185612721565b818103606083015261343d81846133c3565b905095945050505050565b60008151905061345781612488565b92915050565b60006020828403121561347357613472612452565b5b600061348184828501613448565b9150509291505056fea2646970667358221220e706d5b409631a433bba6c1d605ed05bd522c46e842bc63bee19db74db61106b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
66585:3304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33481:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40874:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40307:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67092:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30134:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44513:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66869:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69700:186;;;;;;;;;;;;;:::i;:::-;;47434:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66826:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67260:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69343:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35776:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31318:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;69601:87;;;;;;;;;;;;;:::i;:::-;;4887;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69158:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69249:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69463:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34559:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66682:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67488:1662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41432:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66778:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48225:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34769:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66648:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66959:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66914:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66991:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41823:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67033:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66735:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33481:639;33566:4;33905:10;33890:25;;:11;:25;;;;:102;;;;33982:10;33967:25;;:11;:25;;;;33890:102;:179;;;;34059:10;34044:25;;:11;:25;;;;33890:179;33870:199;;33481:639;;;:::o;34383:100::-;34437:13;34470:5;34463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34383:100;:::o;40874:218::-;40950:7;40975:16;40983:7;40975;:16::i;:::-;40970:64;;41000:34;;;;;;;;;;;;;;40970:64;41054:15;:24;41070:7;41054:24;;;;;;;;;;;:30;;;;;;;;;;;;41047:37;;40874:218;;;:::o;40307:408::-;40396:13;40412:16;40420:7;40412;:16::i;:::-;40396:32;;40468:5;40445:28;;:19;:17;:19::i;:::-;:28;;;40441:175;;40493:44;40510:5;40517:19;:17;:19::i;:::-;40493:16;:44::i;:::-;40488:128;;40565:35;;;;;;;;;;;;;;40488:128;40441:175;40661:2;40628:15;:24;40644:7;40628:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40699:7;40695:2;40679:28;;40688:5;40679:28;;;;;;;;;;;;40385:330;40307:408;;:::o;67092:53::-;;;;;;;;;;;;;;;;;:::o;30134:323::-;30195:7;30423:15;:13;:15::i;:::-;30408:12;;30392:13;;:28;:46;30385:53;;30134:323;:::o;44513:2825::-;44655:27;44685;44704:7;44685:18;:27::i;:::-;44655:57;;44770:4;44729:45;;44745:19;44729:45;;;44725:86;;44783:28;;;;;;;;;;;;;;44725:86;44825:27;44854:23;44881:35;44908:7;44881:26;:35::i;:::-;44824:92;;;;45016:68;45041:15;45058:4;45064:19;:17;:19::i;:::-;45016:24;:68::i;:::-;45011:180;;45104:43;45121:4;45127:19;:17;:19::i;:::-;45104:16;:43::i;:::-;45099:92;;45156:35;;;;;;;;;;;;;;45099:92;45011:180;45222:1;45208:16;;:2;:16;;;45204:52;;45233:23;;;;;;;;;;;;;;45204:52;45269:43;45291:4;45297:2;45301:7;45310:1;45269:21;:43::i;:::-;45405:15;45402:160;;;45545:1;45524:19;45517:30;45402:160;45942:18;:24;45961:4;45942:24;;;;;;;;;;;;;;;;45940:26;;;;;;;;;;;;46011:18;:22;46030:2;46011:22;;;;;;;;;;;;;;;;46009:24;;;;;;;;;;;46333:146;46370:2;46419:45;46434:4;46440:2;46444:19;46419:14;:45::i;:::-;26533:8;46391:73;46333:18;:146::i;:::-;46304:17;:26;46322:7;46304:26;;;;;;;;;;;:175;;;;46650:1;26533:8;46599:19;:47;:52;46595:627;;46672:19;46704:1;46694:7;:11;46672:33;;46861:1;46827:17;:30;46845:11;46827:30;;;;;;;;;;;;:35;46823:384;;46965:13;;46950:11;:28;46946:242;;47145:19;47112:17;:30;47130:11;47112:30;;;;;;;;;;;:52;;;;46946:242;46823:384;46653:569;46595:627;47269:7;47265:2;47250:27;;47259:4;47250:27;;;;;;;;;;;;47288:42;47309:4;47315:2;47319:7;47328:1;47288:20;:42::i;:::-;44644:2694;;;44513:2825;;;:::o;66869:38::-;;;;:::o;69700:186::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;69764:12:::2;69782:10;:15;;69805:21;69782:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69763:68;;;69850:7;69842:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;69752:134;1768:1:::1;2722:7;:22;;;;69700:186::o:0;47434:193::-;47580:39;47597:4;47603:2;47607:7;47580:39;;;;;;;;;;;;:16;:39::i;:::-;47434:193;;;:::o;66826:36::-;;;;:::o;67260:100::-;4773:13;:11;:13::i;:::-;67345:7:::1;67329:13;:23;;;;;;:::i;:::-;;67260:100:::0;:::o;69343:111::-;4773:13;:11;:13::i;:::-;69433::::1;69421:9;:25;;;;69343:111:::0;:::o;35776:152::-;35848:7;35891:27;35910:7;35891:18;:27::i;:::-;35868:52;;35776:152;;;:::o;31318:233::-;31390:7;31431:1;31414:19;;:5;:19;;;31410:60;;31442:28;;;;;;;;;;;;;;31410:60;25477:13;31488:18;:25;31507:5;31488:25;;;;;;;;;;;;;;;;:55;31481:62;;31318:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;69601:87::-;4773:13;:11;:13::i;:::-;69669:11:::1;;;;;;;;;;;69668:12;69654:11;;:26;;;;;;;;;;;;;;;;;;69601:87::o:0;4887:::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;69158:83::-;69201:7;69228:5;;69221:12;;69158:83;:::o;69249:86::-;4773:13;:11;:13::i;:::-;69321:6:::1;69313:5;:14;;;;69249:86:::0;:::o;69463:130::-;4773:13;:11;:13::i;:::-;69568:17:::1;69549:16;:36;;;;69463:130:::0;:::o;34559:104::-;34615:13;34648:7;34641:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34559:104;:::o;66682:46::-;;;;:::o;67488:1662::-;67545:12;67560:5;;67545:20;;67576:11;67630:1;67618:9;;:13;;;;:::i;:::-;67610:5;67592:15;;:23;;;;:::i;:::-;:39;67591:108;;;;;67682:16;;67650:17;:29;67668:10;67650:29;;;;;;;;;;;;;;;;:48;67591:108;67576:124;;67717:6;67713:1341;;;67749:11;;;;;;;;;;;67741:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;67833:9;;67824:5;67808:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;67800:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;67886:8;;67877:5;:17;;67869:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;67965:17;:29;67983:10;67965:29;;;;;;;;;;;;;;;;67946:16;;:48;;;;:::i;:::-;67936:5;:59;67933:638;;68118:4;68085:17;:29;68103:10;68085:29;;;;;;;;;;;;;;;;68066:16;;:48;;;;:::i;:::-;68065:57;;;;:::i;:::-;68056:4;68048:5;:12;;;;:::i;:::-;68047:76;;;;:::i;:::-;68034:9;:89;;68026:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;68208:16;;68176:17;:29;68194:10;68176:29;;;;;;;;;;;;;;;:48;;;;68259:16;;68240:15;;:35;;;;;;;:::i;:::-;;;;;;;;67933:638;;;68341:17;:29;68359:10;68341:29;;;;;;;;;;;;;;;;68322:16;;:48;;;;:::i;:::-;68313:5;:58;68310:261;;;68423:1;68410:9;:14;;68402:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;68510:5;68477:17;:29;68495:10;68477:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;68550:5;68531:15;;:24;;;;;;;:::i;:::-;;;;;;;;68310:261;67933:638;67713:1341;;;68615:11;;;;;;;;;;;68607:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;68712:12;;68703:5;68670:18;:30;68689:10;68670:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;68662:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;68799:4;68791:5;:12;;;;:::i;:::-;68778:9;:25;;68770:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;68884:9;;68875:5;68859:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;68851:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;68933:8;;68924:5;:17;;68916:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;68998:9;68984:23;;:10;:23;;;68976:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67713:1341;69098:5;69064:18;:30;69083:10;69064:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;69114:28;69124:10;69136:5;69114:9;:28::i;:::-;67534:1616;;67488:1662;:::o;41432:234::-;41579:8;41527:18;:39;41546:19;:17;:19::i;:::-;41527:39;;;;;;;;;;;;;;;:49;41567:8;41527:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41639:8;41603:55;;41618:19;:17;:19::i;:::-;41603:55;;;41649:8;41603:55;;;;;;:::i;:::-;;;;;;;;41432:234;;:::o;66778:41::-;;;;:::o;48225:407::-;48400:31;48413:4;48419:2;48423:7;48400:12;:31::i;:::-;48464:1;48446:2;:14;;;:19;48442:183;;48485:56;48516:4;48522:2;48526:7;48535:5;48485:30;:56::i;:::-;48480:145;;48569:40;;;;;;;;;;;;;;48480:145;48442:183;48225:407;;;;:::o;34769:318::-;34842:13;34873:16;34881:7;34873;:16::i;:::-;34868:59;;34898:29;;;;;;;;;;;;;;34868:59;34940:21;34964:10;:8;:10::i;:::-;34940:34;;35017:1;34998:7;34992:21;:26;:87;;;;;;;;;;;;;;;;;35045:7;35054:18;35064:7;35054:9;:18::i;:::-;35028:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34992:87;34985:94;;;34769:318;;;:::o;66648:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66959:25::-;;;;;;;;;;;;;:::o;66914:38::-;;;;:::o;66991:33::-;;;;:::o;41823:164::-;41920:4;41944:18;:25;41963:5;41944:25;;;;;;;;;;;;;;;:35;41970:8;41944:35;;;;;;;;;;;;;;;;;;;;;;;;;41937:42;;41823:164;;;;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;::::0;5874:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;67033:52::-;;;;;;;;;;;;;;;;;:::o;66735:36::-;;;;:::o;42245:282::-;42310:4;42366:7;42347:15;:13;:15::i;:::-;:26;;:66;;;;;42400:13;;42390:7;:23;42347:66;:153;;;;;42499:1;26253:8;42451:17;:26;42469:7;42451:26;;;;;;;;;;;;:44;:49;42347:153;42327:173;;42245:282;;;:::o;64553:105::-;64613:7;64640:10;64633:17;;64553:105;:::o;29650:92::-;29706:7;29650:92;:::o;36931:1275::-;36998:7;37018:12;37033:7;37018:22;;37101:4;37082:15;:13;:15::i;:::-;:23;37078:1061;;37135:13;;37128:4;:20;37124:1015;;;37173:14;37190:17;:23;37208:4;37190:23;;;;;;;;;;;;37173:40;;37307:1;26253:8;37279:6;:24;:29;37275:845;;37944:113;37961:1;37951:6;:11;37944:113;;38004:17;:25;38022:6;;;;;;;38004:25;;;;;;;;;;;;37995:34;;37944:113;;;38090:6;38083:13;;;;;;37275:845;37150:989;37124:1015;37078:1061;38167:31;;;;;;;;;;;;;;36931:1275;;;;:::o;43408:485::-;43510:27;43539:23;43580:38;43621:15;:24;43637:7;43621:24;;;;;;;;;;;43580:65;;43798:18;43775:41;;43855:19;43849:26;43830:45;;43760:126;43408:485;;;:::o;42636:659::-;42785:11;42950:16;42943:5;42939:28;42930:37;;43110:16;43099:9;43095:32;43082:45;;43260:15;43249:9;43246:30;43238:5;43227:9;43224:20;43221:56;43211:66;;42636:659;;;;;:::o;49294:159::-;;;;;:::o;63862:311::-;63997:7;64017:16;26657:3;64043:19;:41;;64017:68;;26657:3;64111:31;64122:4;64128:2;64132:9;64111:10;:31::i;:::-;64103:40;;:62;;64096:69;;;63862:311;;;;;:::o;38754:450::-;38834:14;39002:16;38995:5;38991:28;38982:37;;39179:5;39165:11;39140:23;39136:41;39133:52;39126:5;39123:63;39113:73;;38754:450;;;;:::o;50118:158::-;;;;;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;58385:112::-;58462:27;58472:2;58476:8;58462:27;;;;;;;;;;;;:9;:27::i;:::-;58385:112;;:::o;50716:716::-;50879:4;50925:2;50900:45;;;50946:19;:17;:19::i;:::-;50967:4;50973:7;50982:5;50900:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50896:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:1;51183:6;:13;:18;51179:235;;51229:40;;;;;;;;;;;;;;51179:235;51372:6;51366:13;51357:6;51353:2;51349:15;51342:38;50896:529;51069:54;;;51059:64;;;:6;:64;;;;51052:71;;;50716:716;;;;;;:::o;67368:112::-;67428:13;67459;67452:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67368:112;:::o;64760:1745::-;64825:17;65259:4;65252;65246:11;65242:22;65351:1;65345:4;65338:15;65426:4;65423:1;65419:12;65412:19;;65508:1;65503:3;65496:14;65612:3;65851:5;65833:428;65859:1;65833:428;;;65899:1;65894:3;65890:11;65883:18;;66070:2;66064:4;66060:13;66056:2;66052:22;66047:3;66039:36;66164:2;66158:4;66154:13;66146:21;;66231:4;65833:428;66221:25;65833:428;65837:21;66300:3;66295;66291:13;66415:4;66410:3;66406:14;66399:21;;66480:6;66475:3;66468:19;64864:1634;;;64760:1745;;;:::o;63563:147::-;63700:6;63563:147;;;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;57612:689::-;57743:19;57749:2;57753:8;57743:5;:19::i;:::-;57822:1;57804:2;:14;;;:19;57800:483;;57844:11;57858:13;;57844:27;;57890:13;57912:8;57906:3;:14;57890:30;;57939:233;57970:62;58009:1;58013:2;58017:7;;;;;;58026:5;57970:30;:62::i;:::-;57965:167;;58068:40;;;;;;;;;;;;;;57965:167;58167:3;58159:5;:11;57939:233;;58254:3;58237:13;;:20;58233:34;;58259:8;;;58233:34;57825:458;;57800:483;57612:689;;;:::o;51894:2966::-;51967:20;51990:13;;51967:36;;52030:1;52018:8;:13;52014:44;;52040:18;;;;;;;;;;;;;;52014:44;52071:61;52101:1;52105:2;52109:12;52123:8;52071:21;:61::i;:::-;52615:1;25615:2;52585:1;:26;;52584:32;52572:8;:45;52546:18;:22;52565:2;52546:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;52894:139;52931:2;52985:33;53008:1;53012:2;53016:1;52985:14;:33::i;:::-;52952:30;52973:8;52952:20;:30::i;:::-;:66;52894:18;:139::i;:::-;52860:17;:31;52878:12;52860:31;;;;;;;;;;;:173;;;;53050:16;53081:11;53110:8;53095:12;:23;53081:37;;53631:16;53627:2;53623:25;53611:37;;54003:12;53963:8;53922:1;53860:25;53801:1;53740;53713:335;54374:1;54360:12;54356:20;54314:346;54415:3;54406:7;54403:16;54314:346;;54633:7;54623:8;54620:1;54593:25;54590:1;54587;54582:59;54468:1;54459:7;54455:15;54444:26;;54314:346;;;54318:77;54705:1;54693:8;:13;54689:45;;54715:19;;;;;;;;;;;;;;54689:45;54767:3;54751:13;:19;;;;52320:2462;;54792:60;54821:1;54825:2;54829:12;54843:8;54792:20;:60::i;:::-;51956:2904;51894:2966;;:::o;39306:324::-;39376:14;39609:1;39599:8;39596:15;39570:24;39566:46;39556:56;;39306:324;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:181::-;12743:33;12739:1;12731:6;12727:14;12720:57;12603:181;:::o;12790:366::-;12932:3;12953:67;13017:2;13012:3;12953:67;:::i;:::-;12946:74;;13029:93;13118:3;13029:93;:::i;:::-;13147:2;13142:3;13138:12;13131:19;;12790:366;;;:::o;13162:419::-;13328:4;13366:2;13355:9;13351:18;13343:26;;13415:9;13409:4;13405:20;13401:1;13390:9;13386:17;13379:47;13443:131;13569:4;13443:131;:::i;:::-;13435:139;;13162:419;;;:::o;13587:147::-;13688:11;13725:3;13710:18;;13587:147;;;;:::o;13740:114::-;;:::o;13860:398::-;14019:3;14040:83;14121:1;14116:3;14040:83;:::i;:::-;14033:90;;14132:93;14221:3;14132:93;:::i;:::-;14250:1;14245:3;14241:11;14234:18;;13860:398;;;:::o;14264:379::-;14448:3;14470:147;14613:3;14470:147;:::i;:::-;14463:154;;14634:3;14627:10;;14264:379;;;:::o;14649:166::-;14789:18;14785:1;14777:6;14773:14;14766:42;14649:166;:::o;14821:366::-;14963:3;14984:67;15048:2;15043:3;14984:67;:::i;:::-;14977:74;;15060:93;15149:3;15060:93;:::i;:::-;15178:2;15173:3;15169:12;15162:19;;14821:366;;;:::o;15193:419::-;15359:4;15397:2;15386:9;15382:18;15374:26;;15446:9;15440:4;15436:20;15432:1;15421:9;15417:17;15410:47;15474:131;15600:4;15474:131;:::i;:::-;15466:139;;15193:419;;;:::o;15618:141::-;15667:4;15690:3;15682:11;;15713:3;15710:1;15703:14;15747:4;15744:1;15734:18;15726:26;;15618:141;;;:::o;15765:93::-;15802:6;15849:2;15844;15837:5;15833:14;15829:23;15819:33;;15765:93;;;:::o;15864:107::-;15908:8;15958:5;15952:4;15948:16;15927:37;;15864:107;;;;:::o;15977:393::-;16046:6;16096:1;16084:10;16080:18;16119:97;16149:66;16138:9;16119:97;:::i;:::-;16237:39;16267:8;16256:9;16237:39;:::i;:::-;16225:51;;16309:4;16305:9;16298:5;16294:21;16285:30;;16358:4;16348:8;16344:19;16337:5;16334:30;16324:40;;16053:317;;15977:393;;;;;:::o;16376:60::-;16404:3;16425:5;16418:12;;16376:60;;;:::o;16442:142::-;16492:9;16525:53;16543:34;16552:24;16570:5;16552:24;:::i;:::-;16543:34;:::i;:::-;16525:53;:::i;:::-;16512:66;;16442:142;;;:::o;16590:75::-;16633:3;16654:5;16647:12;;16590:75;;;:::o;16671:269::-;16781:39;16812:7;16781:39;:::i;:::-;16842:91;16891:41;16915:16;16891:41;:::i;:::-;16883:6;16876:4;16870:11;16842:91;:::i;:::-;16836:4;16829:105;16747:193;16671:269;;;:::o;16946:73::-;16991:3;16946:73;:::o;17025:189::-;17102:32;;:::i;:::-;17143:65;17201:6;17193;17187:4;17143:65;:::i;:::-;17078:136;17025:189;;:::o;17220:186::-;17280:120;17297:3;17290:5;17287:14;17280:120;;;17351:39;17388:1;17381:5;17351:39;:::i;:::-;17324:1;17317:5;17313:13;17304:22;;17280:120;;;17220:186;;:::o;17412:543::-;17513:2;17508:3;17505:11;17502:446;;;17547:38;17579:5;17547:38;:::i;:::-;17631:29;17649:10;17631:29;:::i;:::-;17621:8;17617:44;17814:2;17802:10;17799:18;17796:49;;;17835:8;17820:23;;17796:49;17858:80;17914:22;17932:3;17914:22;:::i;:::-;17904:8;17900:37;17887:11;17858:80;:::i;:::-;17517:431;;17502:446;17412:543;;;:::o;17961:117::-;18015:8;18065:5;18059:4;18055:16;18034:37;;17961:117;;;;:::o;18084:169::-;18128:6;18161:51;18209:1;18205:6;18197:5;18194:1;18190:13;18161:51;:::i;:::-;18157:56;18242:4;18236;18232:15;18222:25;;18135:118;18084:169;;;;:::o;18258:295::-;18334:4;18480:29;18505:3;18499:4;18480:29;:::i;:::-;18472:37;;18542:3;18539:1;18535:11;18529:4;18526:21;18518:29;;18258:295;;;;:::o;18558:1395::-;18675:37;18708:3;18675:37;:::i;:::-;18777:18;18769:6;18766:30;18763:56;;;18799:18;;:::i;:::-;18763:56;18843:38;18875:4;18869:11;18843:38;:::i;:::-;18928:67;18988:6;18980;18974:4;18928:67;:::i;:::-;19022:1;19046:4;19033:17;;19078:2;19070:6;19067:14;19095:1;19090:618;;;;19752:1;19769:6;19766:77;;;19818:9;19813:3;19809:19;19803:26;19794:35;;19766:77;19869:67;19929:6;19922:5;19869:67;:::i;:::-;19863:4;19856:81;19725:222;19060:887;;19090:618;19142:4;19138:9;19130:6;19126:22;19176:37;19208:4;19176:37;:::i;:::-;19235:1;19249:208;19263:7;19260:1;19257:14;19249:208;;;19342:9;19337:3;19333:19;19327:26;19319:6;19312:42;19393:1;19385:6;19381:14;19371:24;;19440:2;19429:9;19425:18;19412:31;;19286:4;19283:1;19279:12;19274:17;;19249:208;;;19485:6;19476:7;19473:19;19470:179;;;19543:9;19538:3;19534:19;19528:26;19586:48;19628:4;19620:6;19616:17;19605:9;19586:48;:::i;:::-;19578:6;19571:64;19493:156;19470:179;19695:1;19691;19683:6;19679:14;19675:22;19669:4;19662:36;19097:611;;;19060:887;;18650:1303;;;18558:1395;;:::o;19959:180::-;20007:77;20004:1;19997:88;20104:4;20101:1;20094:15;20128:4;20125:1;20118:15;20145:191;20185:3;20204:20;20222:1;20204:20;:::i;:::-;20199:25;;20238:20;20256:1;20238:20;:::i;:::-;20233:25;;20281:1;20278;20274:9;20267:16;;20302:3;20299:1;20296:10;20293:36;;;20309:18;;:::i;:::-;20293:36;20145:191;;;;:::o;20342:170::-;20482:22;20478:1;20470:6;20466:14;20459:46;20342:170;:::o;20518:366::-;20660:3;20681:67;20745:2;20740:3;20681:67;:::i;:::-;20674:74;;20757:93;20846:3;20757:93;:::i;:::-;20875:2;20870:3;20866:12;20859:19;;20518:366;;;:::o;20890:419::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:157::-;21455:9;21451:1;21443:6;21439:14;21432:33;21315:157;:::o;21478:365::-;21620:3;21641:66;21705:1;21700:3;21641:66;:::i;:::-;21634:73;;21716:93;21805:3;21716:93;:::i;:::-;21834:2;21829:3;21825:12;21818:19;;21478:365;;;:::o;21849:419::-;22015:4;22053:2;22042:9;22038:18;22030:26;;22102:9;22096:4;22092:20;22088:1;22077:9;22073:17;22066:47;22130:131;22256:4;22130:131;:::i;:::-;22122:139;;21849:419;;;:::o;22274:169::-;22414:21;22410:1;22402:6;22398:14;22391:45;22274:169;:::o;22449:366::-;22591:3;22612:67;22676:2;22671:3;22612:67;:::i;:::-;22605:74;;22688:93;22777:3;22688:93;:::i;:::-;22806:2;22801:3;22797:12;22790:19;;22449:366;;;:::o;22821:419::-;22987:4;23025:2;23014:9;23010:18;23002:26;;23074:9;23068:4;23064:20;23060:1;23049:9;23045:17;23038:47;23102:131;23228:4;23102:131;:::i;:::-;23094:139;;22821:419;;;:::o;23246:194::-;23286:4;23306:20;23324:1;23306:20;:::i;:::-;23301:25;;23340:20;23358:1;23340:20;:::i;:::-;23335:25;;23384:1;23381;23377:9;23369:17;;23408:1;23402:4;23399:11;23396:37;;;23413:18;;:::i;:::-;23396:37;23246:194;;;;:::o;23446:410::-;23486:7;23509:20;23527:1;23509:20;:::i;:::-;23504:25;;23543:20;23561:1;23543:20;:::i;:::-;23538:25;;23598:1;23595;23591:9;23620:30;23638:11;23620:30;:::i;:::-;23609:41;;23799:1;23790:7;23786:15;23783:1;23780:22;23760:1;23753:9;23733:83;23710:139;;23829:18;;:::i;:::-;23710:139;23494:362;23446:410;;;;:::o;23862:182::-;24002:34;23998:1;23990:6;23986:14;23979:58;23862:182;:::o;24050:366::-;24192:3;24213:67;24277:2;24272:3;24213:67;:::i;:::-;24206:74;;24289:93;24378:3;24289:93;:::i;:::-;24407:2;24402:3;24398:12;24391:19;;24050:366;;;:::o;24422:419::-;24588:4;24626:2;24615:9;24611:18;24603:26;;24675:9;24669:4;24665:20;24661:1;24650:9;24646:17;24639:47;24703:131;24829:4;24703:131;:::i;:::-;24695:139;;24422:419;;;:::o;24847:180::-;24987:32;24983:1;24975:6;24971:14;24964:56;24847:180;:::o;25033:366::-;25175:3;25196:67;25260:2;25255:3;25196:67;:::i;:::-;25189:74;;25272:93;25361:3;25272:93;:::i;:::-;25390:2;25385:3;25381:12;25374:19;;25033:366;;;:::o;25405:419::-;25571:4;25609:2;25598:9;25594:18;25586:26;;25658:9;25652:4;25648:20;25644:1;25633:9;25629:17;25622:47;25686:131;25812:4;25686:131;:::i;:::-;25678:139;;25405:419;;;:::o;25830:180::-;25970:32;25966:1;25958:6;25954:14;25947:56;25830:180;:::o;26016:366::-;26158:3;26179:67;26243:2;26238:3;26179:67;:::i;:::-;26172:74;;26255:93;26344:3;26255:93;:::i;:::-;26373:2;26368:3;26364:12;26357:19;;26016:366;;;:::o;26388:419::-;26554:4;26592:2;26581:9;26577:18;26569:26;;26641:9;26635:4;26631:20;26627:1;26616:9;26612:17;26605:47;26669:131;26795:4;26669:131;:::i;:::-;26661:139;;26388:419;;;:::o;26813:148::-;26915:11;26952:3;26937:18;;26813:148;;;;:::o;26967:390::-;27073:3;27101:39;27134:5;27101:39;:::i;:::-;27156:89;27238:6;27233:3;27156:89;:::i;:::-;27149:96;;27254:65;27312:6;27307:3;27300:4;27293:5;27289:16;27254:65;:::i;:::-;27344:6;27339:3;27335:16;27328:23;;27077:280;26967:390;;;;:::o;27363:435::-;27543:3;27565:95;27656:3;27647:6;27565:95;:::i;:::-;27558:102;;27677:95;27768:3;27759:6;27677:95;:::i;:::-;27670:102;;27789:3;27782:10;;27363:435;;;;;:::o;27804:225::-;27944:34;27940:1;27932:6;27928:14;27921:58;28013:8;28008:2;28000:6;27996:15;27989:33;27804:225;:::o;28035:366::-;28177:3;28198:67;28262:2;28257:3;28198:67;:::i;:::-;28191:74;;28274:93;28363:3;28274:93;:::i;:::-;28392:2;28387:3;28383:12;28376:19;;28035:366;;;:::o;28407:419::-;28573:4;28611:2;28600:9;28596:18;28588:26;;28660:9;28654:4;28650:20;28646:1;28635:9;28631:17;28624:47;28688:131;28814:4;28688:131;:::i;:::-;28680:139;;28407:419;;;:::o;28832:182::-;28972:34;28968:1;28960:6;28956:14;28949:58;28832:182;:::o;29020:366::-;29162:3;29183:67;29247:2;29242:3;29183:67;:::i;:::-;29176:74;;29259:93;29348:3;29259:93;:::i;:::-;29377:2;29372:3;29368:12;29361:19;;29020:366;;;:::o;29392:419::-;29558:4;29596:2;29585:9;29581:18;29573:26;;29645:9;29639:4;29635:20;29631:1;29620:9;29616:17;29609:47;29673:131;29799:4;29673:131;:::i;:::-;29665:139;;29392:419;;;:::o;29817:98::-;29868:6;29902:5;29896:12;29886:22;;29817:98;;;:::o;29921:168::-;30004:11;30038:6;30033:3;30026:19;30078:4;30073:3;30069:14;30054:29;;29921:168;;;;:::o;30095:373::-;30181:3;30209:38;30241:5;30209:38;:::i;:::-;30263:70;30326:6;30321:3;30263:70;:::i;:::-;30256:77;;30342:65;30400:6;30395:3;30388:4;30381:5;30377:16;30342:65;:::i;:::-;30432:29;30454:6;30432:29;:::i;:::-;30427:3;30423:39;30416:46;;30185:283;30095:373;;;;:::o;30474:640::-;30669:4;30707:3;30696:9;30692:19;30684:27;;30721:71;30789:1;30778:9;30774:17;30765:6;30721:71;:::i;:::-;30802:72;30870:2;30859:9;30855:18;30846:6;30802:72;:::i;:::-;30884;30952:2;30941:9;30937:18;30928:6;30884:72;:::i;:::-;31003:9;30997:4;30993:20;30988:2;30977:9;30973:18;30966:48;31031:76;31102:4;31093:6;31031:76;:::i;:::-;31023:84;;30474:640;;;;;;;:::o;31120:141::-;31176:5;31207:6;31201:13;31192:22;;31223:32;31249:5;31223:32;:::i;:::-;31120:141;;;;:::o;31267:349::-;31336:6;31385:2;31373:9;31364:7;31360:23;31356:32;31353:119;;;31391:79;;:::i;:::-;31353:119;31511:1;31536:63;31591:7;31582:6;31571:9;31567:22;31536:63;:::i;:::-;31526:73;;31482:127;31267:349;;;;:::o
Swarm Source
ipfs://e706d5b409631a433bba6c1d605ed05bd522c46e842bc63bee19db74db61106b
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.