Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 64 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint NFT | 16359862 | 755 days ago | IN | 0 ETH | 0.00162904 | ||||
Mint NFT | 16213351 | 775 days ago | IN | 0 ETH | 0.00133048 | ||||
Mint NFT | 16211963 | 775 days ago | IN | 0 ETH | 0.0013941 | ||||
Mint NFT | 16208428 | 776 days ago | IN | 0 ETH | 0.00114669 | ||||
Mint NFT | 16206054 | 776 days ago | IN | 0 ETH | 0.00124121 | ||||
Set Approval For... | 16204568 | 776 days ago | IN | 0 ETH | 0.000527 | ||||
Mint NFT | 16204553 | 776 days ago | IN | 0 ETH | 0.00124875 | ||||
Mint NFT | 16204519 | 776 days ago | IN | 0 ETH | 0.00104318 | ||||
Mint NFT | 16204495 | 776 days ago | IN | 0 ETH | 0.00119692 | ||||
Mint NFT | 16204485 | 776 days ago | IN | 0 ETH | 0.00121766 | ||||
Mint NFT | 16204484 | 776 days ago | IN | 0 ETH | 0.00120057 | ||||
Mint NFT | 16204484 | 776 days ago | IN | 0 ETH | 0.00120057 | ||||
Mint NFT | 16204479 | 776 days ago | IN | 0 ETH | 0.00121812 | ||||
Mint NFT | 16204479 | 776 days ago | IN | 0 ETH | 0.00121812 | ||||
Mint NFT | 16204474 | 776 days ago | IN | 0 ETH | 0.00122405 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00105153 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00105245 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00105245 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00105245 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00112779 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00112779 | ||||
Mint NFT | 16204473 | 776 days ago | IN | 0 ETH | 0.00112779 | ||||
Mint NFT | 16204471 | 776 days ago | IN | 0 ETH | 0.0011574 | ||||
Mint NFT | 16204469 | 776 days ago | IN | 0 ETH | 0.00105245 | ||||
Mint NFT | 16204469 | 776 days ago | IN | 0 ETH | 0.00105245 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Giftfully
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-09 */ // SPDX-License-Identifier: MIT // _ __ _ __ _ _ // (_)/ _| | / _| | | | // __ _ _| |_| |_| |_ _ _| | |_ _ // / _` | | _| __| _| | | | | | | | | // | (_| | | | | |_| | | |_| | | | |_| | // \__, |_|_| \__|_| \__,_|_|_|\__, | // __/ | __/ | // |___/ |___/ /** * @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. */ // File: contracts/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: contracts/OperatorFilterer.sol pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: contracts/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: contracts/Furried.sol /** *Submitted for verification at Etherscan.io on 2022-11-12 */ pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex = 1; // The number of tokens burned. uint256 internal _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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return (_currentIndex - _burnCounter) - 1; } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance 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 { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n � 2 + 1, and for v in (302): v ? {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } contract Giftfully is Ownable, DefaultOperatorFilterer, ERC721A { uint256 public walletMax = 2; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; bool public publicSaleOpen = false; string public baseURI = "ipfs://willbeupdated/"; string public _extension = ".json"; uint256 public price = 0 ether; uint256 public maxSupply = 10000; constructor() ERC721A("Giftfully", "GIFT"){} function mintNFT(uint256 _quantity) public payable { require(_quantity > 0 && _quantity <= walletMax, "Wallet full, check max per wallet!"); require(totalSupply() + _quantity <= maxSupply, "Reached max supply!"); require(msg.value == price * _quantity, "Needs to send more ETH!"); require(getMintedCount(msg.sender) + _quantity <= walletMax, "Exceeded max minting amount!"); require(publicSaleOpen, "Public sale not yet started!"); _safeMint(msg.sender, _quantity); } function sendGifts(address[] memory _wallets) external onlyOwner{ require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached."); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], 1); } function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{ require(totalSupply() + _num <= maxSupply, "Max Supply Reached."); _safeMint(_wallet, _num); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI set of nonexistent token" ); return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension)); } function updateBaseURI(string memory _newBaseURI) onlyOwner public { baseURI = _newBaseURI; } function updateExtension(string memory _temp) onlyOwner public { _extension = _temp; } function getBaseURI() external view returns(string memory) { return baseURI; } function setPrice(uint256 _price) public onlyOwner() { price = _price; } function setWalletMaxs(uint256 _walletMax) public onlyOwner() { walletMax = _walletMax; } function setmaxSupply(uint256 _supply) public onlyOwner() { require(_supply <= 10000, "Error: New max supply cant be higher than original max."); maxSupply = _supply; } function toggleSale() public onlyOwner() { publicSaleOpen = !publicSaleOpen; } function getBalance() public view returns(uint) { return address(this).balance; } function getMintedCount(address owner) public view returns (uint256) { return _numberMinted(owner); } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(owner()).transfer(_balance); //Owner } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } receive() external payable {} }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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"},{"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":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletMax","type":"uint256"}],"name":"setWalletMaxs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001805560026009556000600b60006101000a81548160ff0219169083151502179055506040518060400160405280601581526020017f697066733a2f2f77696c6c6265757064617465642f0000000000000000000000815250600c9080519060200190620000759291906200047d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200047d565b506000600e55612710600f55348015620000dc57600080fd5b506040518060400160405280600981526020017f4769667466756c6c7900000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4749465400000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb660016200018062000174620003b160201b60201c565b620003b960201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003755780156200023b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020192919062000572565b600060405180830381600087803b1580156200021c57600080fd5b505af115801562000231573d6000803e3d6000fd5b5050505062000374565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002bb92919062000572565b600060405180830381600087803b158015620002d657600080fd5b505af1158015620002eb573d6000803e3d6000fd5b5050505062000373565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033e91906200059f565b600060405180830381600087803b1580156200035957600080fd5b505af11580156200036e573d6000803e3d6000fd5b505050505b5b5b505081600390805190602001906200038f9291906200047d565b508060049080519060200190620003a89291906200047d565b50505062000620565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200048b90620005eb565b90600052602060002090601f016020900481019282620004af5760008555620004fb565b82601f10620004ca57805160ff1916838001178555620004fb565b82800160010185558215620004fb579182015b82811115620004fa578251825591602001919060010190620004dd565b5b5090506200050a91906200050e565b5090565b5b80821115620005295760008160009055506001016200050f565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200055a826200052d565b9050919050565b6200056c816200054d565b82525050565b600060408201905062000589600083018562000561565b62000598602083018462000561565b9392505050565b6000602082019050620005b6600083018462000561565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060457607f821691505b6020821081036200061a5762000619620005bc565b5b50919050565b61456880620006306000396000f3fe60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133a8565b61088c565b60405161025e91906133f0565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906134a4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906134fc565b610a00565b6040516102c6919061356a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613600565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613600565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906134fc565b610b9f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061361b565b610c6a565b005b3480156103ac57600080fd5b506103b5610e4c565b6040516103c291906134a4565b60405180910390f35b3480156103d757600080fd5b506103e0610eda565b005b3480156103ee57600080fd5b506104096004803603810190610404919061361b565b610fac565b005b34801561041757600080fd5b50610432600480360381019061042d91906134fc565b61118e565b005b34801561044057600080fd5b5061045b600480360381019061045691906134fc565b611214565b604051610468919061356a565b60405180910390f35b34801561047d57600080fd5b5061048661122a565b60405161049391906134a4565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061366e565b6112b8565b6040516104d09190613600565b60405180910390f35b3480156104e557600080fd5b506104ee611387565b6040516104fb91906134a4565b60405180910390f35b34801561051057600080fd5b50610519611419565b005b34801561052757600080fd5b50610542600480360381019061053d91906137e3565b6114a1565b005b34801561055057600080fd5b506105596115bd565b005b34801561056757600080fd5b50610582600480360381019061057d91906138e1565b611665565b005b34801561059057600080fd5b506105996116fb565b6040516105a6919061356a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906134fc565b611724565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906134fc565b6117aa565b60405161060c91906139ad565b60405180910390f35b61062f600480360381019061062a91906134fc565b6117c2565b005b34801561063d57600080fd5b50610658600480360381019061065391906138e1565b61196d565b005b34801561066657600080fd5b5061066f611a03565b60405161067c91906134a4565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061366e565b611a95565b6040516106b99190613600565b60405180910390f35b3480156106ce57600080fd5b506106d7611aa7565b6040516106e49190613600565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906139f4565b611aad565b005b34801561072257600080fd5b5061073d60048036038101906107389190613ad5565b611c24565b005b34801561074b57600080fd5b50610766600480360381019061076191906134fc565b611e09565b60405161077391906134a4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906135b1565b611e88565b005b3480156107b157600080fd5b506107ba611f69565b6040516107c79190613600565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613b58565b611f6f565b60405161080491906133f0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061366e565b612003565b005b34801561084257600080fd5b5061084b6120fa565b60405161085891906133f0565b60405180910390f35b34801561086d57600080fd5b5061087661210d565b6040516108839190613600565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682612113565b5b9050919050565b60606003805461097d90613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613bc7565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b8261217d565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b386121b8565b611f6f565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818383836121c0565b505050565b600047905090565b600060016002546001540303905090565b610ba76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613c44565b60405180910390fd5b612710811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613cd6565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdc57610cd7848484612272565b610e46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d25929190613cf6565b602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613d34565b8015610df857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db6929190613cf6565b602060405180830381865afa158015610dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df79190613d34565b5b610e3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e30919061356a565b60405180910390fd5b5b610e45848484612272565b5b50505050565b600d8054610e5990613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613bc7565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b610ee26121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f006116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613c44565b60405180910390fd5b6000479050610f636116fb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101e57611019848484612282565b611188565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611067929190613cf6565b602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613d34565b801561113a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190613cf6565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190613d34565b5b61117b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611172919061356a565b60405180910390fd5b5b611187848484612282565b5b50505050565b6111966121b8565b73ffffffffffffffffffffffffffffffffffffffff166111b46116fb565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c44565b60405180910390fd5b8060098190555050565b600061121f826122a2565b600001519050919050565b600c805461123790613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613bc7565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461139690613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c290613bc7565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b5050505050905090565b6114216121b8565b73ffffffffffffffffffffffffffffffffffffffff1661143f6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613c44565b60405180910390fd5b61149f600061251e565b565b6114a96121b8565b73ffffffffffffffffffffffffffffffffffffffff166114c76116fb565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613c44565b60405180910390fd5b600f54815161152a610b8e565b6115349190613d90565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e32565b60405180910390fd5b60005b81518110156115b9576115a682828151811061159757611596613e52565b5b602002602001015160016125e2565b80806115b190613e81565b915050611578565b5050565b6115c56121b8565b73ffffffffffffffffffffffffffffffffffffffff166115e36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613c44565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61166d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661168b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613c44565b60405180910390fd5b80600d90805190602001906116f7929190613256565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172c6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661174a6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613c44565b60405180910390fd5b80600e8190555050565b6117b26132dc565b6117bb826122a2565b9050919050565b6000811180156117d457506009548111155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613f3b565b60405180910390fd5b600f548161181f610b8e565b6118299190613d90565b111561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fa7565b60405180910390fd5b80600e546118789190613fc7565b34146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061406d565b60405180910390fd5b600954816118c633611a95565b6118d09190613d90565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906140d9565b60405180910390fd5b600b60009054906101000a900460ff16611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614145565b60405180910390fd5b61196a33826125e2565b50565b6119756121b8565b73ffffffffffffffffffffffffffffffffffffffff166119936116fb565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613c44565b60405180910390fd5b80600c90805190602001906119ff929190613256565b5050565b606060048054611a1290613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613bc7565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b6000611aa082612600565b9050919050565b600e5481565b611ab56121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b19576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b266121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd36121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1891906133f0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611df5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c9757611c92858585856126cf565b611e02565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ce0929190613cf6565b602060405180830381865afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d219190613d34565b8015611db357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d71929190613cf6565b602060405180830381865afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190613d34565b5b611df457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611deb919061356a565b60405180910390fd5b5b611e01858585856126cf565b5b5050505050565b6060611e148261217d565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a906141d7565b60405180910390fd5b600c611e5e83612722565b600d604051602001611e72939291906142c7565b6040516020818303038152906040529050919050565b611e906121b8565b73ffffffffffffffffffffffffffffffffffffffff16611eae6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613c44565b60405180910390fd5b600f5481611f10610b8e565b611f1a9190613d90565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613e32565b60405180910390fd5b611f6582826125e2565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200b6121b8565b73ffffffffffffffffffffffffffffffffffffffff166120296116fb565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e59061436a565b60405180910390fd5b6120f78161251e565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156121b1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61227d838383612882565b505050565b61229d83838360405180602001604052806000815250611c24565b505050565b6122aa6132dc565b60008290506001548110156124e7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c9578092505050612519565b5b6001156124e457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124df578092505050612519565b6123ca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fc828260405180602001604052806000815250612d71565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612667576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126da848484612882565b6126e684848484612d83565b61271c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e81565b915050600a8261279491906143b9565b9150612771565b60008167ffffffffffffffff8111156127b7576127b66136a0565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b600085146128765760018261280291906143ea565b9150600a85612811919061441e565b603061281d9190613d90565b60f81b81838151811061283357612832613e52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f91906143b9565b94506127ed565b8093505050505b919050565b600061288d826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b46121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806128e757506128e682600001516128e16121b8565b611f6f565b5b8061292c57506128f56121b8565b73ffffffffffffffffffffffffffffffffffffffff1661291484610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612965576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a418585856001612f01565b612a5160008484600001516121c0565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d0157600154811015612d005782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6a8585856001612f07565b5050505050565b612d7e8383836001612f0d565b505050565b6000612da48473ffffffffffffffffffffffffffffffffffffffff16613243565b15612ef4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dcd6121b8565b8786866040518563ffffffff1660e01b8152600401612def94939291906144a4565b6020604051808303816000875af1925050508015612e2b57506040513d601f19601f82011682018060405250810190612e289190614505565b60015b612ea4573d8060008114612e5b576040519150601f19603f3d011682016040523d82523d6000602084013e612e60565b606091505b506000815103612e9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef9565b600190505b949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612f7a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612fb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fc16000868387612f01565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561322657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156131da57506131d86000888488612d83565b155b15613211576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061315f565b50806001819055505061323c6000868387612f07565b5050505050565b600080823b905060008111915050919050565b82805461326290613bc7565b90600052602060002090601f01602090048101928261328457600085556132cb565b82601f1061329d57805160ff19168380011785556132cb565b828001600101855582156132cb579182015b828111156132ca5782518255916020019190600101906132af565b5b5090506132d8919061331f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613338576000816000905550600101613320565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338581613350565b811461339057600080fd5b50565b6000813590506133a28161337c565b92915050565b6000602082840312156133be576133bd613346565b5b60006133cc84828501613393565b91505092915050565b60008115159050919050565b6133ea816133d5565b82525050565b600060208201905061340560008301846133e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b83811115613454576000848401525b50505050565b6000601f19601f8301169050919050565b60006134768261340b565b6134808185613416565b9350613490818560208601613427565b6134998161345a565b840191505092915050565b600060208201905081810360008301526134be818461346b565b905092915050565b6000819050919050565b6134d9816134c6565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511613346565b5b6000613520848285016134e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355482613529565b9050919050565b61356481613549565b82525050565b600060208201905061357f600083018461355b565b92915050565b61358e81613549565b811461359957600080fd5b50565b6000813590506135ab81613585565b92915050565b600080604083850312156135c8576135c7613346565b5b60006135d68582860161359c565b92505060206135e7858286016134e7565b9150509250929050565b6135fa816134c6565b82525050565b600060208201905061361560008301846135f1565b92915050565b60008060006060848603121561363457613633613346565b5b60006136428682870161359c565b93505060206136538682870161359c565b9250506040613664868287016134e7565b9150509250925092565b60006020828403121561368457613683613346565b5b60006136928482850161359c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d88261345a565b810181811067ffffffffffffffff821117156136f7576136f66136a0565b5b80604052505050565b600061370a61333c565b905061371682826136cf565b919050565b600067ffffffffffffffff821115613736576137356136a0565b5b602082029050602081019050919050565b600080fd5b600061375f61375a8461371b565b613700565b9050808382526020820190506020840283018581111561378257613781613747565b5b835b818110156137ab5780613797888261359c565b845260208401935050602081019050613784565b5050509392505050565b600082601f8301126137ca576137c961369b565b5b81356137da84826020860161374c565b91505092915050565b6000602082840312156137f9576137f8613346565b5b600082013567ffffffffffffffff8111156138175761381661334b565b5b613823848285016137b5565b91505092915050565b600080fd5b600067ffffffffffffffff82111561384c5761384b6136a0565b5b6138558261345a565b9050602081019050919050565b82818337600083830152505050565b600061388461387f84613831565b613700565b9050828152602081018484840111156138a05761389f61382c565b5b6138ab848285613862565b509392505050565b600082601f8301126138c8576138c761369b565b5b81356138d8848260208601613871565b91505092915050565b6000602082840312156138f7576138f6613346565b5b600082013567ffffffffffffffff8111156139155761391461334b565b5b613921848285016138b3565b91505092915050565b61393381613549565b82525050565b600067ffffffffffffffff82169050919050565b61395681613939565b82525050565b613965816133d5565b82525050565b606082016000820151613981600085018261392a565b506020820151613994602085018261394d565b5060408201516139a7604085018261395c565b50505050565b60006060820190506139c2600083018461396b565b92915050565b6139d1816133d5565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a613346565b5b6000613a198582860161359c565b9250506020613a2a858286016139df565b9150509250929050565b600067ffffffffffffffff821115613a4f57613a4e6136a0565b5b613a588261345a565b9050602081019050919050565b6000613a78613a7384613a34565b613700565b905082815260208101848484011115613a9457613a9361382c565b5b613a9f848285613862565b509392505050565b600082601f830112613abc57613abb61369b565b5b8135613acc848260208601613a65565b91505092915050565b60008060008060808587031215613aef57613aee613346565b5b6000613afd8782880161359c565b9450506020613b0e8782880161359c565b9350506040613b1f878288016134e7565b925050606085013567ffffffffffffffff811115613b4057613b3f61334b565b5b613b4c87828801613aa7565b91505092959194509250565b60008060408385031215613b6f57613b6e613346565b5b6000613b7d8582860161359c565b9250506020613b8e8582860161359c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bdf57607f821691505b602082108103613bf257613bf1613b98565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2e602083613416565b9150613c3982613bf8565b602082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613cc0603783613416565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b6000604082019050613d0b600083018561355b565b613d18602083018461355b565b9392505050565b600081519050613d2e816139c8565b92915050565b600060208284031215613d4a57613d49613346565b5b6000613d5884828501613d1f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9b826134c6565b9150613da6836134c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda613d61565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613e1c601383613416565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e8c826134c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ebe57613ebd613d61565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602283613416565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000613f91601383613416565b9150613f9c82613f5b565b602082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b6000613fd2826134c6565b9150613fdd836134c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613d61565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000614057601783613416565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b60006140c3601c83613416565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b600061412f601c83613416565b915061413a826140f9565b602082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141c1602c83613416565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422481613bc7565b61422e81866141f7565b94506001821660008114614249576001811461425a5761428d565b60ff1983168652818601935061428d565b61426385614202565b60005b8381101561428557815481890152600182019150602081019050614266565b838801955050505b50505092915050565b60006142a18261340b565b6142ab81856141f7565b93506142bb818560208601613427565b80840191505092915050565b60006142d38286614217565b91506142df8285614296565b91506142eb8284614217565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614354602683613416565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c4826134c6565b91506143cf836134c6565b9250826143df576143de61438a565b5b828204905092915050565b60006143f5826134c6565b9150614400836134c6565b92508282101561441357614412613d61565b5b828203905092915050565b6000614429826134c6565b9150614434836134c6565b9250826144445761444361438a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144768261444f565b614480818561445a565b9350614490818560208601613427565b6144998161345a565b840191505092915050565b60006080820190506144b9600083018761355b565b6144c6602083018661355b565b6144d360408301856135f1565b81810360608301526144e5818461446b565b905095945050505050565b6000815190506144ff8161337c565b92915050565b60006020828403121561451b5761451a613346565b5b6000614529848285016144f0565b9150509291505056fea2646970667358221220c404c0c268b73fafa9e2aee963a36f3e781cfef57e8fda97bed69ea3ab8e107264736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906133a8565b61088c565b60405161025e91906133f0565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b60405161028991906134a4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906134fc565b610a00565b6040516102c6919061356a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906135b1565b610a7c565b005b34801561030457600080fd5b5061030d610b86565b60405161031a9190613600565b60405180910390f35b34801561032f57600080fd5b50610338610b8e565b6040516103459190613600565b60405180910390f35b34801561035a57600080fd5b50610375600480360381019061037091906134fc565b610b9f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061361b565b610c6a565b005b3480156103ac57600080fd5b506103b5610e4c565b6040516103c291906134a4565b60405180910390f35b3480156103d757600080fd5b506103e0610eda565b005b3480156103ee57600080fd5b506104096004803603810190610404919061361b565b610fac565b005b34801561041757600080fd5b50610432600480360381019061042d91906134fc565b61118e565b005b34801561044057600080fd5b5061045b600480360381019061045691906134fc565b611214565b604051610468919061356a565b60405180910390f35b34801561047d57600080fd5b5061048661122a565b60405161049391906134a4565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061366e565b6112b8565b6040516104d09190613600565b60405180910390f35b3480156104e557600080fd5b506104ee611387565b6040516104fb91906134a4565b60405180910390f35b34801561051057600080fd5b50610519611419565b005b34801561052757600080fd5b50610542600480360381019061053d91906137e3565b6114a1565b005b34801561055057600080fd5b506105596115bd565b005b34801561056757600080fd5b50610582600480360381019061057d91906138e1565b611665565b005b34801561059057600080fd5b506105996116fb565b6040516105a6919061356a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906134fc565b611724565b005b3480156105e457600080fd5b506105ff60048036038101906105fa91906134fc565b6117aa565b60405161060c91906139ad565b60405180910390f35b61062f600480360381019061062a91906134fc565b6117c2565b005b34801561063d57600080fd5b50610658600480360381019061065391906138e1565b61196d565b005b34801561066657600080fd5b5061066f611a03565b60405161067c91906134a4565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a7919061366e565b611a95565b6040516106b99190613600565b60405180910390f35b3480156106ce57600080fd5b506106d7611aa7565b6040516106e49190613600565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906139f4565b611aad565b005b34801561072257600080fd5b5061073d60048036038101906107389190613ad5565b611c24565b005b34801561074b57600080fd5b50610766600480360381019061076191906134fc565b611e09565b60405161077391906134a4565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e91906135b1565b611e88565b005b3480156107b157600080fd5b506107ba611f69565b6040516107c79190613600565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613b58565b611f6f565b60405161080491906133f0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f919061366e565b612003565b005b34801561084257600080fd5b5061084b6120fa565b60405161085891906133f0565b60405180910390f35b34801561086d57600080fd5b5061087661210d565b6040516108839190613600565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682612113565b5b9050919050565b60606003805461097d90613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613bc7565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b8261217d565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aee576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b3f5750610b3d81610b386121b8565b611f6f565b155b15610b76576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818383836121c0565b505050565b600047905090565b600060016002546001540303905090565b610ba76121b8565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613c44565b60405180910390fd5b612710811115610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613cd6565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e3a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cdc57610cd7848484612272565b610e46565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d25929190613cf6565b602060405180830381865afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190613d34565b8015610df857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610db6929190613cf6565b602060405180830381865afa158015610dd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df79190613d34565b5b610e3957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e30919061356a565b60405180910390fd5b5b610e45848484612272565b5b50505050565b600d8054610e5990613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8590613bc7565b8015610ed25780601f10610ea757610100808354040283529160200191610ed2565b820191906000526020600020905b815481529060010190602001808311610eb557829003601f168201915b505050505081565b610ee26121b8565b73ffffffffffffffffffffffffffffffffffffffff16610f006116fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613c44565b60405180910390fd5b6000479050610f636116fb565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fa8573d6000803e3d6000fd5b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561117c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101e57611019848484612282565b611188565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611067929190613cf6565b602060405180830381865afa158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a89190613d34565b801561113a57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110f8929190613cf6565b602060405180830381865afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190613d34565b5b61117b57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611172919061356a565b60405180910390fd5b5b611187848484612282565b5b50505050565b6111966121b8565b73ffffffffffffffffffffffffffffffffffffffff166111b46116fb565b73ffffffffffffffffffffffffffffffffffffffff161461120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613c44565b60405180910390fd5b8060098190555050565b600061121f826122a2565b600001519050919050565b600c805461123790613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461126390613bc7565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461139690613bc7565b80601f01602080910402602001604051908101604052809291908181526020018280546113c290613bc7565b801561140f5780601f106113e45761010080835404028352916020019161140f565b820191906000526020600020905b8154815290600101906020018083116113f257829003601f168201915b5050505050905090565b6114216121b8565b73ffffffffffffffffffffffffffffffffffffffff1661143f6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613c44565b60405180910390fd5b61149f600061251e565b565b6114a96121b8565b73ffffffffffffffffffffffffffffffffffffffff166114c76116fb565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490613c44565b60405180910390fd5b600f54815161152a610b8e565b6115349190613d90565b1115611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613e32565b60405180910390fd5b60005b81518110156115b9576115a682828151811061159757611596613e52565b5b602002602001015160016125e2565b80806115b190613e81565b915050611578565b5050565b6115c56121b8565b73ffffffffffffffffffffffffffffffffffffffff166115e36116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613c44565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b61166d6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661168b6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613c44565b60405180910390fd5b80600d90805190602001906116f7929190613256565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61172c6121b8565b73ffffffffffffffffffffffffffffffffffffffff1661174a6116fb565b73ffffffffffffffffffffffffffffffffffffffff16146117a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179790613c44565b60405180910390fd5b80600e8190555050565b6117b26132dc565b6117bb826122a2565b9050919050565b6000811180156117d457506009548111155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613f3b565b60405180910390fd5b600f548161181f610b8e565b6118299190613d90565b111561186a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186190613fa7565b60405180910390fd5b80600e546118789190613fc7565b34146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061406d565b60405180910390fd5b600954816118c633611a95565b6118d09190613d90565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906140d9565b60405180910390fd5b600b60009054906101000a900460ff16611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614145565b60405180910390fd5b61196a33826125e2565b50565b6119756121b8565b73ffffffffffffffffffffffffffffffffffffffff166119936116fb565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613c44565b60405180910390fd5b80600c90805190602001906119ff929190613256565b5050565b606060048054611a1290613bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3e90613bc7565b8015611a8b5780601f10611a6057610100808354040283529160200191611a8b565b820191906000526020600020905b815481529060010190602001808311611a6e57829003601f168201915b5050505050905090565b6000611aa082612600565b9050919050565b600e5481565b611ab56121b8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b19576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611b266121b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd36121b8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1891906133f0565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611df5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c9757611c92858585856126cf565b611e02565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611ce0929190613cf6565b602060405180830381865afa158015611cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d219190613d34565b8015611db357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d71929190613cf6565b602060405180830381865afa158015611d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db29190613d34565b5b611df457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611deb919061356a565b60405180910390fd5b5b611e01858585856126cf565b5b5050505050565b6060611e148261217d565b611e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4a906141d7565b60405180910390fd5b600c611e5e83612722565b600d604051602001611e72939291906142c7565b6040516020818303038152906040529050919050565b611e906121b8565b73ffffffffffffffffffffffffffffffffffffffff16611eae6116fb565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90613c44565b60405180910390fd5b600f5481611f10610b8e565b611f1a9190613d90565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290613e32565b60405180910390fd5b611f6582826125e2565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200b6121b8565b73ffffffffffffffffffffffffffffffffffffffff166120296116fb565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e59061436a565b60405180910390fd5b6120f78161251e565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600154821080156121b1575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61227d838383612882565b505050565b61229d83838360405180602001604052806000815250611c24565b505050565b6122aa6132dc565b60008290506001548110156124e7576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124e557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c9578092505050612519565b5b6001156124e457818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124df578092505050612519565b6123ca565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fc828260405180602001604052806000815250612d71565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612667576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6126da848484612882565b6126e684848484612d83565b61271c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606060008203612769576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061287d565b600082905060005b6000821461279b57808061278490613e81565b915050600a8261279491906143b9565b9150612771565b60008167ffffffffffffffff8111156127b7576127b66136a0565b5b6040519080825280601f01601f1916602001820160405280156127e95781602001600182028036833780820191505090505b5090505b600085146128765760018261280291906143ea565b9150600a85612811919061441e565b603061281d9190613d90565b60f81b81838151811061283357612832613e52565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561286f91906143b9565b94506127ed565b8093505050505b919050565b600061288d826122a2565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b46121b8565b73ffffffffffffffffffffffffffffffffffffffff1614806128e757506128e682600001516128e16121b8565b611f6f565b5b8061292c57506128f56121b8565b73ffffffffffffffffffffffffffffffffffffffff1661291484610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612965576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129ce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a34576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a418585856001612f01565b612a5160008484600001516121c0565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612d0157600154811015612d005782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6a8585856001612f07565b5050505050565b612d7e8383836001612f0d565b505050565b6000612da48473ffffffffffffffffffffffffffffffffffffffff16613243565b15612ef4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dcd6121b8565b8786866040518563ffffffff1660e01b8152600401612def94939291906144a4565b6020604051808303816000875af1925050508015612e2b57506040513d601f19601f82011682018060405250810190612e289190614505565b60015b612ea4573d8060008114612e5b576040519150601f19603f3d011682016040523d82523d6000602084013e612e60565b606091505b506000815103612e9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ef9565b600190505b949350505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612f7a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612fb4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fc16000868387612f01565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561322657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156131da57506131d86000888488612d83565b155b15613211576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061315f565b50806001819055505061323c6000868387612f07565b5050505050565b600080823b905060008111915050919050565b82805461326290613bc7565b90600052602060002090601f01602090048101928261328457600085556132cb565b82601f1061329d57805160ff19168380011785556132cb565b828001600101855582156132cb579182015b828111156132ca5782518255916020019190600101906132af565b5b5090506132d8919061331f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613338576000816000905550600101613320565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61338581613350565b811461339057600080fd5b50565b6000813590506133a28161337c565b92915050565b6000602082840312156133be576133bd613346565b5b60006133cc84828501613393565b91505092915050565b60008115159050919050565b6133ea816133d5565b82525050565b600060208201905061340560008301846133e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561344557808201518184015260208101905061342a565b83811115613454576000848401525b50505050565b6000601f19601f8301169050919050565b60006134768261340b565b6134808185613416565b9350613490818560208601613427565b6134998161345a565b840191505092915050565b600060208201905081810360008301526134be818461346b565b905092915050565b6000819050919050565b6134d9816134c6565b81146134e457600080fd5b50565b6000813590506134f6816134d0565b92915050565b60006020828403121561351257613511613346565b5b6000613520848285016134e7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061355482613529565b9050919050565b61356481613549565b82525050565b600060208201905061357f600083018461355b565b92915050565b61358e81613549565b811461359957600080fd5b50565b6000813590506135ab81613585565b92915050565b600080604083850312156135c8576135c7613346565b5b60006135d68582860161359c565b92505060206135e7858286016134e7565b9150509250929050565b6135fa816134c6565b82525050565b600060208201905061361560008301846135f1565b92915050565b60008060006060848603121561363457613633613346565b5b60006136428682870161359c565b93505060206136538682870161359c565b9250506040613664868287016134e7565b9150509250925092565b60006020828403121561368457613683613346565b5b60006136928482850161359c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d88261345a565b810181811067ffffffffffffffff821117156136f7576136f66136a0565b5b80604052505050565b600061370a61333c565b905061371682826136cf565b919050565b600067ffffffffffffffff821115613736576137356136a0565b5b602082029050602081019050919050565b600080fd5b600061375f61375a8461371b565b613700565b9050808382526020820190506020840283018581111561378257613781613747565b5b835b818110156137ab5780613797888261359c565b845260208401935050602081019050613784565b5050509392505050565b600082601f8301126137ca576137c961369b565b5b81356137da84826020860161374c565b91505092915050565b6000602082840312156137f9576137f8613346565b5b600082013567ffffffffffffffff8111156138175761381661334b565b5b613823848285016137b5565b91505092915050565b600080fd5b600067ffffffffffffffff82111561384c5761384b6136a0565b5b6138558261345a565b9050602081019050919050565b82818337600083830152505050565b600061388461387f84613831565b613700565b9050828152602081018484840111156138a05761389f61382c565b5b6138ab848285613862565b509392505050565b600082601f8301126138c8576138c761369b565b5b81356138d8848260208601613871565b91505092915050565b6000602082840312156138f7576138f6613346565b5b600082013567ffffffffffffffff8111156139155761391461334b565b5b613921848285016138b3565b91505092915050565b61393381613549565b82525050565b600067ffffffffffffffff82169050919050565b61395681613939565b82525050565b613965816133d5565b82525050565b606082016000820151613981600085018261392a565b506020820151613994602085018261394d565b5060408201516139a7604085018261395c565b50505050565b60006060820190506139c2600083018461396b565b92915050565b6139d1816133d5565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a613346565b5b6000613a198582860161359c565b9250506020613a2a858286016139df565b9150509250929050565b600067ffffffffffffffff821115613a4f57613a4e6136a0565b5b613a588261345a565b9050602081019050919050565b6000613a78613a7384613a34565b613700565b905082815260208101848484011115613a9457613a9361382c565b5b613a9f848285613862565b509392505050565b600082601f830112613abc57613abb61369b565b5b8135613acc848260208601613a65565b91505092915050565b60008060008060808587031215613aef57613aee613346565b5b6000613afd8782880161359c565b9450506020613b0e8782880161359c565b9350506040613b1f878288016134e7565b925050606085013567ffffffffffffffff811115613b4057613b3f61334b565b5b613b4c87828801613aa7565b91505092959194509250565b60008060408385031215613b6f57613b6e613346565b5b6000613b7d8582860161359c565b9250506020613b8e8582860161359c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bdf57607f821691505b602082108103613bf257613bf1613b98565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c2e602083613416565b9150613c3982613bf8565b602082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b6000613cc0603783613416565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b6000604082019050613d0b600083018561355b565b613d18602083018461355b565b9392505050565b600081519050613d2e816139c8565b92915050565b600060208284031215613d4a57613d49613346565b5b6000613d5884828501613d1f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d9b826134c6565b9150613da6836134c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddb57613dda613d61565b5b828201905092915050565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b6000613e1c601383613416565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613e8c826134c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ebe57613ebd613d61565b5b600182019050919050565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f25602283613416565b9150613f3082613ec9565b604082019050919050565b60006020820190508181036000830152613f5481613f18565b9050919050565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b6000613f91601383613416565b9150613f9c82613f5b565b602082019050919050565b60006020820190508181036000830152613fc081613f84565b9050919050565b6000613fd2826134c6565b9150613fdd836134c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613d61565b5b828202905092915050565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b6000614057601783613416565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b60006140c3601c83613416565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b600061412f601c83613416565b915061413a826140f9565b602082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141c1602c83613416565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461422481613bc7565b61422e81866141f7565b94506001821660008114614249576001811461425a5761428d565b60ff1983168652818601935061428d565b61426385614202565b60005b8381101561428557815481890152600182019150602081019050614266565b838801955050505b50505092915050565b60006142a18261340b565b6142ab81856141f7565b93506142bb818560208601613427565b80840191505092915050565b60006142d38286614217565b91506142df8285614296565b91506142eb8284614217565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614354602683613416565b915061435f826142f8565b604082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c4826134c6565b91506143cf836134c6565b9250826143df576143de61438a565b5b828204905092915050565b60006143f5826134c6565b9150614400836134c6565b92508282101561441357614412613d61565b5b828203905092915050565b6000614429826134c6565b9150614434836134c6565b9250826144445761444361438a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006144768261444f565b614480818561445a565b9350614490818560208601613427565b6144998161345a565b840191505092915050565b60006080820190506144b9600083018761355b565b6144c6602083018661355b565b6144d360408301856135f1565b81810360608301526144e5818461446b565b905095945050505050565b6000815190506144ff8161337c565b92915050565b60006020828403121561451b5761451a613346565b5b6000614529848285016144f0565b9150509291505056fea2646970667358221220c404c0c268b73fafa9e2aee963a36f3e781cfef57e8fda97bed69ea3ab8e107264736f6c634300080d0033
Deployed Bytecode Sourcemap
60033:3773:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30398:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33758:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35261:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34824:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62648:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30049:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62347:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63180:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60322:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62868:149;;;;;;;;;;;;;:::i;:::-;;63349:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62236:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33567:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60268:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30767:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62044:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19164:94;;;;;;;;;;;;;:::i;:::-;;61037:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62546:92;;;;;;;;;;;;;:::i;:::-;;61936:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18513:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62144:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63025:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60497:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61823:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33927:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62751:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60363:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35537:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63528:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61510:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61294:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60400:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35887:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19413:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60227:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60106:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30398:305;30500:4;30552:25;30537:40;;;:11;:40;;;;:105;;;;30609:33;30594:48;;;:11;:48;;;;30537:105;:158;;;;30659:36;30683:11;30659:23;:36::i;:::-;30537:158;30517:178;;30398:305;;;:::o;33758:100::-;33812:13;33845:5;33838:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33758:100;:::o;35261:204::-;35329:7;35354:16;35362:7;35354;:16::i;:::-;35349:64;;35379:34;;;;;;;;;;;;;;35349:64;35433:15;:24;35449:7;35433:24;;;;;;;;;;;;;;;;;;;;;35426:31;;35261:204;;;:::o;34824:371::-;34897:13;34913:24;34929:7;34913:15;:24::i;:::-;34897:40;;34958:5;34952:11;;:2;:11;;;34948:48;;34972:24;;;;;;;;;;;;;;34948:48;35029:5;35013:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35039:37;35056:5;35063:12;:10;:12::i;:::-;35039:16;:37::i;:::-;35038:38;35013:63;35009:138;;;35100:35;;;;;;;;;;;;;;35009:138;35159:28;35168:2;35172:7;35181:5;35159:8;:28::i;:::-;34886:309;34824:371;;:::o;62648:95::-;62690:4;62714:21;62707:28;;62648:95;:::o;30049:277::-;30093:7;30302:1;30286:12;;30270:13;;:28;30269:34;30262:41;;30049:277;:::o;62347:191::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62435:5:::1;62424:7;:16;;62416:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;62523:7;62511:9;:19;;;;62347:191:::0;:::o;63180:163::-;63281:4;4494:1;3308:42;4448:43;;;:47;4444:699;;;4735:10;4727:18;;:4;:18;;;4723:85;;63298:37:::1;63317:4;63323:2;63327:7;63298:18;:37::i;:::-;4786:7:::0;;4723:85;3308:42;4868:40;;;4917:4;4924:10;4868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3308:42;4964:40;;;5013:4;5020;4964:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4868:157;4822:310;;5105:10;5086:30;;;;;;;;;;;:::i;:::-;;;;;;;;4822:310;4444:699;63298:37:::1;63317:4;63323:2;63327:7;63298:18;:37::i;:::-;63180:163:::0;;;;;:::o;60322:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62868:149::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62918:13:::1;62934:21;62918:37;;62974:7;:5;:7::i;:::-;62966:25;;:35;62992:8;62966:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62907:110;62868:149::o:0;63349:171::-;63454:4;4494:1;3308:42;4448:43;;;:47;4444:699;;;4735:10;4727:18;;:4;:18;;;4723:85;;63471:41:::1;63494:4;63500:2;63504:7;63471:22;:41::i;:::-;4786:7:::0;;4723:85;3308:42;4868:40;;;4917:4;4924:10;4868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3308:42;4964:40;;;5013:4;5020;4964:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4868:157;4822:310;;5105:10;5086:30;;;;;;;;;;;:::i;:::-;;;;;;;;4822:310;4444:699;63471:41:::1;63494:4;63500:2;63504:7;63471:22;:41::i;:::-;63349:171:::0;;;;;:::o;62236:103::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62321:10:::1;62309:9;:22;;;;62236:103:::0;:::o;33567:124::-;33631:7;33658:20;33670:7;33658:11;:20::i;:::-;:25;;;33651:32;;33567:124;;;:::o;60268:47::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30767:206::-;30831:7;30872:1;30855:19;;:5;:19;;;30851:60;;30883:28;;;;;;;;;;;;;;30851:60;30937:12;:19;30950:5;30937:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30929:36;;30922:43;;30767:206;;;:::o;62044:92::-;62088:13;62121:7;62114:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62044:92;:::o;19164:94::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19229:21:::1;19247:1;19229:9;:21::i;:::-;19164:94::o:0;61037:252::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61155:9:::1;;61136:8;:15;61120:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;61112:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:6;61199:80;61219:8;:15;61215:1;:19;61199:80;;;61254:25;61264:8;61273:1;61264:11;;;;;;;;:::i;:::-;;;;;;;;61277:1;61254:9;:25::i;:::-;61236:3;;;;;:::i;:::-;;;;61199:80;;;;61037:252:::0;:::o;62546:92::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62616:14:::1;;;;;;;;;;;62615:15;62598:14;;:32;;;;;;;;;;;;;;;;;;62546:92::o:0;61936:100::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62023:5:::1;62010:10;:18;;;;;;;;;;;;:::i;:::-;;61936:100:::0;:::o;18513:87::-;18559:7;18586:6;;;;;;;;;;;18579:13;;18513:87;:::o;62144:86::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62216:6:::1;62208:5;:14;;;;62144:86:::0;:::o;63025:147::-;63106:21;;:::i;:::-;63146:20;63158:7;63146:11;:20::i;:::-;63139:27;;63025:147;;;:::o;60497:530::-;60579:1;60567:9;:13;:39;;;;;60597:9;;60584;:22;;60567:39;60559:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;60693:9;;60680;60664:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;60656:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60766:9;60758:5;;:17;;;;:::i;:::-;60745:9;:30;60737:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60864:9;;60851;60822:26;60837:10;60822:14;:26::i;:::-;:38;;;;:::i;:::-;:51;;60814:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;60925:14;;;;;;;;;;;60917:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;60985:32;60995:10;61007:9;60985;:32::i;:::-;60497:530;:::o;61823:107::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61911:11:::1;61901:7;:21;;;;;;;;;;;;:::i;:::-;;61823:107:::0;:::o;33927:104::-;33983:13;34016:7;34009:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33927:104;:::o;62751:109::-;62811:7;62834:20;62848:5;62834:13;:20::i;:::-;62827:27;;62751:109;;;:::o;60363:30::-;;;;:::o;35537:279::-;35640:12;:10;:12::i;:::-;35628:24;;:8;:24;;;35624:54;;35661:17;;;;;;;;;;;;;;35624:54;35736:8;35691:18;:32;35710:12;:10;:12::i;:::-;35691:32;;;;;;;;;;;;;;;:42;35724:8;35691:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35789:8;35760:48;;35775:12;:10;:12::i;:::-;35760:48;;;35799:8;35760:48;;;;;;:::i;:::-;;;;;;;;35537:279;;:::o;63528:228::-;63679:4;4494:1;3308:42;4448:43;;;:47;4444:699;;;4735:10;4727:18;;:4;:18;;;4723:85;;63701:47:::1;63724:4;63730:2;63734:7;63743:4;63701:22;:47::i;:::-;4786:7:::0;;4723:85;3308:42;4868:40;;;4917:4;4924:10;4868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;3308:42;4964:40;;;5013:4;5020;4964:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4868:157;4822:310;;5105:10;5086:30;;;;;;;;;;;:::i;:::-;;;;;;;;4822:310;4444:699;63701:47:::1;63724:4;63730:2;63734:7;63743:4;63701:22;:47::i;:::-;63528:228:::0;;;;;;:::o;61510:305::-;61584:13;61632:17;61640:8;61632:7;:17::i;:::-;61610:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;61765:7;61774:19;:8;:17;:19::i;:::-;61795:10;61748:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61734:73;;61510:305;;;:::o;61294:206::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61420:9:::1;;61412:4;61396:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;61388:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61468:24;61478:7;61487:4;61468:9;:24::i;:::-;61294:206:::0;;:::o;60400:32::-;;;;:::o;35887:164::-;35984:4;36008:18;:25;36027:5;36008:25;;;;;;;;;;;;;;;:35;36034:8;36008:35;;;;;;;;;;;;;;;;;;;;;;;;;36001:42;;35887:164;;;;:::o;19413:192::-;18744:12;:10;:12::i;:::-;18733:23;;:7;:5;:7::i;:::-;:23;;;18725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19522:1:::1;19502:22;;:8;:22;;::::0;19494:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19578:19;19588:8;19578:9;:19::i;:::-;19413:192:::0;:::o;60227:34::-;;;;;;;;;;;;;:::o;60106:28::-;;;;:::o;20518:157::-;20603:4;20642:25;20627:40;;;:11;:40;;;;20620:47;;20518:157;;;:::o;37212:144::-;37269:4;37303:13;;37293:7;:23;:55;;;;;37321:11;:20;37333:7;37321:20;;;;;;;;;;;:27;;;;;;;;;;;;37320:28;37293:55;37286:62;;37212:144;;;:::o;5653:98::-;5706:7;5733:10;5726:17;;5653:98;:::o;44418:196::-;44560:2;44533:15;:24;44549:7;44533:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44598:7;44594:2;44578:28;;44587:5;44578:28;;;;;;;;;;;;44418:196;;;:::o;36118:170::-;36252:28;36262:4;36268:2;36272:7;36252:9;:28::i;:::-;36118:170;;;:::o;36359:185::-;36497:39;36514:4;36520:2;36524:7;36497:39;;;;;;;;;;;;:16;:39::i;:::-;36359:185;;;:::o;32422:1083::-;32483:21;;:::i;:::-;32517:12;32532:7;32517:22;;32588:13;;32581:4;:20;32577:861;;;32622:31;32656:11;:17;32668:4;32656:17;;;;;;;;;;;32622:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32697:9;:16;;;32692:731;;32768:1;32742:28;;:9;:14;;;:28;;;32738:101;;32806:9;32799:16;;;;;;32738:101;33143:261;33150:4;33143:261;;;33183:6;;;;;;;;33228:11;:17;33240:4;33228:17;;;;;;;;;;;33216:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33302:1;33276:28;;:9;:14;;;:28;;;33272:109;;33344:9;33337:16;;;;;;33272:109;33143:261;;;32692:731;32603:835;32577:861;33466:31;;;;;;;;;;;;;;32422:1083;;;;:::o;19613:173::-;19669:16;19688:6;;;;;;;;;;;19669:25;;19714:8;19705:6;;:17;;;;;;;;;;;;;;;;;;19769:8;19738:40;;19759:8;19738:40;;;;;;;;;;;;19658:128;19613:173;:::o;37364:104::-;37433:27;37443:2;37447:8;37433:27;;;;;;;;;;;;:9;:27::i;:::-;37364:104;;:::o;31055:207::-;31116:7;31157:1;31140:19;;:5;:19;;;31136:59;;31168:27;;;;;;;;;;;;;;31136:59;31221:12;:19;31234:5;31221:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31213:41;;31206:48;;31055:207;;;:::o;36615:342::-;36782:28;36792:4;36798:2;36802:7;36782:9;:28::i;:::-;36826:48;36849:4;36855:2;36859:7;36868:5;36826:22;:48::i;:::-;36821:129;;36898:40;;;;;;;;;;;;;;36821:129;36615:342;;;;:::o;6118:723::-;6174:13;6404:1;6395:5;:10;6391:53;;6422:10;;;;;;;;;;;;;;;;;;;;;6391:53;6454:12;6469:5;6454:20;;6485:14;6510:78;6525:1;6517:4;:9;6510:78;;6543:8;;;;;:::i;:::-;;;;6574:2;6566:10;;;;;:::i;:::-;;;6510:78;;;6598:19;6630:6;6620:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6598:39;;6648:154;6664:1;6655:5;:10;6648:154;;6692:1;6682:11;;;;;:::i;:::-;;;6759:2;6751:5;:10;;;;:::i;:::-;6738:2;:24;;;;:::i;:::-;6725:39;;6708:6;6715;6708:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6788:2;6779:11;;;;;:::i;:::-;;;6648:154;;;6826:6;6812:21;;;;;6118:723;;;;:::o;39919:2112::-;40034:35;40072:20;40084:7;40072:11;:20::i;:::-;40034:58;;40105:22;40147:13;:18;;;40131:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40182:50;40199:13;:18;;;40219:12;:10;:12::i;:::-;40182:16;:50::i;:::-;40131:101;:154;;;;40273:12;:10;:12::i;:::-;40249:36;;:20;40261:7;40249:11;:20::i;:::-;:36;;;40131:154;40105:181;;40304:17;40299:66;;40330:35;;;;;;;;;;;;;;40299:66;40402:4;40380:26;;:13;:18;;;:26;;;40376:67;;40415:28;;;;;;;;;;;;;;40376:67;40472:1;40458:16;;:2;:16;;;40454:52;;40483:23;;;;;;;;;;;;;;40454:52;40519:43;40541:4;40547:2;40551:7;40560:1;40519:21;:43::i;:::-;40627:49;40644:1;40648:7;40657:13;:18;;;40627:8;:49::i;:::-;41002:1;40972:12;:18;40985:4;40972:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41046:1;41018:12;:16;41031:2;41018:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41092:2;41064:11;:20;41076:7;41064:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41154:15;41109:11;:20;41121:7;41109:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41422:19;41454:1;41444:7;:11;41422:33;;41515:1;41474:43;;:11;:24;41486:11;41474:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41470:445;;41699:13;;41685:11;:27;41681:219;;;41769:13;:18;;;41737:11;:24;41749:11;41737:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41852:13;:28;;;41810:11;:24;41822:11;41810:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41681:219;41470:445;40947:979;41962:7;41958:2;41943:27;;41952:4;41943:27;;;;;;;;;;;;41981:42;42002:4;42008:2;42012:7;42021:1;41981:20;:42::i;:::-;40023:2008;;39919:2112;;;:::o;37831:163::-;37954:32;37960:2;37964:8;37974:5;37981:4;37954:5;:32::i;:::-;37831:163;;;:::o;45179:790::-;45334:4;45355:15;:2;:13;;;:15::i;:::-;45351:611;;;45407:2;45391:36;;;45428:12;:10;:12::i;:::-;45442:4;45448:7;45457:5;45391:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45387:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45654:1;45637:6;:13;:18;45633:259;;45687:40;;;;;;;;;;;;;;45633:259;45842:6;45836:13;45827:6;45823:2;45819:15;45812:38;45387:520;45524:45;;;45514:55;;;:6;:55;;;;45507:62;;;;;45351:611;45946:4;45939:11;;45179:790;;;;;;;:::o;46617:159::-;;;;;:::o;47435:158::-;;;;;:::o;38253:1412::-;38392:20;38415:13;;38392:36;;38457:1;38443:16;;:2;:16;;;38439:48;;38468:19;;;;;;;;;;;;;;38439:48;38514:1;38502:8;:13;38498:44;;38524:18;;;;;;;;;;;;;;38498:44;38555:61;38585:1;38589:2;38593:12;38607:8;38555:21;:61::i;:::-;38928:8;38893:12;:16;38906:2;38893:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38992:8;38952:12;:16;38965:2;38952:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39051:2;39018:11;:25;39030:12;39018:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39118:15;39068:11;:25;39080:12;39068:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39151:20;39174:12;39151:35;;39208:9;39203:328;39223:8;39219:1;:12;39203:328;;;39287:12;39283:2;39262:38;;39279:1;39262:38;;;;;;;;;;;;39323:4;:68;;;;;39332:59;39363:1;39367:2;39371:12;39385:5;39332:22;:59::i;:::-;39331:60;39323:68;39319:164;;;39423:40;;;;;;;;;;;;;;39319:164;39501:14;;;;;;;39233:3;;;;;;;39203:328;;;;39563:12;39547:13;:28;;;;38868:719;39597:60;39626:1;39630:2;39634:12;39648:8;39597:20;:60::i;:::-;38381:1284;38253:1412;;;;:::o;8583:387::-;8643:4;8851:12;8918:7;8906:20;8898:28;;8961:1;8954:4;:8;8947:15;;;8583:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290: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:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:180;6421:77;6418:1;6411:88;6518:4;6515:1;6508:15;6542:4;6539:1;6532:15;6559:281;6642:27;6664:4;6642:27;:::i;:::-;6634:6;6630:40;6772:6;6760:10;6757:22;6736:18;6724:10;6721:34;6718:62;6715:88;;;6783:18;;:::i;:::-;6715:88;6823:10;6819:2;6812:22;6602:238;6559:281;;:::o;6846:129::-;6880:6;6907:20;;:::i;:::-;6897:30;;6936:33;6964:4;6956:6;6936:33;:::i;:::-;6846:129;;;:::o;6981:311::-;7058:4;7148:18;7140:6;7137:30;7134:56;;;7170:18;;:::i;:::-;7134:56;7220:4;7212:6;7208:17;7200:25;;7280:4;7274;7270:15;7262:23;;6981:311;;;:::o;7298:117::-;7407:1;7404;7397:12;7438:710;7534:5;7559:81;7575:64;7632:6;7575:64;:::i;:::-;7559:81;:::i;:::-;7550:90;;7660:5;7689:6;7682:5;7675:21;7723:4;7716:5;7712:16;7705:23;;7776:4;7768:6;7764:17;7756:6;7752:30;7805:3;7797:6;7794:15;7791:122;;;7824:79;;:::i;:::-;7791:122;7939:6;7922:220;7956:6;7951:3;7948:15;7922:220;;;8031:3;8060:37;8093:3;8081:10;8060:37;:::i;:::-;8055:3;8048:50;8127:4;8122:3;8118:14;8111:21;;7998:144;7982:4;7977:3;7973:14;7966:21;;7922:220;;;7926:21;7540:608;;7438:710;;;;;:::o;8171:370::-;8242:5;8291:3;8284:4;8276:6;8272:17;8268:27;8258:122;;8299:79;;:::i;:::-;8258:122;8416:6;8403:20;8441:94;8531:3;8523:6;8516:4;8508:6;8504:17;8441:94;:::i;:::-;8432:103;;8248:293;8171:370;;;;:::o;8547:539::-;8631:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:119;;;8686:79;;:::i;:::-;8648:119;8834:1;8823:9;8819:17;8806:31;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8777:302;8547:539;;;;:::o;9092:117::-;9201:1;9198;9191:12;9215:308;9277:4;9367:18;9359:6;9356:30;9353:56;;;9389:18;;:::i;:::-;9353:56;9427:29;9449:6;9427:29;:::i;:::-;9419:37;;9511:4;9505;9501:15;9493:23;;9215:308;;;:::o;9529:154::-;9613:6;9608:3;9603;9590:30;9675:1;9666:6;9661:3;9657:16;9650:27;9529:154;;;:::o;9689:412::-;9767:5;9792:66;9808:49;9850:6;9808:49;:::i;:::-;9792:66;:::i;:::-;9783:75;;9881:6;9874:5;9867:21;9919:4;9912:5;9908:16;9957:3;9948:6;9943:3;9939:16;9936:25;9933:112;;;9964:79;;:::i;:::-;9933:112;10054:41;10088:6;10083:3;10078;10054:41;:::i;:::-;9773:328;9689:412;;;;;:::o;10121:340::-;10177:5;10226:3;10219:4;10211:6;10207:17;10203:27;10193:122;;10234:79;;:::i;:::-;10193:122;10351:6;10338:20;10376:79;10451:3;10443:6;10436:4;10428:6;10424:17;10376:79;:::i;:::-;10367:88;;10183:278;10121:340;;;;:::o;10467:509::-;10536:6;10585:2;10573:9;10564:7;10560:23;10556:32;10553:119;;;10591:79;;:::i;:::-;10553:119;10739:1;10728:9;10724:17;10711:31;10769:18;10761:6;10758:30;10755:117;;;10791:79;;:::i;:::-;10755:117;10896:63;10951:7;10942:6;10931:9;10927:22;10896:63;:::i;:::-;10886:73;;10682:287;10467:509;;;;:::o;10982:108::-;11059:24;11077:5;11059:24;:::i;:::-;11054:3;11047:37;10982:108;;:::o;11096:101::-;11132:7;11172:18;11165:5;11161:30;11150:41;;11096:101;;;:::o;11203:105::-;11278:23;11295:5;11278:23;:::i;:::-;11273:3;11266:36;11203:105;;:::o;11314:99::-;11385:21;11400:5;11385:21;:::i;:::-;11380:3;11373:34;11314:99;;:::o;11489:699::-;11650:4;11645:3;11641:14;11737:4;11730:5;11726:16;11720:23;11756:63;11813:4;11808:3;11804:14;11790:12;11756:63;:::i;:::-;11665:164;11921:4;11914:5;11910:16;11904:23;11940:61;11995:4;11990:3;11986:14;11972:12;11940:61;:::i;:::-;11839:172;12095:4;12088:5;12084:16;12078:23;12114:57;12165:4;12160:3;12156:14;12142:12;12114:57;:::i;:::-;12021:160;11619:569;11489:699;;:::o;12194:350::-;12351:4;12389:2;12378:9;12374:18;12366:26;;12402:135;12534:1;12523:9;12519:17;12510:6;12402:135;:::i;:::-;12194:350;;;;:::o;12550:116::-;12620:21;12635:5;12620:21;:::i;:::-;12613:5;12610:32;12600:60;;12656:1;12653;12646:12;12600:60;12550:116;:::o;12672:133::-;12715:5;12753:6;12740:20;12731:29;;12769:30;12793:5;12769:30;:::i;:::-;12672:133;;;;:::o;12811:468::-;12876:6;12884;12933:2;12921:9;12912:7;12908:23;12904:32;12901:119;;;12939:79;;:::i;:::-;12901:119;13059:1;13084:53;13129:7;13120:6;13109:9;13105:22;13084:53;:::i;:::-;13074:63;;13030:117;13186:2;13212:50;13254:7;13245:6;13234:9;13230:22;13212:50;:::i;:::-;13202:60;;13157:115;12811:468;;;;;:::o;13285:307::-;13346:4;13436:18;13428:6;13425:30;13422:56;;;13458:18;;:::i;:::-;13422:56;13496:29;13518:6;13496:29;:::i;:::-;13488:37;;13580:4;13574;13570:15;13562:23;;13285:307;;;:::o;13598:410::-;13675:5;13700:65;13716:48;13757:6;13716:48;:::i;:::-;13700:65;:::i;:::-;13691:74;;13788:6;13781:5;13774:21;13826:4;13819:5;13815:16;13864:3;13855:6;13850:3;13846:16;13843:25;13840:112;;;13871:79;;:::i;:::-;13840:112;13961:41;13995:6;13990:3;13985;13961:41;:::i;:::-;13681:327;13598:410;;;;;:::o;14027:338::-;14082:5;14131:3;14124:4;14116:6;14112:17;14108:27;14098:122;;14139:79;;:::i;:::-;14098:122;14256:6;14243:20;14281:78;14355:3;14347:6;14340:4;14332:6;14328:17;14281:78;:::i;:::-;14272:87;;14088:277;14027:338;;;;:::o;14371:943::-;14466:6;14474;14482;14490;14539:3;14527:9;14518:7;14514:23;14510:33;14507:120;;;14546:79;;:::i;:::-;14507:120;14666:1;14691:53;14736:7;14727:6;14716:9;14712:22;14691:53;:::i;:::-;14681:63;;14637:117;14793:2;14819:53;14864:7;14855:6;14844:9;14840:22;14819:53;:::i;:::-;14809:63;;14764:118;14921:2;14947:53;14992:7;14983:6;14972:9;14968:22;14947:53;:::i;:::-;14937:63;;14892:118;15077:2;15066:9;15062:18;15049:32;15108:18;15100:6;15097:30;15094:117;;;15130:79;;:::i;:::-;15094:117;15235:62;15289:7;15280:6;15269:9;15265:22;15235:62;:::i;:::-;15225:72;;15020:287;14371:943;;;;;;;:::o;15320:474::-;15388:6;15396;15445:2;15433:9;15424:7;15420:23;15416:32;15413:119;;;15451:79;;:::i;:::-;15413:119;15571:1;15596:53;15641:7;15632:6;15621:9;15617:22;15596:53;:::i;:::-;15586:63;;15542:117;15698:2;15724:53;15769:7;15760:6;15749:9;15745:22;15724:53;:::i;:::-;15714:63;;15669:118;15320:474;;;;;:::o;15800:180::-;15848:77;15845:1;15838:88;15945:4;15942:1;15935:15;15969:4;15966:1;15959:15;15986:320;16030:6;16067:1;16061:4;16057:12;16047:22;;16114:1;16108:4;16104:12;16135:18;16125:81;;16191:4;16183:6;16179:17;16169:27;;16125:81;16253:2;16245:6;16242:14;16222:18;16219:38;16216:84;;16272:18;;:::i;:::-;16216:84;16037:269;15986:320;;;:::o;16312:182::-;16452:34;16448:1;16440:6;16436:14;16429:58;16312:182;:::o;16500:366::-;16642:3;16663:67;16727:2;16722:3;16663:67;:::i;:::-;16656:74;;16739:93;16828:3;16739:93;:::i;:::-;16857:2;16852:3;16848:12;16841:19;;16500:366;;;:::o;16872:419::-;17038:4;17076:2;17065:9;17061:18;17053:26;;17125:9;17119:4;17115:20;17111:1;17100:9;17096:17;17089:47;17153:131;17279:4;17153:131;:::i;:::-;17145:139;;16872:419;;;:::o;17297:242::-;17437:34;17433:1;17425:6;17421:14;17414:58;17506:25;17501:2;17493:6;17489:15;17482:50;17297:242;:::o;17545:366::-;17687:3;17708:67;17772:2;17767:3;17708:67;:::i;:::-;17701:74;;17784:93;17873:3;17784:93;:::i;:::-;17902:2;17897:3;17893:12;17886:19;;17545:366;;;:::o;17917:419::-;18083:4;18121:2;18110:9;18106:18;18098:26;;18170:9;18164:4;18160:20;18156:1;18145:9;18141:17;18134:47;18198:131;18324:4;18198:131;:::i;:::-;18190:139;;17917:419;;;:::o;18342:332::-;18463:4;18501:2;18490:9;18486:18;18478:26;;18514:71;18582:1;18571:9;18567:17;18558:6;18514:71;:::i;:::-;18595:72;18663:2;18652:9;18648:18;18639:6;18595:72;:::i;:::-;18342:332;;;;;:::o;18680:137::-;18734:5;18765:6;18759:13;18750:22;;18781:30;18805:5;18781:30;:::i;:::-;18680:137;;;;:::o;18823:345::-;18890:6;18939:2;18927:9;18918:7;18914:23;18910:32;18907:119;;;18945:79;;:::i;:::-;18907:119;19065:1;19090:61;19143:7;19134:6;19123:9;19119:22;19090:61;:::i;:::-;19080:71;;19036:125;18823:345;;;;:::o;19174:180::-;19222:77;19219:1;19212:88;19319:4;19316:1;19309:15;19343:4;19340:1;19333:15;19360:305;19400:3;19419:20;19437:1;19419:20;:::i;:::-;19414:25;;19453:20;19471:1;19453:20;:::i;:::-;19448:25;;19607:1;19539:66;19535:74;19532:1;19529:81;19526:107;;;19613:18;;:::i;:::-;19526:107;19657:1;19654;19650:9;19643:16;;19360:305;;;;:::o;19671:169::-;19811:21;19807:1;19799:6;19795:14;19788:45;19671:169;:::o;19846:366::-;19988:3;20009:67;20073:2;20068:3;20009:67;:::i;:::-;20002:74;;20085:93;20174:3;20085:93;:::i;:::-;20203:2;20198:3;20194:12;20187:19;;19846:366;;;:::o;20218:419::-;20384:4;20422:2;20411:9;20407:18;20399:26;;20471:9;20465:4;20461:20;20457:1;20446:9;20442:17;20435:47;20499:131;20625:4;20499:131;:::i;:::-;20491:139;;20218:419;;;:::o;20643:180::-;20691:77;20688:1;20681:88;20788:4;20785:1;20778:15;20812:4;20809:1;20802:15;20829:233;20868:3;20891:24;20909:5;20891:24;:::i;:::-;20882:33;;20937:66;20930:5;20927:77;20924:103;;21007:18;;:::i;:::-;20924:103;21054:1;21047:5;21043:13;21036:20;;20829:233;;;:::o;21068:221::-;21208:34;21204:1;21196:6;21192:14;21185:58;21277:4;21272:2;21264:6;21260:15;21253:29;21068:221;:::o;21295:366::-;21437:3;21458:67;21522:2;21517:3;21458:67;:::i;:::-;21451:74;;21534:93;21623:3;21534:93;:::i;:::-;21652:2;21647:3;21643:12;21636:19;;21295:366;;;:::o;21667:419::-;21833:4;21871:2;21860:9;21856:18;21848:26;;21920:9;21914:4;21910:20;21906:1;21895:9;21891:17;21884:47;21948:131;22074:4;21948:131;:::i;:::-;21940:139;;21667:419;;;:::o;22092:169::-;22232:21;22228:1;22220:6;22216:14;22209:45;22092:169;:::o;22267:366::-;22409:3;22430:67;22494:2;22489:3;22430:67;:::i;:::-;22423:74;;22506:93;22595:3;22506:93;:::i;:::-;22624:2;22619:3;22615:12;22608:19;;22267:366;;;:::o;22639:419::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:131;23046:4;22920:131;:::i;:::-;22912:139;;22639:419;;;:::o;23064:348::-;23104:7;23127:20;23145:1;23127:20;:::i;:::-;23122:25;;23161:20;23179:1;23161:20;:::i;:::-;23156:25;;23349:1;23281:66;23277:74;23274:1;23271:81;23266:1;23259:9;23252:17;23248:105;23245:131;;;23356:18;;:::i;:::-;23245:131;23404:1;23401;23397:9;23386:20;;23064:348;;;;:::o;23418:173::-;23558:25;23554:1;23546:6;23542:14;23535:49;23418:173;:::o;23597:366::-;23739:3;23760:67;23824:2;23819:3;23760:67;:::i;:::-;23753:74;;23836:93;23925:3;23836:93;:::i;:::-;23954:2;23949:3;23945:12;23938:19;;23597:366;;;:::o;23969:419::-;24135:4;24173:2;24162:9;24158:18;24150:26;;24222:9;24216:4;24212:20;24208:1;24197:9;24193:17;24186:47;24250:131;24376:4;24250:131;:::i;:::-;24242:139;;23969:419;;;:::o;24394:178::-;24534:30;24530:1;24522:6;24518:14;24511:54;24394:178;:::o;24578:366::-;24720:3;24741:67;24805:2;24800:3;24741:67;:::i;:::-;24734:74;;24817:93;24906:3;24817:93;:::i;:::-;24935:2;24930:3;24926:12;24919:19;;24578:366;;;:::o;24950:419::-;25116:4;25154:2;25143:9;25139:18;25131:26;;25203:9;25197:4;25193:20;25189:1;25178:9;25174:17;25167:47;25231:131;25357:4;25231:131;:::i;:::-;25223:139;;24950:419;;;:::o;25375:178::-;25515:30;25511:1;25503:6;25499:14;25492:54;25375:178;:::o;25559:366::-;25701:3;25722:67;25786:2;25781:3;25722:67;:::i;:::-;25715:74;;25798:93;25887:3;25798:93;:::i;:::-;25916:2;25911:3;25907:12;25900:19;;25559:366;;;:::o;25931:419::-;26097:4;26135:2;26124:9;26120:18;26112:26;;26184:9;26178:4;26174:20;26170:1;26159:9;26155:17;26148:47;26212:131;26338:4;26212:131;:::i;:::-;26204:139;;25931:419;;;:::o;26356:231::-;26496:34;26492:1;26484:6;26480:14;26473:58;26565:14;26560:2;26552:6;26548:15;26541:39;26356:231;:::o;26593:366::-;26735:3;26756:67;26820:2;26815:3;26756:67;:::i;:::-;26749:74;;26832:93;26921:3;26832:93;:::i;:::-;26950:2;26945:3;26941:12;26934:19;;26593:366;;;:::o;26965:419::-;27131:4;27169:2;27158:9;27154:18;27146:26;;27218:9;27212:4;27208:20;27204:1;27193:9;27189:17;27182:47;27246:131;27372:4;27246:131;:::i;:::-;27238:139;;26965:419;;;:::o;27390:148::-;27492:11;27529:3;27514:18;;27390:148;;;;:::o;27544:141::-;27593:4;27616:3;27608:11;;27639:3;27636:1;27629:14;27673:4;27670:1;27660:18;27652:26;;27544:141;;;:::o;27715:845::-;27818:3;27855:5;27849:12;27884:36;27910:9;27884:36;:::i;:::-;27936:89;28018:6;28013:3;27936:89;:::i;:::-;27929:96;;28056:1;28045:9;28041:17;28072:1;28067:137;;;;28218:1;28213:341;;;;28034:520;;28067:137;28151:4;28147:9;28136;28132:25;28127:3;28120:38;28187:6;28182:3;28178:16;28171:23;;28067:137;;28213:341;28280:38;28312:5;28280:38;:::i;:::-;28340:1;28354:154;28368:6;28365:1;28362:13;28354:154;;;28442:7;28436:14;28432:1;28427:3;28423:11;28416:35;28492:1;28483:7;28479:15;28468:26;;28390:4;28387:1;28383:12;28378:17;;28354:154;;;28537:6;28532:3;28528:16;28521:23;;28220:334;;28034:520;;27822:738;;27715:845;;;;:::o;28566:377::-;28672:3;28700:39;28733:5;28700:39;:::i;:::-;28755:89;28837:6;28832:3;28755:89;:::i;:::-;28748:96;;28853:52;28898:6;28893:3;28886:4;28879:5;28875:16;28853:52;:::i;:::-;28930:6;28925:3;28921:16;28914:23;;28676:267;28566:377;;;;:::o;28949:583::-;29171:3;29193:92;29281:3;29272:6;29193:92;:::i;:::-;29186:99;;29302:95;29393:3;29384:6;29302:95;:::i;:::-;29295:102;;29414:92;29502:3;29493:6;29414:92;:::i;:::-;29407:99;;29523:3;29516:10;;28949:583;;;;;;:::o;29538:225::-;29678:34;29674:1;29666:6;29662:14;29655:58;29747:8;29742:2;29734:6;29730:15;29723:33;29538:225;:::o;29769:366::-;29911:3;29932:67;29996:2;29991:3;29932:67;:::i;:::-;29925:74;;30008:93;30097:3;30008:93;:::i;:::-;30126:2;30121:3;30117:12;30110:19;;29769:366;;;:::o;30141:419::-;30307:4;30345:2;30334:9;30330:18;30322:26;;30394:9;30388:4;30384:20;30380:1;30369:9;30365:17;30358:47;30422:131;30548:4;30422:131;:::i;:::-;30414:139;;30141:419;;;:::o;30566:180::-;30614:77;30611:1;30604:88;30711:4;30708:1;30701:15;30735:4;30732:1;30725:15;30752:185;30792:1;30809:20;30827:1;30809:20;:::i;:::-;30804:25;;30843:20;30861:1;30843:20;:::i;:::-;30838:25;;30882:1;30872:35;;30887:18;;:::i;:::-;30872:35;30929:1;30926;30922:9;30917:14;;30752:185;;;;:::o;30943:191::-;30983:4;31003:20;31021:1;31003:20;:::i;:::-;30998:25;;31037:20;31055:1;31037:20;:::i;:::-;31032:25;;31076:1;31073;31070:8;31067:34;;;31081:18;;:::i;:::-;31067:34;31126:1;31123;31119:9;31111:17;;30943:191;;;;:::o;31140:176::-;31172:1;31189:20;31207:1;31189:20;:::i;:::-;31184:25;;31223:20;31241:1;31223:20;:::i;:::-;31218:25;;31262:1;31252:35;;31267:18;;:::i;:::-;31252:35;31308:1;31305;31301:9;31296:14;;31140:176;;;;:::o;31322:98::-;31373:6;31407:5;31401:12;31391:22;;31322:98;;;:::o;31426:168::-;31509:11;31543:6;31538:3;31531:19;31583:4;31578:3;31574:14;31559:29;;31426:168;;;;:::o;31600:360::-;31686:3;31714:38;31746:5;31714:38;:::i;:::-;31768:70;31831:6;31826:3;31768:70;:::i;:::-;31761:77;;31847:52;31892:6;31887:3;31880:4;31873:5;31869:16;31847:52;:::i;:::-;31924:29;31946:6;31924:29;:::i;:::-;31919:3;31915:39;31908:46;;31690:270;31600:360;;;;:::o;31966:640::-;32161:4;32199:3;32188:9;32184:19;32176:27;;32213:71;32281:1;32270:9;32266:17;32257:6;32213:71;:::i;:::-;32294:72;32362:2;32351:9;32347:18;32338:6;32294:72;:::i;:::-;32376;32444:2;32433:9;32429:18;32420:6;32376:72;:::i;:::-;32495:9;32489:4;32485:20;32480:2;32469:9;32465:18;32458:48;32523:76;32594:4;32585:6;32523:76;:::i;:::-;32515:84;;31966:640;;;;;;;:::o;32612:141::-;32668:5;32699:6;32693:13;32684:22;;32715:32;32741:5;32715:32;:::i;:::-;32612:141;;;;:::o;32759:349::-;32828:6;32877:2;32865:9;32856:7;32852:23;32848:32;32845:119;;;32883:79;;:::i;:::-;32845:119;33003:1;33028:63;33083:7;33074:6;33063:9;33059:22;33028:63;:::i;:::-;33018:73;;32974:127;32759:349;;;;:::o
Swarm Source
ipfs://c404c0c268b73fafa9e2aee963a36f3e781cfef57e8fda97bed69ea3ab8e1072
Loading...
Loading
Loading...
Loading
OVERVIEW
It's Christmas time, let's give some gifts away! Real NFT's included. Rarity reveal after mintout. Prizes/gifts raffle two weeks after that in a live stream on Twitch. Check gifts wallet here: [giftfully.eth](https://opensea.io/GIFTFULLY). More items will be added!! (90% of ro...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.