Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 14938947 | 975 days ago | IN | 0 ETH | 0.00122936 | ||||
Mint | 14938402 | 975 days ago | IN | 0 ETH | 0.0020593 | ||||
Mint | 14938342 | 975 days ago | IN | 0 ETH | 0.00089803 | ||||
Mint | 14938322 | 975 days ago | IN | 0 ETH | 0.0036648 | ||||
Mint | 14938314 | 975 days ago | IN | 0 ETH | 0.00281625 | ||||
Mint | 14938306 | 975 days ago | IN | 0 ETH | 0.00255229 | ||||
Mint | 14938195 | 975 days ago | IN | 0 ETH | 0.0047872 | ||||
Mint | 14938190 | 975 days ago | IN | 0 ETH | 0.00555445 | ||||
Mint | 14938175 | 975 days ago | IN | 0 ETH | 0.00369805 | ||||
Mint | 14938168 | 975 days ago | IN | 0 ETH | 0.00269722 | ||||
Mint | 14938158 | 975 days ago | IN | 0 ETH | 0.0033441 | ||||
Mint | 14938158 | 975 days ago | IN | 0 ETH | 0.00383566 | ||||
Mint | 14938158 | 975 days ago | IN | 0 ETH | 0.00383566 | ||||
Mint | 14938154 | 975 days ago | IN | 0 ETH | 0.0036638 | ||||
Mint | 14938154 | 975 days ago | IN | 0 ETH | 0.00300548 | ||||
Mint | 14938150 | 975 days ago | IN | 0 ETH | 0.0031263 | ||||
Mint | 14938144 | 975 days ago | IN | 0 ETH | 0.00271644 | ||||
Mint | 14938141 | 975 days ago | IN | 0 ETH | 0.00271931 | ||||
Mint | 14938137 | 975 days ago | IN | 0 ETH | 0.00265183 | ||||
Mint | 14938052 | 975 days ago | IN | 0 ETH | 0.00268828 | ||||
Mint | 14937719 | 976 days ago | IN | 0 ETH | 0.00312922 | ||||
Mint | 14937704 | 976 days ago | IN | 0 ETH | 0.00313195 | ||||
Mint | 14937695 | 976 days ago | IN | 0 ETH | 0.00328013 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Goot
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // // ▄████ ▒█████ ▒█████ ▄▄▄█████▓ // ██▒ ▀█▒▒██▒ ██▒▒██▒ ██▒▓ ██▒ ▓▒ //██░▄▄▄░▒██░ ██▒▒██░ ██▒▒ ▓██░ ▒░ // ▓█ ██▓▒██ ██░▒██ ██░░ ▓██▓ ░ // ▓███▀▒░ ████▓▒░░ ████▓▒░ ▒██▒ ░ // ░▒ ▒ ░ ▒░▒░▒░ ░ ▒░▒░▒░ ▒ ░░ // ░ ░ ░ ▒ ▒░ ░ ▒ ▒░ ░ //░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ▒ ░ // ░ ░ ░ ░ ░ // // // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 offset; do { emit Transfer(address(0), to, startTokenId + offset++); } while (offset < quantity); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/goot.sol // // ▄████ ▒█████ ▒█████ ▄▄▄█████▓ // ██▒ ▀█▒▒██▒ ██▒▒██▒ ██▒▓ ██▒ ▓▒ //▒██░▄▄▄░▒██░ ██▒▒██░ ██▒▒ ▓██░ ▒░ //░▓█ ██▓▒██ ██░▒██ ██░░ ▓██▓ ░ //░▒▓███▀▒░ ████▓▒░░ ████▓▒░ ▒██▒ ░ // ░▒ ▒ ░ ▒░▒░▒░ ░ ▒░▒░▒░ ▒ ░░ // ░ ░ ░ ▒ ▒░ ░ ▒ ▒░ ░ //░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ▒ ░ // ░ ░ ░ ░ ░ // /// right click save @karlpunx pragma solidity ^0.8.9; contract Goot is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmSsKFcbGNxogYYBRkpB9hwRM4g2Rca7k1sScCjvyWkgci"; uint256 public maxSupply = 9999; uint256 public MAX_MINTS_PER_TX = 5; uint256 public FREE_MINTS_PER_TX = 5; uint256 public PUBLIC_SALE_PRICE = 0.01 ether; uint256 public TOTAL_FREE_MINTS = 7999; bool public isPublicSaleActive = true; constructor( ) ERC721A("Goot", "Goot") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require( totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded" ); require(numberOfTokens <= MAX_MINTS_PER_TX, "Maximum per tx exceeded"); if((totalSupply() + numberOfTokens) > TOTAL_FREE_MINTS || numberOfTokens > FREE_MINTS_PER_TX){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity, address user) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(user, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { TOTAL_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603581526020016200391c60359139600a9080519060200190620000359291906200023b565b5061270f600b556005600c556005600d55662386f26fc10000600e55611f3f600f556001601060006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600481526020017f476f6f74000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f476f6f74000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001049291906200023b565b5080600390805190602001906200011d9291906200023b565b506200012e6200016460201b60201c565b6000819055505050620001566200014a6200016d60201b60201c565b6200017560201b60201c565b600160098190555062000350565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000249906200031a565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033357607f821691505b602082108114156200034a5762000349620002eb565b5b50919050565b6135bc80620003606000396000f3fe6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247a565b610765565b60405161021c91906124c2565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b6040516102479190612576565b60405180910390f35b34801561025c57600080fd5b50610265610889565b60405161027291906125b1565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906125f8565b61088f565b6040516102af9190612666565b60405180910390f35b3480156102c457600080fd5b506102cd61090b565b6040516102da91906125b1565b60405180910390f35b3480156102ef57600080fd5b5061030a600480360381019061030591906126ad565b610911565b005b34801561031857600080fd5b50610333600480360381019061032e91906125f8565b610a52565b005b34801561034157600080fd5b5061034a610ad8565b60405161035791906125b1565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906125f8565b610aef565b005b34801561039557600080fd5b5061039e610b75565b6040516103ab91906124c2565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906126ed565b610b88565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061276c565b610b98565b005b34801561041257600080fd5b5061041b610c31565b005b34801561042957600080fd5b50610444600480360381019061043f91906126ed565b610d0f565b005b34801561045257600080fd5b5061046d600480360381019061046891906128ce565b610d2f565b005b34801561047b57600080fd5b50610496600480360381019061049191906125f8565b610dc5565b6040516104a39190612666565b60405180910390f35b3480156104b857600080fd5b506104c1610dd7565b6040516104ce91906125b1565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612917565b610ddd565b60405161050b91906125b1565b60405180910390f35b34801561052057600080fd5b50610529610e72565b005b34801561053757600080fd5b50610540610efa565b60405161054d9190612666565b60405180910390f35b34801561056257600080fd5b5061056b610f24565b6040516105789190612576565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906125f8565b610fb6565b005b6105c460048036038101906105bf91906125f8565b61103c565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612944565b6111ad565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612a25565b611325565b005b34801561062457600080fd5b5061062d611398565b60405161063a91906125b1565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906125f8565b61139e565b6040516106779190612576565b60405180910390f35b34801561068c57600080fd5b5061069561141a565b6040516106a29190612576565b60405180910390f35b3480156106b757600080fd5b506106c06114a8565b6040516106cd91906125b1565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612aa8565b6114ae565b60405161070a91906124c2565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612ae8565b611542565b005b34801561074857600080fd5b50610763600480360381019061075e9190612917565b611666565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612b57565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612b57565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a8261175e565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091c826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff1661093d61188b565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576109698161096461188b565b6114ae565b61099f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a5a611893565b73ffffffffffffffffffffffffffffffffffffffff16610a78610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590612bd5565b60405180910390fd5b80600f8190555050565b6000610ae261189b565b6001546000540303905090565b610af7611893565b73ffffffffffffffffffffffffffffffffffffffff16610b15610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290612bd5565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b610b938383836118a4565b505050565b610ba0611893565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612bd5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610c39611893565b73ffffffffffffffffffffffffffffffffffffffff16610c57610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612bd5565b60405180910390fd5b60026009541415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612c41565b60405180910390fd5b6002600981905550610d053347611c6c565b6001600981905550565b610d2a83838360405180602001604052806000815250611325565b505050565b610d37611893565b73ffffffffffffffffffffffffffffffffffffffff16610d55610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612bd5565b60405180910390fd5b80600a9080519060200190610dc192919061236b565b5050565b6000610dd0826117bd565b9050919050565b600d5481565b600080610de983611d60565b1415610e21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e7a611893565b73ffffffffffffffffffffffffffffffffffffffff16610e98610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612bd5565b60405180910390fd5b610ef86000611d6a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3390612b57565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f90612b57565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b5050505050905090565b610fbe611893565b73ffffffffffffffffffffffffffffffffffffffff16610fdc610efa565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990612bd5565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff1661108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612cad565b60405180910390fd5b600b5481611097610ad8565b6110a19190612cfc565b11156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612d9e565b60405180910390fd5b600c54811115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612e0a565b60405180910390fd5b600f5481611133610ad8565b61113d9190612cfc565b118061114a5750600d5481115b156111a0573481600e5461115e9190612e2a565b111561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612ed0565b60405180910390fd5b5b6111aa3382611e30565b50565b6111b561188b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061122761188b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d461188b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131991906124c2565b60405180910390a35050565b6113308484846118a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113925761135b84848484611e4e565b611391576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606113a98261175e565b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90612f62565b60405180910390fd5b600a6113f383611fae565b6040516020016114049291906130ea565b6040516020818303038152906040529050919050565b600a805461142790612b57565b80601f016020809104026020016040519081016040528092919081815260200182805461145390612b57565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154a611893565b73ffffffffffffffffffffffffffffffffffffffff16611568610efa565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590612bd5565b60405180910390fd5b60008211611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890613170565b60405180910390fd5b600b548261160d610ad8565b6116179190612cfc565b1115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90612d9e565b60405180910390fd5b6116628183611e30565b5050565b61166e611893565b73ffffffffffffffffffffffffffffffffffffffff1661168c610efa565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990612bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613202565b60405180910390fd5b61175b81611d6a565b50565b60008161176961189b565b11158015611778575060005482105b80156117b6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117cc61189b565b11611854576000548110156118535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611851575b600081141561184757600460008360019003935083815260200190815260200160002054905061181c565b8092505050611886565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b60006118af826117bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611916576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661196f61188b565b73ffffffffffffffffffffffffffffffffffffffff16148061199e575061199d8661199861188b565b6114ae565b5b806119db57506119ac61188b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611a14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a1f86611d60565b1415611a57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a64868686600161210f565b6000611a6f83611d60565b14611aab576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611b7287611d60565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611bfc576000600185019050600060046000838152602001908152602001600020541415611bfa576000548114611bf9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c648686866001612115565b505050505050565b80471015611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061326e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cd5906132bf565b60006040518083038185875af1925050503d8060008114611d12576040519150601f19603f3d011682016040523d82523d6000602084013e611d17565b606091505b5050905080611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613346565b60405180910390fd5b505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4a82826040518060200160405280600081525061211b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7461188b565b8786866040518563ffffffff1660e01b8152600401611e9694939291906133bb565b602060405180830381600087803b158015611eb057600080fd5b505af1925050508015611ee157506040513d601f19601f82011682018060405250810190611ede919061341c565b60015b611f5b573d8060008114611f11576040519150601f19603f3d011682016040523d82523d6000602084013e611f16565b606091505b50600081511415611f53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ff6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210a565b600082905060005b6000821461202857808061201190613449565b915050600a8261202191906134c1565b9150611ffe565b60008167ffffffffffffffff811115612044576120436127a3565b5b6040519080825280601f01601f1916602001820160405280156120765781602001600182028036833780820191505090505b5090505b600085146121035760018261208f91906134f2565b9150600a8561209e9190613526565b60306120aa9190612cfc565b60f81b8183815181106120c0576120bf613557565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120fc91906134c1565b945061207a565b8093505050505b919050565b50505050565b50505050565b61212583836121b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b357600080549050600083820390505b6121656000868380600101945086611e4e565b61219b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121525781600054146121b057600080fd5b50505b505050565b60008054905060006121c984611d60565b1415612201576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561223c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612249600084838561210f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122ae60018414612361565b901b60a042901b6122be85611d60565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48281106122da578282016000819055505061235c6000848385612115565b505050565b6000819050919050565b82805461237790612b57565b90600052602060002090601f01602090048101928261239957600085556123e0565b82601f106123b257805160ff19168380011785556123e0565b828001600101855582156123e0579182015b828111156123df5782518255916020019190600101906123c4565b5b5090506123ed91906123f1565b5090565b5b8082111561240a5760008160009055506001016123f2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61245781612422565b811461246257600080fd5b50565b6000813590506124748161244e565b92915050565b6000602082840312156124905761248f612418565b5b600061249e84828501612465565b91505092915050565b60008115159050919050565b6124bc816124a7565b82525050565b60006020820190506124d760008301846124b3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125175780820151818401526020810190506124fc565b83811115612526576000848401525b50505050565b6000601f19601f8301169050919050565b6000612548826124dd565b61255281856124e8565b93506125628185602086016124f9565b61256b8161252c565b840191505092915050565b60006020820190508181036000830152612590818461253d565b905092915050565b6000819050919050565b6125ab81612598565b82525050565b60006020820190506125c660008301846125a2565b92915050565b6125d581612598565b81146125e057600080fd5b50565b6000813590506125f2816125cc565b92915050565b60006020828403121561260e5761260d612418565b5b600061261c848285016125e3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265082612625565b9050919050565b61266081612645565b82525050565b600060208201905061267b6000830184612657565b92915050565b61268a81612645565b811461269557600080fd5b50565b6000813590506126a781612681565b92915050565b600080604083850312156126c4576126c3612418565b5b60006126d285828601612698565b92505060206126e3858286016125e3565b9150509250929050565b60008060006060848603121561270657612705612418565b5b600061271486828701612698565b935050602061272586828701612698565b9250506040612736868287016125e3565b9150509250925092565b612749816124a7565b811461275457600080fd5b50565b60008135905061276681612740565b92915050565b60006020828403121561278257612781612418565b5b600061279084828501612757565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127db8261252c565b810181811067ffffffffffffffff821117156127fa576127f96127a3565b5b80604052505050565b600061280d61240e565b905061281982826127d2565b919050565b600067ffffffffffffffff821115612839576128386127a3565b5b6128428261252c565b9050602081019050919050565b82818337600083830152505050565b600061287161286c8461281e565b612803565b90508281526020810184848401111561288d5761288c61279e565b5b61289884828561284f565b509392505050565b600082601f8301126128b5576128b4612799565b5b81356128c584826020860161285e565b91505092915050565b6000602082840312156128e4576128e3612418565b5b600082013567ffffffffffffffff8111156129025761290161241d565b5b61290e848285016128a0565b91505092915050565b60006020828403121561292d5761292c612418565b5b600061293b84828501612698565b91505092915050565b6000806040838503121561295b5761295a612418565b5b600061296985828601612698565b925050602061297a85828601612757565b9150509250929050565b600067ffffffffffffffff82111561299f5761299e6127a3565b5b6129a88261252c565b9050602081019050919050565b60006129c86129c384612984565b612803565b9050828152602081018484840111156129e4576129e361279e565b5b6129ef84828561284f565b509392505050565b600082601f830112612a0c57612a0b612799565b5b8135612a1c8482602086016129b5565b91505092915050565b60008060008060808587031215612a3f57612a3e612418565b5b6000612a4d87828801612698565b9450506020612a5e87828801612698565b9350506040612a6f878288016125e3565b925050606085013567ffffffffffffffff811115612a9057612a8f61241d565b5b612a9c878288016129f7565b91505092959194509250565b60008060408385031215612abf57612abe612418565b5b6000612acd85828601612698565b9250506020612ade85828601612698565b9150509250929050565b60008060408385031215612aff57612afe612418565b5b6000612b0d858286016125e3565b9250506020612b1e85828601612698565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6f57607f821691505b60208210811415612b8357612b82612b28565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bbf6020836124e8565b9150612bca82612b89565b602082019050919050565b60006020820190508181036000830152612bee81612bb2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c2b601f836124e8565b9150612c3682612bf5565b602082019050919050565b60006020820190508181036000830152612c5a81612c1e565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612c976017836124e8565b9150612ca282612c61565b602082019050919050565b60006020820190508181036000830152612cc681612c8a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0782612598565b9150612d1283612598565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4757612d46612ccd565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612d886017836124e8565b9150612d9382612d52565b602082019050919050565b60006020820190508181036000830152612db781612d7b565b9050919050565b7f4d6178696d756d20706572207478206578636565646564000000000000000000600082015250565b6000612df46017836124e8565b9150612dff82612dbe565b602082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b6000612e3582612598565b9150612e4083612598565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7957612e78612ccd565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612eba6018836124e8565b9150612ec582612e84565b602082019050919050565b60006020820190508181036000830152612ee981612ead565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f4c602f836124e8565b9150612f5782612ef0565b604082019050919050565b60006020820190508181036000830152612f7b81612f3f565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612faf81612b57565b612fb98186612f82565b94506001821660008114612fd45760018114612fe557613018565b60ff19831686528186019350613018565b612fee85612f8d565b60005b8381101561301057815481890152600182019150602081019050612ff1565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613057600183612f82565b915061306282613021565b600182019050919050565b6000613078826124dd565b6130828185612f82565b93506130928185602086016124f9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d4600583612f82565b91506130df8261309e565b600582019050919050565b60006130f68285612fa2565b91506131018261304a565b915061310d828461306d565b9150613118826130c7565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061315a6013836124e8565b915061316582613124565b602082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131ec6026836124e8565b91506131f782613190565b604082019050919050565b6000602082019050818103600083015261321b816131df565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613258601d836124e8565b915061326382613222565b602082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b600081905092915050565b50565b60006132a960008361328e565b91506132b482613299565b600082019050919050565b60006132ca8261329c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613330603a836124e8565b915061333b826132d4565b604082019050919050565b6000602082019050818103600083015261335f81613323565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061338d82613366565b6133978185613371565b93506133a78185602086016124f9565b6133b08161252c565b840191505092915050565b60006080820190506133d06000830187612657565b6133dd6020830186612657565b6133ea60408301856125a2565b81810360608301526133fc8184613382565b905095945050505050565b6000815190506134168161244e565b92915050565b60006020828403121561343257613431612418565b5b600061344084828501613407565b91505092915050565b600061345482612598565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561348757613486612ccd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134cc82612598565b91506134d783612598565b9250826134e7576134e6613492565b5b828204905092915050565b60006134fd82612598565b915061350883612598565b92508282101561351b5761351a612ccd565b5b828203905092915050565b600061353182612598565b915061353c83612598565b92508261354c5761354b613492565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122026dc6672d82527a1c996413167a60d7d6a1f06d4a39cb843c3aa2093335094de64736f6c63430008090033697066733a2f2f516d53734b466362474e786f67595942526b7042396877524d346732526361376b31735363436a7679576b676369
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061247a565b610765565b60405161021c91906124c2565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b6040516102479190612576565b60405180910390f35b34801561025c57600080fd5b50610265610889565b60405161027291906125b1565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906125f8565b61088f565b6040516102af9190612666565b60405180910390f35b3480156102c457600080fd5b506102cd61090b565b6040516102da91906125b1565b60405180910390f35b3480156102ef57600080fd5b5061030a600480360381019061030591906126ad565b610911565b005b34801561031857600080fd5b50610333600480360381019061032e91906125f8565b610a52565b005b34801561034157600080fd5b5061034a610ad8565b60405161035791906125b1565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906125f8565b610aef565b005b34801561039557600080fd5b5061039e610b75565b6040516103ab91906124c2565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906126ed565b610b88565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061276c565b610b98565b005b34801561041257600080fd5b5061041b610c31565b005b34801561042957600080fd5b50610444600480360381019061043f91906126ed565b610d0f565b005b34801561045257600080fd5b5061046d600480360381019061046891906128ce565b610d2f565b005b34801561047b57600080fd5b50610496600480360381019061049191906125f8565b610dc5565b6040516104a39190612666565b60405180910390f35b3480156104b857600080fd5b506104c1610dd7565b6040516104ce91906125b1565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612917565b610ddd565b60405161050b91906125b1565b60405180910390f35b34801561052057600080fd5b50610529610e72565b005b34801561053757600080fd5b50610540610efa565b60405161054d9190612666565b60405180910390f35b34801561056257600080fd5b5061056b610f24565b6040516105789190612576565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906125f8565b610fb6565b005b6105c460048036038101906105bf91906125f8565b61103c565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612944565b6111ad565b005b3480156105fb57600080fd5b5061061660048036038101906106119190612a25565b611325565b005b34801561062457600080fd5b5061062d611398565b60405161063a91906125b1565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906125f8565b61139e565b6040516106779190612576565b60405180910390f35b34801561068c57600080fd5b5061069561141a565b6040516106a29190612576565b60405180910390f35b3480156106b757600080fd5b506106c06114a8565b6040516106cd91906125b1565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612aa8565b6114ae565b60405161070a91906124c2565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612ae8565b611542565b005b34801561074857600080fd5b50610763600480360381019061075e9190612917565b611666565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612b57565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612b57565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a8261175e565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091c826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff1661093d61188b565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576109698161096461188b565b6114ae565b61099f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a5a611893565b73ffffffffffffffffffffffffffffffffffffffff16610a78610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590612bd5565b60405180910390fd5b80600f8190555050565b6000610ae261189b565b6001546000540303905090565b610af7611893565b73ffffffffffffffffffffffffffffffffffffffff16610b15610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290612bd5565b60405180910390fd5b80600e8190555050565b601060009054906101000a900460ff1681565b610b938383836118a4565b505050565b610ba0611893565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90612bd5565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610c39611893565b73ffffffffffffffffffffffffffffffffffffffff16610c57610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490612bd5565b60405180910390fd5b60026009541415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90612c41565b60405180910390fd5b6002600981905550610d053347611c6c565b6001600981905550565b610d2a83838360405180602001604052806000815250611325565b505050565b610d37611893565b73ffffffffffffffffffffffffffffffffffffffff16610d55610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612bd5565b60405180910390fd5b80600a9080519060200190610dc192919061236b565b5050565b6000610dd0826117bd565b9050919050565b600d5481565b600080610de983611d60565b1415610e21576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e7a611893565b73ffffffffffffffffffffffffffffffffffffffff16610e98610efa565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612bd5565b60405180910390fd5b610ef86000611d6a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3390612b57565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f90612b57565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b5050505050905090565b610fbe611893565b73ffffffffffffffffffffffffffffffffffffffff16610fdc610efa565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990612bd5565b60405180910390fd5b80600c8190555050565b601060009054906101000a900460ff1661108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612cad565b60405180910390fd5b600b5481611097610ad8565b6110a19190612cfc565b11156110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d990612d9e565b60405180910390fd5b600c54811115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612e0a565b60405180910390fd5b600f5481611133610ad8565b61113d9190612cfc565b118061114a5750600d5481115b156111a0573481600e5461115e9190612e2a565b111561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612ed0565b60405180910390fd5b5b6111aa3382611e30565b50565b6111b561188b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061122761188b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112d461188b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131991906124c2565b60405180910390a35050565b6113308484846118a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113925761135b84848484611e4e565b611391576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606113a98261175e565b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90612f62565b60405180910390fd5b600a6113f383611fae565b6040516020016114049291906130ea565b6040516020818303038152906040529050919050565b600a805461142790612b57565b80601f016020809104026020016040519081016040528092919081815260200182805461145390612b57565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61154a611893565b73ffffffffffffffffffffffffffffffffffffffff16611568610efa565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b590612bd5565b60405180910390fd5b60008211611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890613170565b60405180910390fd5b600b548261160d610ad8565b6116179190612cfc565b1115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90612d9e565b60405180910390fd5b6116628183611e30565b5050565b61166e611893565b73ffffffffffffffffffffffffffffffffffffffff1661168c610efa565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990612bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174990613202565b60405180910390fd5b61175b81611d6a565b50565b60008161176961189b565b11158015611778575060005482105b80156117b6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117cc61189b565b11611854576000548110156118535760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611851575b600081141561184757600460008360019003935083815260200190815260200160002054905061181c565b8092505050611886565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b60006118af826117bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611916576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661196f61188b565b73ffffffffffffffffffffffffffffffffffffffff16148061199e575061199d8661199861188b565b6114ae565b5b806119db57506119ac61188b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611a14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a1f86611d60565b1415611a57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a64868686600161210f565b6000611a6f83611d60565b14611aab576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611b7287611d60565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611bfc576000600185019050600060046000838152602001908152602001600020541415611bfa576000548114611bf9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c648686866001612115565b505050505050565b80471015611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca69061326e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cd5906132bf565b60006040518083038185875af1925050503d8060008114611d12576040519150601f19603f3d011682016040523d82523d6000602084013e611d17565b606091505b5050905080611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613346565b60405180910390fd5b505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e4a82826040518060200160405280600081525061211b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7461188b565b8786866040518563ffffffff1660e01b8152600401611e9694939291906133bb565b602060405180830381600087803b158015611eb057600080fd5b505af1925050508015611ee157506040513d601f19601f82011682018060405250810190611ede919061341c565b60015b611f5b573d8060008114611f11576040519150601f19603f3d011682016040523d82523d6000602084013e611f16565b606091505b50600081511415611f53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ff6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210a565b600082905060005b6000821461202857808061201190613449565b915050600a8261202191906134c1565b9150611ffe565b60008167ffffffffffffffff811115612044576120436127a3565b5b6040519080825280601f01601f1916602001820160405280156120765781602001600182028036833780820191505090505b5090505b600085146121035760018261208f91906134f2565b9150600a8561209e9190613526565b60306120aa9190612cfc565b60f81b8183815181106120c0576120bf613557565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120fc91906134c1565b945061207a565b8093505050505b919050565b50505050565b50505050565b61212583836121b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121b357600080549050600083820390505b6121656000868380600101945086611e4e565b61219b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121525781600054146121b057600080fd5b50505b505050565b60008054905060006121c984611d60565b1415612201576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561223c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612249600084838561210f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122ae60018414612361565b901b60a042901b6122be85611d60565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48281106122da578282016000819055505061235c6000848385612115565b505050565b6000819050919050565b82805461237790612b57565b90600052602060002090601f01602090048101928261239957600085556123e0565b82601f106123b257805160ff19168380011785556123e0565b828001600101855582156123e0579182015b828111156123df5782518255916020019190600101906123c4565b5b5090506123ed91906123f1565b5090565b5b8082111561240a5760008160009055506001016123f2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61245781612422565b811461246257600080fd5b50565b6000813590506124748161244e565b92915050565b6000602082840312156124905761248f612418565b5b600061249e84828501612465565b91505092915050565b60008115159050919050565b6124bc816124a7565b82525050565b60006020820190506124d760008301846124b3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125175780820151818401526020810190506124fc565b83811115612526576000848401525b50505050565b6000601f19601f8301169050919050565b6000612548826124dd565b61255281856124e8565b93506125628185602086016124f9565b61256b8161252c565b840191505092915050565b60006020820190508181036000830152612590818461253d565b905092915050565b6000819050919050565b6125ab81612598565b82525050565b60006020820190506125c660008301846125a2565b92915050565b6125d581612598565b81146125e057600080fd5b50565b6000813590506125f2816125cc565b92915050565b60006020828403121561260e5761260d612418565b5b600061261c848285016125e3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265082612625565b9050919050565b61266081612645565b82525050565b600060208201905061267b6000830184612657565b92915050565b61268a81612645565b811461269557600080fd5b50565b6000813590506126a781612681565b92915050565b600080604083850312156126c4576126c3612418565b5b60006126d285828601612698565b92505060206126e3858286016125e3565b9150509250929050565b60008060006060848603121561270657612705612418565b5b600061271486828701612698565b935050602061272586828701612698565b9250506040612736868287016125e3565b9150509250925092565b612749816124a7565b811461275457600080fd5b50565b60008135905061276681612740565b92915050565b60006020828403121561278257612781612418565b5b600061279084828501612757565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127db8261252c565b810181811067ffffffffffffffff821117156127fa576127f96127a3565b5b80604052505050565b600061280d61240e565b905061281982826127d2565b919050565b600067ffffffffffffffff821115612839576128386127a3565b5b6128428261252c565b9050602081019050919050565b82818337600083830152505050565b600061287161286c8461281e565b612803565b90508281526020810184848401111561288d5761288c61279e565b5b61289884828561284f565b509392505050565b600082601f8301126128b5576128b4612799565b5b81356128c584826020860161285e565b91505092915050565b6000602082840312156128e4576128e3612418565b5b600082013567ffffffffffffffff8111156129025761290161241d565b5b61290e848285016128a0565b91505092915050565b60006020828403121561292d5761292c612418565b5b600061293b84828501612698565b91505092915050565b6000806040838503121561295b5761295a612418565b5b600061296985828601612698565b925050602061297a85828601612757565b9150509250929050565b600067ffffffffffffffff82111561299f5761299e6127a3565b5b6129a88261252c565b9050602081019050919050565b60006129c86129c384612984565b612803565b9050828152602081018484840111156129e4576129e361279e565b5b6129ef84828561284f565b509392505050565b600082601f830112612a0c57612a0b612799565b5b8135612a1c8482602086016129b5565b91505092915050565b60008060008060808587031215612a3f57612a3e612418565b5b6000612a4d87828801612698565b9450506020612a5e87828801612698565b9350506040612a6f878288016125e3565b925050606085013567ffffffffffffffff811115612a9057612a8f61241d565b5b612a9c878288016129f7565b91505092959194509250565b60008060408385031215612abf57612abe612418565b5b6000612acd85828601612698565b9250506020612ade85828601612698565b9150509250929050565b60008060408385031215612aff57612afe612418565b5b6000612b0d858286016125e3565b9250506020612b1e85828601612698565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6f57607f821691505b60208210811415612b8357612b82612b28565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bbf6020836124e8565b9150612bca82612b89565b602082019050919050565b60006020820190508181036000830152612bee81612bb2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612c2b601f836124e8565b9150612c3682612bf5565b602082019050919050565b60006020820190508181036000830152612c5a81612c1e565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612c976017836124e8565b9150612ca282612c61565b602082019050919050565b60006020820190508181036000830152612cc681612c8a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0782612598565b9150612d1283612598565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d4757612d46612ccd565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612d886017836124e8565b9150612d9382612d52565b602082019050919050565b60006020820190508181036000830152612db781612d7b565b9050919050565b7f4d6178696d756d20706572207478206578636565646564000000000000000000600082015250565b6000612df46017836124e8565b9150612dff82612dbe565b602082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b6000612e3582612598565b9150612e4083612598565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7957612e78612ccd565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612eba6018836124e8565b9150612ec582612e84565b602082019050919050565b60006020820190508181036000830152612ee981612ead565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f4c602f836124e8565b9150612f5782612ef0565b604082019050919050565b60006020820190508181036000830152612f7b81612f3f565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612faf81612b57565b612fb98186612f82565b94506001821660008114612fd45760018114612fe557613018565b60ff19831686528186019350613018565b612fee85612f8d565b60005b8381101561301057815481890152600182019150602081019050612ff1565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613057600183612f82565b915061306282613021565b600182019050919050565b6000613078826124dd565b6130828185612f82565b93506130928185602086016124f9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d4600583612f82565b91506130df8261309e565b600582019050919050565b60006130f68285612fa2565b91506131018261304a565b915061310d828461306d565b9150613118826130c7565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061315a6013836124e8565b915061316582613124565b602082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131ec6026836124e8565b91506131f782613190565b604082019050919050565b6000602082019050818103600083015261321b816131df565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613258601d836124e8565b915061326382613222565b602082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b600081905092915050565b50565b60006132a960008361328e565b91506132b482613299565b600082019050919050565b60006132ca8261329c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613330603a836124e8565b915061333b826132d4565b604082019050919050565b6000602082019050818103600083015261335f81613323565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061338d82613366565b6133978185613371565b93506133a78185602086016124f9565b6133b08161252c565b840191505092915050565b60006080820190506133d06000830187612657565b6133dd6020830186612657565b6133ea60408301856125a2565b81810360608301526133fc8184613382565b905095945050505050565b6000815190506134168161244e565b92915050565b60006020828403121561343257613431612418565b5b600061344084828501613407565b91505092915050565b600061345482612598565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561348757613486612ccd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134cc82612598565b91506134d783612598565b9250826134e7576134e6613492565b5b828204905092915050565b60006134fd82612598565b915061350883612598565b92508282101561351b5761351a612ccd565b5b828203905092915050565b600061353182612598565b915061353c83612598565b92508261354c5761354b613492565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122026dc6672d82527a1c996413167a60d7d6a1f06d4a39cb843c3aa2093335094de64736f6c63430008090033
Deployed Bytecode Sourcemap
55822:2805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31017:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36053:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56150:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38062:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56201:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37581:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58237:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30071:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58374:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56245:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38948:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58083:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57373:142;;;;;;;;;;;;;:::i;:::-;;39189:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56961:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35842:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56108:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31696:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17166:103;;;;;;;;;;;;;:::i;:::-;;16515:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36222:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58495:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56347:608;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38338:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39445:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56067:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57624:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55937:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56030:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38717:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57075:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17424:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31017:615;31102:4;31417:10;31402:25;;:11;:25;;;;:102;;;;31494:10;31479:25;;:11;:25;;;;31402:102;:179;;;;31571:10;31556:25;;:11;:25;;;;31402:179;31382:199;;31017:615;;;:::o;36053:100::-;36107:13;36140:5;36133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36053:100;:::o;56150:46::-;;;;:::o;38062:204::-;38130:7;38155:16;38163:7;38155;:16::i;:::-;38150:64;;38180:34;;;;;;;;;;;;;;38150:64;38234:15;:24;38250:7;38234:24;;;;;;;;;;;;;;;;;;;;;38227:31;;38062:204;;;:::o;56201:39::-;;;;:::o;37581:415::-;37654:13;37686:27;37705:7;37686:18;:27::i;:::-;37654:61;;37755:5;37732:28;;:19;:17;:19::i;:::-;:28;;;37728:175;;37780:44;37797:5;37804:19;:17;:19::i;:::-;37780:16;:44::i;:::-;37775:128;;37852:35;;;;;;;;;;;;;;37775:128;37728:175;37942:2;37915:15;:24;37931:7;37915:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37980:7;37976:2;37960:28;;37969:5;37960:28;;;;;;;;;;;;37643:353;37581:415;;:::o;58237:131::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58349:13:::1;58330:16;:32;;;;58237:131:::0;:::o;30071:315::-;30124:7;30352:15;:13;:15::i;:::-;30337:12;;30321:13;;:28;:46;30314:53;;30071:315;:::o;58374:115::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58477:6:::1;58457:17;:26;;;;58374:115:::0;:::o;56245:37::-;;;;;;;;;;;;;:::o;38948:170::-;39082:28;39092:4;39098:2;39102:7;39082:9;:28::i;:::-;38948:170;;;:::o;58083:148::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58206:19:::1;58185:18;;:40;;;;;;;;;;;;;;;;;;58083:148:::0;:::o;57373:142::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13613:1:::1;14211:7;;:19;;14203:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13613:1;14344:7;:18;;;;57448:61:::2;57474:10;57487:21;57448:17;:61::i;:::-;13569:1:::1;14523:7;:22;;;;57373:142::o:0;39189:185::-;39327:39;39344:4;39350:2;39354:7;39327:39;;;;;;;;;;;;:16;:39::i;:::-;39189:185;;;:::o;56961:108::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57056:7:::1;57041:12;:22;;;;;;;;;;;;:::i;:::-;;56961:108:::0;:::o;35842:144::-;35906:7;35949:27;35968:7;35949:18;:27::i;:::-;35926:52;;35842:144;;;:::o;56108:37::-;;;;:::o;31696:234::-;31760:7;31812:1;31784:24;31802:5;31784:17;:24::i;:::-;:29;31780:70;;;31822:28;;;;;;;;;;;;;;31780:70;27041:13;31868:18;:25;31887:5;31868:25;;;;;;;;;;;;;;;;:54;31861:61;;31696:234;;;:::o;17166:103::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17231:30:::1;17258:1;17231:18;:30::i;:::-;17166:103::o:0;16515:87::-;16561:7;16588:6;;;;;;;;;;;16581:13;;16515:87;:::o;36222:104::-;36278:13;36311:7;36304:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36222:104;:::o;58495:127::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58610:6:::1;58591:16;:25;;;;58495:127:::0;:::o;56347:608::-;56434:18;;;;;;;;;;;56426:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56537:9;;56519:14;56503:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;56487:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;56620:16;;56602:14;:34;;56594:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56709:16;;56691:14;56675:13;:11;:13::i;:::-;:30;;;;:::i;:::-;56674:51;:89;;;;56746:17;;56729:14;:34;56674:89;56671:235;;;56837:9;56818:14;56798:17;;:34;;;;:::i;:::-;56797:49;;56775:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;56671:235;56912:37;56922:10;56934:14;56912:9;:37::i;:::-;56347:608;:::o;38338:308::-;38449:19;:17;:19::i;:::-;38437:31;;:8;:31;;;38433:61;;;38477:17;;;;;;;;;;;;;;38433:61;38559:8;38507:18;:39;38526:19;:17;:19::i;:::-;38507:39;;;;;;;;;;;;;;;:49;38547:8;38507:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38619:8;38583:55;;38598:19;:17;:19::i;:::-;38583:55;;;38629:8;38583:55;;;;;;:::i;:::-;;;;;;;;38338:308;;:::o;39445:396::-;39612:28;39622:4;39628:2;39632:7;39612:9;:28::i;:::-;39673:1;39655:2;:14;;;:19;39651:183;;39694:56;39725:4;39731:2;39735:7;39744:5;39694:30;:56::i;:::-;39689:145;;39778:40;;;;;;;;;;;;;;39689:145;39651:183;39445:396;;;;:::o;56067:36::-;;;;:::o;57624:312::-;57720:13;57761:17;57769:8;57761:7;:17::i;:::-;57745:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;57881:12;57900:19;:8;:17;:19::i;:::-;57864:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57850:80;;57624:312;;;:::o;55937:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56030:32::-;;;;:::o;38717:164::-;38814:4;38838:18;:25;38857:5;38838:25;;;;;;;;;;;;;;;:35;38864:8;38838:35;;;;;;;;;;;;;;;;;;;;;;;;;38831:42;;38717:164;;;;:::o;57075:292::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57190:1:::1;57179:8;:12;57163:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57279:9;;57267:8;57251:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;57235:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;57336:25;57346:4;57352:8;57336:9;:25::i;:::-;57075:292:::0;;:::o;17424:201::-;16746:12;:10;:12::i;:::-;16735:23;;:7;:5;:7::i;:::-;:23;;;16727:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17533:1:::1;17513:22;;:8;:22;;;;17505:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17589:28;17608:8;17589:18;:28::i;:::-;17424:201:::0;:::o;40096:273::-;40153:4;40209:7;40190:15;:13;:15::i;:::-;:26;;:66;;;;;40243:13;;40233:7;:23;40190:66;:152;;;;;40341:1;27811:8;40294:17;:26;40312:7;40294:26;;;;;;;;;;;;:43;:48;40190:152;40170:172;;40096:273;;;:::o;33357:1129::-;33424:7;33444:12;33459:7;33444:22;;33527:4;33508:15;:13;:15::i;:::-;:23;33504:915;;33561:13;;33554:4;:20;33550:869;;;33599:14;33616:17;:23;33634:4;33616:23;;;;;;;;;;;;33599:40;;33732:1;27811:8;33705:6;:23;:28;33701:699;;;34224:113;34241:1;34231:6;:11;34224:113;;;34284:17;:25;34302:6;;;;;;;34284:25;;;;;;;;;;;;34275:34;;34224:113;;;34370:6;34363:13;;;;;;33701:699;33576:843;33550:869;33504:915;34447:31;;;;;;;;;;;;;;33357:1129;;;;:::o;52770:105::-;52830:7;52857:10;52850:17;;52770:105;:::o;15239:98::-;15292:7;15319:10;15312:17;;15239:98;:::o;57521:95::-;57586:7;57609:1;57602:8;;57521:95;:::o;43762:2654::-;43877:27;43907;43926:7;43907:18;:27::i;:::-;43877:57;;43992:4;43951:45;;43967:19;43951:45;;;43947:86;;44005:28;;;;;;;;;;;;;;43947:86;44046:23;44072:15;:24;44088:7;44072:24;;;;;;;;;;;;;;;;;;;;;44046:50;;44109:22;44158:4;44135:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;44179:43;44196:4;44202:19;:17;:19::i;:::-;44179:16;:43::i;:::-;44135:87;:142;;;;44258:19;:17;:19::i;:::-;44239:38;;:15;:38;;;44135:142;44109:169;;44296:17;44291:66;;44322:35;;;;;;;;;;;;;;44291:66;44397:1;44372:21;44390:2;44372:17;:21::i;:::-;:26;44368:62;;;44407:23;;;;;;;;;;;;;;44368:62;44443:43;44465:4;44471:2;44475:7;44484:1;44443:21;:43::i;:::-;44594:1;44556:34;44574:15;44556:17;:34::i;:::-;:39;44552:103;;44619:15;:24;44635:7;44619:24;;;;;;;;;;;;44612:31;;;;;;;;;;;44552:103;45022:18;:24;45041:4;45022:24;;;;;;;;;;;;;;;;45020:26;;;;;;;;;;;;45091:18;:22;45110:2;45091:22;;;;;;;;;;;;;;;;45089:24;;;;;;;;;;;28089:8;27695:3;45472:15;:41;;45430:21;45448:2;45430:17;:21::i;:::-;:84;:128;45384:17;:26;45402:7;45384:26;;;;;;;;;;;:174;;;;45728:1;28089:8;45678:19;:46;:51;45674:626;;;45750:19;45782:1;45772:7;:11;45750:33;;45939:1;45905:17;:30;45923:11;45905:30;;;;;;;;;;;;:35;45901:384;;;46043:13;;46028:11;:28;46024:242;;46223:19;46190:17;:30;46208:11;46190:30;;;;;;;;;;;:52;;;;46024:242;45901:384;45731:569;45674:626;46347:7;46343:2;46328:27;;46337:4;46328:27;;;;;;;;;;;;46366:42;46387:4;46393:2;46397:7;46406:1;46366:20;:42::i;:::-;43866:2550;;;43762:2654;;;:::o;5792:317::-;5907:6;5882:21;:31;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5961:12;5979:9;:14;;6001:6;5979:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5960:52;;;6031:7;6023:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5863:246;5792:317;;:::o;37142:148::-;37206:14;37267:5;37257:15;;37142:148;;;:::o;17785:191::-;17859:16;17878:6;;;;;;;;;;;17859:25;;17904:8;17895:6;;:17;;;;;;;;;;;;;;;;;;17959:8;17928:40;;17949:8;17928:40;;;;;;;;;;;;17848:128;17785:191;:::o;40453:104::-;40522:27;40532:2;40536:8;40522:27;;;;;;;;;;;;:9;:27::i;:::-;40453:104;;:::o;50239:716::-;50402:4;50448:2;50423:45;;;50469:19;:17;:19::i;:::-;50490:4;50496:7;50505:5;50423:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50419:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50723:1;50706:6;:13;:18;50702:235;;;50752:40;;;;;;;;;;;;;;50702:235;50895:6;50889:13;50880:6;50876:2;50872:15;50865:38;50419:529;50592:54;;;50582:64;;;:6;:64;;;;50575:71;;;50239:716;;;;;;:::o;1231:723::-;1287:13;1517:1;1508:5;:10;1504:53;;;1535:10;;;;;;;;;;;;;;;;;;;;;1504:53;1567:12;1582:5;1567:20;;1598:14;1623:78;1638:1;1630:4;:9;1623:78;;1656:8;;;;;:::i;:::-;;;;1687:2;1679:10;;;;;:::i;:::-;;;1623:78;;;1711:19;1743:6;1733:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1711:39;;1761:154;1777:1;1768:5;:10;1761:154;;1805:1;1795:11;;;;;:::i;:::-;;;1872:2;1864:5;:10;;;;:::i;:::-;1851:2;:24;;;;:::i;:::-;1838:39;;1821:6;1828;1821:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1901:2;1892:11;;;;;:::i;:::-;;;1761:154;;;1939:6;1925:21;;;;;1231:723;;;;:::o;51603:159::-;;;;;:::o;52421:158::-;;;;;:::o;40944:681::-;41067:19;41073:2;41077:8;41067:5;:19::i;:::-;41146:1;41128:2;:14;;;:19;41124:483;;41168:11;41182:13;;41168:27;;41214:13;41236:8;41230:3;:14;41214:30;;41263:233;41294:62;41333:1;41337:2;41341:7;;;;;;41350:5;41294:30;:62::i;:::-;41289:167;;41392:40;;;;;;;;;;;;;;41289:167;41491:3;41483:5;:11;41263:233;;41578:3;41561:13;;:20;41557:34;;41583:8;;;41557:34;41149:458;;41124:483;40944:681;;;:::o;41898:1610::-;41963:20;41986:13;;41963:36;;42039:1;42014:21;42032:2;42014:17;:21::i;:::-;:26;42010:58;;;42049:19;;;;;;;;;;;;;;42010:58;42095:1;42083:8;:13;42079:44;;;42105:18;;;;;;;;;;;;;;42079:44;42136:61;42166:1;42170:2;42174:12;42188:8;42136:21;:61::i;:::-;42740:1;27178:2;42711:1;:25;;42710:31;42698:8;:44;42672:18;:22;42691:2;42672:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;27954:3;43141:29;43168:1;43156:8;:13;43141:14;:29::i;:::-;:56;;27695:3;43078:15;:41;;43036:21;43054:2;43036:17;:21::i;:::-;:84;:162;42985:17;:31;43003:12;42985:31;;;;;;;;;;;:213;;;;43215:14;43244:119;43311:8;;;;;;43296:12;:23;43292:2;43271:49;;43288:1;43271:49;;;;;;;;;;;;43353:8;43344:6;:17;43244:119;;43410:8;43395:12;:23;43379:13;:39;;;;42449:981;43440:60;43469:1;43473:2;43477:12;43491:8;43440:20;:60::i;:::-;41952:1556;41898:1610;;:::o;37377:142::-;37435:14;37496:5;37486:15;;37377:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:181::-;14567:33;14563:1;14555:6;14551:14;14544:57;14427:181;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:419::-;15152:4;15190:2;15179:9;15175:18;15167:26;;15239:9;15233:4;15229:20;15225:1;15214:9;15210:17;15203:47;15267:131;15393:4;15267:131;:::i;:::-;15259:139;;14986:419;;;:::o;15411:173::-;15551:25;15547:1;15539:6;15535:14;15528:49;15411:173;:::o;15590:366::-;15732:3;15753:67;15817:2;15812:3;15753:67;:::i;:::-;15746:74;;15829:93;15918:3;15829:93;:::i;:::-;15947:2;15942:3;15938:12;15931:19;;15590:366;;;:::o;15962:419::-;16128:4;16166:2;16155:9;16151:18;16143:26;;16215:9;16209:4;16205:20;16201:1;16190:9;16186:17;16179:47;16243:131;16369:4;16243:131;:::i;:::-;16235:139;;15962:419;;;:::o;16387:180::-;16435:77;16432:1;16425:88;16532:4;16529:1;16522:15;16556:4;16553:1;16546:15;16573:305;16613:3;16632:20;16650:1;16632:20;:::i;:::-;16627:25;;16666:20;16684:1;16666:20;:::i;:::-;16661:25;;16820:1;16752:66;16748:74;16745:1;16742:81;16739:107;;;16826:18;;:::i;:::-;16739:107;16870:1;16867;16863:9;16856:16;;16573:305;;;;:::o;16884:173::-;17024:25;17020:1;17012:6;17008:14;17001:49;16884:173;:::o;17063:366::-;17205:3;17226:67;17290:2;17285:3;17226:67;:::i;:::-;17219:74;;17302:93;17391:3;17302:93;:::i;:::-;17420:2;17415:3;17411:12;17404:19;;17063:366;;;:::o;17435:419::-;17601:4;17639:2;17628:9;17624:18;17616:26;;17688:9;17682:4;17678:20;17674:1;17663:9;17659:17;17652:47;17716:131;17842:4;17716:131;:::i;:::-;17708:139;;17435:419;;;:::o;17860:173::-;18000:25;17996:1;17988:6;17984:14;17977:49;17860:173;:::o;18039:366::-;18181:3;18202:67;18266:2;18261:3;18202:67;:::i;:::-;18195:74;;18278:93;18367:3;18278:93;:::i;:::-;18396:2;18391:3;18387:12;18380:19;;18039:366;;;:::o;18411:419::-;18577:4;18615:2;18604:9;18600:18;18592:26;;18664:9;18658:4;18654:20;18650:1;18639:9;18635:17;18628:47;18692:131;18818:4;18692:131;:::i;:::-;18684:139;;18411:419;;;:::o;18836:348::-;18876:7;18899:20;18917:1;18899:20;:::i;:::-;18894:25;;18933:20;18951:1;18933:20;:::i;:::-;18928:25;;19121:1;19053:66;19049:74;19046:1;19043:81;19038:1;19031:9;19024:17;19020:105;19017:131;;;19128:18;;:::i;:::-;19017:131;19176:1;19173;19169:9;19158:20;;18836:348;;;;:::o;19190:174::-;19330:26;19326:1;19318:6;19314:14;19307:50;19190:174;:::o;19370:366::-;19512:3;19533:67;19597:2;19592:3;19533:67;:::i;:::-;19526:74;;19609:93;19698:3;19609:93;:::i;:::-;19727:2;19722:3;19718:12;19711:19;;19370:366;;;:::o;19742:419::-;19908:4;19946:2;19935:9;19931:18;19923:26;;19995:9;19989:4;19985:20;19981:1;19970:9;19966:17;19959:47;20023:131;20149:4;20023:131;:::i;:::-;20015:139;;19742:419;;;:::o;20167:234::-;20307:34;20303:1;20295:6;20291:14;20284:58;20376:17;20371:2;20363:6;20359:15;20352:42;20167:234;:::o;20407:366::-;20549:3;20570:67;20634:2;20629:3;20570:67;:::i;:::-;20563:74;;20646:93;20735:3;20646:93;:::i;:::-;20764:2;20759:3;20755:12;20748:19;;20407:366;;;:::o;20779:419::-;20945:4;20983:2;20972:9;20968:18;20960:26;;21032:9;21026:4;21022:20;21018:1;21007:9;21003:17;20996:47;21060:131;21186:4;21060:131;:::i;:::-;21052:139;;20779:419;;;:::o;21204:148::-;21306:11;21343:3;21328:18;;21204:148;;;;:::o;21358:141::-;21407:4;21430:3;21422:11;;21453:3;21450:1;21443:14;21487:4;21484:1;21474:18;21466:26;;21358:141;;;:::o;21529:845::-;21632:3;21669:5;21663:12;21698:36;21724:9;21698:36;:::i;:::-;21750:89;21832:6;21827:3;21750:89;:::i;:::-;21743:96;;21870:1;21859:9;21855:17;21886:1;21881:137;;;;22032:1;22027:341;;;;21848:520;;21881:137;21965:4;21961:9;21950;21946:25;21941:3;21934:38;22001:6;21996:3;21992:16;21985:23;;21881:137;;22027:341;22094:38;22126:5;22094:38;:::i;:::-;22154:1;22168:154;22182:6;22179:1;22176:13;22168:154;;;22256:7;22250:14;22246:1;22241:3;22237:11;22230:35;22306:1;22297:7;22293:15;22282:26;;22204:4;22201:1;22197:12;22192:17;;22168:154;;;22351:6;22346:3;22342:16;22335:23;;22034:334;;21848:520;;21636:738;;21529:845;;;;:::o;22380:151::-;22520:3;22516:1;22508:6;22504:14;22497:27;22380:151;:::o;22537:400::-;22697:3;22718:84;22800:1;22795:3;22718:84;:::i;:::-;22711:91;;22811:93;22900:3;22811:93;:::i;:::-;22929:1;22924:3;22920:11;22913:18;;22537:400;;;:::o;22943:377::-;23049:3;23077:39;23110:5;23077:39;:::i;:::-;23132:89;23214:6;23209:3;23132:89;:::i;:::-;23125:96;;23230:52;23275:6;23270:3;23263:4;23256:5;23252:16;23230:52;:::i;:::-;23307:6;23302:3;23298:16;23291:23;;23053:267;22943:377;;;;:::o;23326:155::-;23466:7;23462:1;23454:6;23450:14;23443:31;23326:155;:::o;23487:400::-;23647:3;23668:84;23750:1;23745:3;23668:84;:::i;:::-;23661:91;;23761:93;23850:3;23761:93;:::i;:::-;23879:1;23874:3;23870:11;23863:18;;23487:400;;;:::o;23893:961::-;24272:3;24294:92;24382:3;24373:6;24294:92;:::i;:::-;24287:99;;24403:148;24547:3;24403:148;:::i;:::-;24396:155;;24568:95;24659:3;24650:6;24568:95;:::i;:::-;24561:102;;24680:148;24824:3;24680:148;:::i;:::-;24673:155;;24845:3;24838:10;;23893:961;;;;;:::o;24860:169::-;25000:21;24996:1;24988:6;24984:14;24977:45;24860:169;:::o;25035:366::-;25177:3;25198:67;25262:2;25257:3;25198:67;:::i;:::-;25191:74;;25274:93;25363:3;25274:93;:::i;:::-;25392:2;25387:3;25383:12;25376:19;;25035:366;;;:::o;25407:419::-;25573:4;25611:2;25600:9;25596:18;25588:26;;25660:9;25654:4;25650:20;25646:1;25635:9;25631:17;25624:47;25688:131;25814:4;25688:131;:::i;:::-;25680:139;;25407:419;;;:::o;25832:225::-;25972:34;25968:1;25960:6;25956:14;25949:58;26041:8;26036:2;26028:6;26024:15;26017:33;25832:225;:::o;26063:366::-;26205:3;26226:67;26290:2;26285:3;26226:67;:::i;:::-;26219:74;;26302:93;26391:3;26302:93;:::i;:::-;26420:2;26415:3;26411:12;26404:19;;26063:366;;;:::o;26435:419::-;26601:4;26639:2;26628:9;26624:18;26616:26;;26688:9;26682:4;26678:20;26674:1;26663:9;26659:17;26652:47;26716:131;26842:4;26716:131;:::i;:::-;26708:139;;26435:419;;;:::o;26860:179::-;27000:31;26996:1;26988:6;26984:14;26977:55;26860:179;:::o;27045:366::-;27187:3;27208:67;27272:2;27267:3;27208:67;:::i;:::-;27201:74;;27284:93;27373:3;27284:93;:::i;:::-;27402:2;27397:3;27393:12;27386:19;;27045:366;;;:::o;27417:419::-;27583:4;27621:2;27610:9;27606:18;27598:26;;27670:9;27664:4;27660:20;27656:1;27645:9;27641:17;27634:47;27698:131;27824:4;27698:131;:::i;:::-;27690:139;;27417:419;;;:::o;27842:147::-;27943:11;27980:3;27965:18;;27842:147;;;;:::o;27995:114::-;;:::o;28115:398::-;28274:3;28295:83;28376:1;28371:3;28295:83;:::i;:::-;28288:90;;28387:93;28476:3;28387:93;:::i;:::-;28505:1;28500:3;28496:11;28489:18;;28115:398;;;:::o;28519:379::-;28703:3;28725:147;28868:3;28725:147;:::i;:::-;28718:154;;28889:3;28882:10;;28519:379;;;:::o;28904:245::-;29044:34;29040:1;29032:6;29028:14;29021:58;29113:28;29108:2;29100:6;29096:15;29089:53;28904:245;:::o;29155:366::-;29297:3;29318:67;29382:2;29377:3;29318:67;:::i;:::-;29311:74;;29394:93;29483:3;29394:93;:::i;:::-;29512:2;29507:3;29503:12;29496:19;;29155:366;;;:::o;29527:419::-;29693:4;29731:2;29720:9;29716:18;29708:26;;29780:9;29774:4;29770:20;29766:1;29755:9;29751:17;29744:47;29808:131;29934:4;29808:131;:::i;:::-;29800:139;;29527:419;;;:::o;29952:98::-;30003:6;30037:5;30031:12;30021:22;;29952:98;;;:::o;30056:168::-;30139:11;30173:6;30168:3;30161:19;30213:4;30208:3;30204:14;30189:29;;30056:168;;;;:::o;30230:360::-;30316:3;30344:38;30376:5;30344:38;:::i;:::-;30398:70;30461:6;30456:3;30398:70;:::i;:::-;30391:77;;30477:52;30522:6;30517:3;30510:4;30503:5;30499:16;30477:52;:::i;:::-;30554:29;30576:6;30554:29;:::i;:::-;30549:3;30545:39;30538:46;;30320:270;30230:360;;;;:::o;30596:640::-;30791:4;30829:3;30818:9;30814:19;30806:27;;30843:71;30911:1;30900:9;30896:17;30887:6;30843:71;:::i;:::-;30924:72;30992:2;30981:9;30977:18;30968:6;30924:72;:::i;:::-;31006;31074:2;31063:9;31059:18;31050:6;31006:72;:::i;:::-;31125:9;31119:4;31115:20;31110:2;31099:9;31095:18;31088:48;31153:76;31224:4;31215:6;31153:76;:::i;:::-;31145:84;;30596:640;;;;;;;:::o;31242:141::-;31298:5;31329:6;31323:13;31314:22;;31345:32;31371:5;31345:32;:::i;:::-;31242:141;;;;:::o;31389:349::-;31458:6;31507:2;31495:9;31486:7;31482:23;31478:32;31475:119;;;31513:79;;:::i;:::-;31475:119;31633:1;31658:63;31713:7;31704:6;31693:9;31689:22;31658:63;:::i;:::-;31648:73;;31604:127;31389:349;;;;:::o;31744:233::-;31783:3;31806:24;31824:5;31806:24;:::i;:::-;31797:33;;31852:66;31845:5;31842:77;31839:103;;;31922:18;;:::i;:::-;31839:103;31969:1;31962:5;31958:13;31951:20;;31744:233;;;:::o;31983:180::-;32031:77;32028:1;32021:88;32128:4;32125:1;32118:15;32152:4;32149:1;32142:15;32169:185;32209:1;32226:20;32244:1;32226:20;:::i;:::-;32221:25;;32260:20;32278:1;32260:20;:::i;:::-;32255:25;;32299:1;32289:35;;32304:18;;:::i;:::-;32289:35;32346:1;32343;32339:9;32334:14;;32169:185;;;;:::o;32360:191::-;32400:4;32420:20;32438:1;32420:20;:::i;:::-;32415:25;;32454:20;32472:1;32454:20;:::i;:::-;32449:25;;32493:1;32490;32487:8;32484:34;;;32498:18;;:::i;:::-;32484:34;32543:1;32540;32536:9;32528:17;;32360:191;;;;:::o;32557:176::-;32589:1;32606:20;32624:1;32606:20;:::i;:::-;32601:25;;32640:20;32658:1;32640:20;:::i;:::-;32635:25;;32679:1;32669:35;;32684:18;;:::i;:::-;32669:35;32725:1;32722;32718:9;32713:14;;32557:176;;;;:::o;32739:180::-;32787:77;32784:1;32777:88;32884:4;32881:1;32874:15;32908:4;32905:1;32898:15
Swarm Source
ipfs://26dc6672d82527a1c996413167a60d7d6a1f06d4a39cb843c3aa2093335094de
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.