ERC-721
Overview
Max Total Supply
2,561 LMMM
Holders
372
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LMMMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LilMissMrMan
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-25 */ /** *Submitted for verification at Etherscan.io on 2022-07-22 */ /** *Submitted for verification at Etherscan.io on 2022-07-20 */ // File: @openzeppelin/contracts/utils/Strings.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contract.sol pragma solidity ^0.8.7; contract LilMissMrMan is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = ""; bool public isPublicSaleActive = false; uint256 public maxSupply = 3333; uint256 public MAX_MINTS_PER_TX = 20; uint256 public PUBLIC_SALE_PRICE = 0.0015 ether; uint256 public NUM_FREE_MINTS = 1111; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public freeNFTAlreadyMinted = 0; constructor() ERC721A("LilMissMrMan", "LMMM") {} function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is paused."); require(totalSupply() + numberOfTokens < maxSupply + 1, "Maximum supply exceeded."); require(numberOfTokens <= MAX_MINTS_PER_TX, "Maximum mints per transaction exceeded."); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS) { require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 1"); } else { uint sender_balance = balanceOf(msg.sender); if (sender_balance + numberOfTokens > MAX_FREE_PER_WALLET) { if (sender_balance < MAX_FREE_PER_WALLET) { uint free_available = MAX_FREE_PER_WALLET - sender_balance; uint to_be_paid = numberOfTokens - free_available; require(PUBLIC_SALE_PRICE * to_be_paid <= msg.value, "Invalid ETH value sent. Error Code: 2"); freeNFTAlreadyMinted += free_available; } else { require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 3"); } } else { require(numberOfTokens <= MAX_FREE_PER_WALLET, "Maximum mints per transaction exceeded"); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require(quantity > 0, "Invalid mint amount"); require(totalSupply() + quantity <= maxSupply, "Maximum supply exceeded"); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString())); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function getIsPublicSaleActive() public view returns (bool) { return isPublicSaleActive; } function getFreeNftAlreadyMinted() public view returns (uint256) { return freeNFTAlreadyMinted; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function getSalePrice() public view returns (uint256) { return PUBLIC_SALE_PRICE; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeNftAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000232565b506000600b60006101000a81548160ff021916908315150217905550610d05600c556014600d556605543df729c000600e55610457600f55600160105560006011553480156200007a57600080fd5b506040518060400160405280600c81526020017f4c696c4d6973734d724d616e00000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4d4d4d000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000232565b5080600390805190602001906200011892919062000232565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016460201b60201c565b6200016c60201b60201c565b600160098190555062000347565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61371480620003576000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612be5565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c00565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e02565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612b7e565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e02565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e02565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612be5565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e02565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612b7e565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e02565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612be5565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e02565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612b7e565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c00565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e02565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e02565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e02565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c00565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c00565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e02565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612be5565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610912906130d2565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906130d2565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612de2565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f7906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611123906130d2565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d02565b60405180910390fd5b6001600c546111f69190612f07565b816111ff610b6a565b6112099190612f07565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612ca2565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612da2565b60405180910390fd5b600f548160115461129f9190612f07565b11156112fa573481600e546112b49190612f8e565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612d82565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f07565b111561140e576010548110156113b8576000816010546113369190612fe8565b9050600081846113469190612fe8565b90503481600e546113579190612f8e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cc2565b60405180910390fd5b81601160008282546113aa9190612f07565b925050819055505050611409565b3482600e546113c79190612f8e565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c22565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d62565b60405180910390fd5b81601160008282546114659190612f07565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612be5565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d42565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b3a565b6040516020818303038152906040529050919050565b600a80546116f6906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611722906130d2565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612dc2565b60405180910390fd5b600c5481611868610b6a565b6118729190612f07565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612ce2565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c42565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d22565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612c82565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b69565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c62565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612b99565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613135565b915050600a82611f6c9190612f5d565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e61326b565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190612fe8565b9150600a85611fe9919061317e565b6030611ff59190612f07565b60f81b81838151811061200b5761200a61323c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f5d565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f8906130d2565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e42565b612e1d565b9050828152602081018484840111156123be576123bd61329f565b5b6123c9848285613090565b509392505050565b60006123e46123df84612e73565b612e1d565b905082815260208101848484011115612400576123ff61329f565b5b61240b848285613090565b509392505050565b60008135905061242281613682565b92915050565b60008135905061243781613699565b92915050565b60008135905061244c816136b0565b92915050565b600081519050612461816136b0565b92915050565b600082601f83011261247c5761247b61329a565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a961329a565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d2816136c7565b92915050565b6000602082840312156124ee576124ed6132a9565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132a9565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132a9565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132a9565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132a4565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132a9565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132a9565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132a9565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132a9565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132a9565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132a9565b5b600082013567ffffffffffffffff811115612756576127556132a4565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132a9565b5b600061278f848285016124c3565b91505092915050565b6127a18161301c565b82525050565b6127b08161302e565b82525050565b60006127c182612eb9565b6127cb8185612ecf565b93506127db81856020860161309f565b6127e4816132ae565b840191505092915050565b60006127fa82612ec4565b6128048185612eeb565b935061281481856020860161309f565b61281d816132ae565b840191505092915050565b600061283382612ec4565b61283d8185612efc565b935061284d81856020860161309f565b80840191505092915050565b60008154612866816130d2565b6128708186612efc565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ea4565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612eeb565b91506128f0826132bf565b604082019050919050565b6000612908602683612eeb565b91506129138261330e565b604082019050919050565b600061292b603a83612eeb565b91506129368261335d565b604082019050919050565b600061294e601d83612eeb565b9150612959826133ac565b602082019050919050565b6000612971601883612eeb565b915061297c826133d5565b602082019050919050565b6000612994602583612eeb565b915061299f826133fe565b604082019050919050565b60006129b7601783612eeb565b91506129c28261344d565b602082019050919050565b60006129da601683612eeb565b91506129e582613476565b602082019050919050565b60006129fd602083612eeb565b9150612a088261349f565b602082019050919050565b6000612a20602f83612eeb565b9150612a2b826134c8565b604082019050919050565b6000612a43602683612eeb565b9150612a4e82613517565b604082019050919050565b6000612a66602583612eeb565b9150612a7182613566565b604082019050919050565b6000612a89602783612eeb565b9150612a94826135b5565b604082019050919050565b6000612aac600083612ee0565b9150612ab782613604565b600082019050919050565b6000612acf601383612eeb565b9150612ada82613607565b602082019050919050565b6000612af2601f83612eeb565b9150612afd82613630565b602082019050919050565b6000612b15600183612efc565b9150612b2082613659565b600182019050919050565b612b3481613086565b82525050565b6000612b468285612859565b9150612b5182612b08565b9150612b5d8284612828565b91508190509392505050565b6000612b7482612a9f565b9150819050919050565b6000602082019050612b936000830184612798565b92915050565b6000608082019050612bae6000830187612798565b612bbb6020830186612798565b612bc86040830185612b2b565b8181036060830152612bda81846127b6565b905095945050505050565b6000602082019050612bfa60008301846127a7565b92915050565b60006020820190508181036000830152612c1a81846127ef565b905092915050565b60006020820190508181036000830152612c3b816128d8565b9050919050565b60006020820190508181036000830152612c5b816128fb565b9050919050565b60006020820190508181036000830152612c7b8161291e565b9050919050565b60006020820190508181036000830152612c9b81612941565b9050919050565b60006020820190508181036000830152612cbb81612964565b9050919050565b60006020820190508181036000830152612cdb81612987565b9050919050565b60006020820190508181036000830152612cfb816129aa565b9050919050565b60006020820190508181036000830152612d1b816129cd565b9050919050565b60006020820190508181036000830152612d3b816129f0565b9050919050565b60006020820190508181036000830152612d5b81612a13565b9050919050565b60006020820190508181036000830152612d7b81612a36565b9050919050565b60006020820190508181036000830152612d9b81612a59565b9050919050565b60006020820190508181036000830152612dbb81612a7c565b9050919050565b60006020820190508181036000830152612ddb81612ac2565b9050919050565b60006020820190508181036000830152612dfb81612ae5565b9050919050565b6000602082019050612e176000830184612b2b565b92915050565b6000612e27612e38565b9050612e338282613104565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5d57612e5c61326b565b5b612e66826132ae565b9050602081019050919050565b600067ffffffffffffffff821115612e8e57612e8d61326b565b5b612e97826132ae565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f1282613086565b9150612f1d83613086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f516131af565b5b828201905092915050565b6000612f6882613086565b9150612f7383613086565b925082612f8357612f826131de565b5b828204905092915050565b6000612f9982613086565b9150612fa483613086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdd57612fdc6131af565b5b828202905092915050565b6000612ff382613086565b9150612ffe83613086565b925082821015613011576130106131af565b5b828203905092915050565b600061302782613066565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bd5780820151818401526020810190506130a2565b838111156130cc576000848401525b50505050565b600060028204905060018216806130ea57607f821691505b602082108114156130fe576130fd61320d565b5b50919050565b61310d826132ae565b810181811067ffffffffffffffff8211171561312c5761312b61326b565b5b80604052505050565b600061314082613086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613173576131726131af565b5b600182019050919050565b600061318982613086565b915061319483613086565b9250826131a4576131a36131de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61368b8161301c565b811461369657600080fd5b50565b6136a28161302e565b81146136ad57600080fd5b50565b6136b98161303a565b81146136c457600080fd5b50565b6136d081613086565b81146136db57600080fd5b5056fea26469706673582212201120f21613b71974c816382ecb2ed807d45f0118c7b88e00eef43effd244950364736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612be5565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c00565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e02565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612b7e565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e02565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e02565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612be5565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e02565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612b7e565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e02565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612be5565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e02565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612b7e565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c00565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e02565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e02565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e02565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c00565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c00565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e02565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612be5565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610912906130d2565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906130d2565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612de2565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f7906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611123906130d2565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d02565b60405180910390fd5b6001600c546111f69190612f07565b816111ff610b6a565b6112099190612f07565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612ca2565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612da2565b60405180910390fd5b600f548160115461129f9190612f07565b11156112fa573481600e546112b49190612f8e565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612d82565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f07565b111561140e576010548110156113b8576000816010546113369190612fe8565b9050600081846113469190612fe8565b90503481600e546113579190612f8e565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cc2565b60405180910390fd5b81601160008282546113aa9190612f07565b925050819055505050611409565b3482600e546113c79190612f8e565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c22565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d62565b60405180910390fd5b81601160008282546114659190612f07565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612be5565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d42565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b3a565b6040516020818303038152906040529050919050565b600a80546116f6906130d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611722906130d2565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612dc2565b60405180910390fd5b600c5481611868610b6a565b6118729190612f07565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612ce2565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c42565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d22565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612c82565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b69565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c62565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612b99565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613135565b915050600a82611f6c9190612f5d565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e61326b565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190612fe8565b9150600a85611fe9919061317e565b6030611ff59190612f07565b60f81b81838151811061200b5761200a61323c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f5d565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f8906130d2565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e42565b612e1d565b9050828152602081018484840111156123be576123bd61329f565b5b6123c9848285613090565b509392505050565b60006123e46123df84612e73565b612e1d565b905082815260208101848484011115612400576123ff61329f565b5b61240b848285613090565b509392505050565b60008135905061242281613682565b92915050565b60008135905061243781613699565b92915050565b60008135905061244c816136b0565b92915050565b600081519050612461816136b0565b92915050565b600082601f83011261247c5761247b61329a565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a961329a565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d2816136c7565b92915050565b6000602082840312156124ee576124ed6132a9565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132a9565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132a9565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132a9565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132a4565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132a9565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132a9565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132a9565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132a9565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132a9565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132a9565b5b600082013567ffffffffffffffff811115612756576127556132a4565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132a9565b5b600061278f848285016124c3565b91505092915050565b6127a18161301c565b82525050565b6127b08161302e565b82525050565b60006127c182612eb9565b6127cb8185612ecf565b93506127db81856020860161309f565b6127e4816132ae565b840191505092915050565b60006127fa82612ec4565b6128048185612eeb565b935061281481856020860161309f565b61281d816132ae565b840191505092915050565b600061283382612ec4565b61283d8185612efc565b935061284d81856020860161309f565b80840191505092915050565b60008154612866816130d2565b6128708186612efc565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ea4565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612eeb565b91506128f0826132bf565b604082019050919050565b6000612908602683612eeb565b91506129138261330e565b604082019050919050565b600061292b603a83612eeb565b91506129368261335d565b604082019050919050565b600061294e601d83612eeb565b9150612959826133ac565b602082019050919050565b6000612971601883612eeb565b915061297c826133d5565b602082019050919050565b6000612994602583612eeb565b915061299f826133fe565b604082019050919050565b60006129b7601783612eeb565b91506129c28261344d565b602082019050919050565b60006129da601683612eeb565b91506129e582613476565b602082019050919050565b60006129fd602083612eeb565b9150612a088261349f565b602082019050919050565b6000612a20602f83612eeb565b9150612a2b826134c8565b604082019050919050565b6000612a43602683612eeb565b9150612a4e82613517565b604082019050919050565b6000612a66602583612eeb565b9150612a7182613566565b604082019050919050565b6000612a89602783612eeb565b9150612a94826135b5565b604082019050919050565b6000612aac600083612ee0565b9150612ab782613604565b600082019050919050565b6000612acf601383612eeb565b9150612ada82613607565b602082019050919050565b6000612af2601f83612eeb565b9150612afd82613630565b602082019050919050565b6000612b15600183612efc565b9150612b2082613659565b600182019050919050565b612b3481613086565b82525050565b6000612b468285612859565b9150612b5182612b08565b9150612b5d8284612828565b91508190509392505050565b6000612b7482612a9f565b9150819050919050565b6000602082019050612b936000830184612798565b92915050565b6000608082019050612bae6000830187612798565b612bbb6020830186612798565b612bc86040830185612b2b565b8181036060830152612bda81846127b6565b905095945050505050565b6000602082019050612bfa60008301846127a7565b92915050565b60006020820190508181036000830152612c1a81846127ef565b905092915050565b60006020820190508181036000830152612c3b816128d8565b9050919050565b60006020820190508181036000830152612c5b816128fb565b9050919050565b60006020820190508181036000830152612c7b8161291e565b9050919050565b60006020820190508181036000830152612c9b81612941565b9050919050565b60006020820190508181036000830152612cbb81612964565b9050919050565b60006020820190508181036000830152612cdb81612987565b9050919050565b60006020820190508181036000830152612cfb816129aa565b9050919050565b60006020820190508181036000830152612d1b816129cd565b9050919050565b60006020820190508181036000830152612d3b816129f0565b9050919050565b60006020820190508181036000830152612d5b81612a13565b9050919050565b60006020820190508181036000830152612d7b81612a36565b9050919050565b60006020820190508181036000830152612d9b81612a59565b9050919050565b60006020820190508181036000830152612dbb81612a7c565b9050919050565b60006020820190508181036000830152612ddb81612ac2565b9050919050565b60006020820190508181036000830152612dfb81612ae5565b9050919050565b6000602082019050612e176000830184612b2b565b92915050565b6000612e27612e38565b9050612e338282613104565b919050565b6000604051905090565b600067ffffffffffffffff821115612e5d57612e5c61326b565b5b612e66826132ae565b9050602081019050919050565b600067ffffffffffffffff821115612e8e57612e8d61326b565b5b612e97826132ae565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f1282613086565b9150612f1d83613086565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5257612f516131af565b5b828201905092915050565b6000612f6882613086565b9150612f7383613086565b925082612f8357612f826131de565b5b828204905092915050565b6000612f9982613086565b9150612fa483613086565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fdd57612fdc6131af565b5b828202905092915050565b6000612ff382613086565b9150612ffe83613086565b925082821015613011576130106131af565b5b828203905092915050565b600061302782613066565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130bd5780820151818401526020810190506130a2565b838111156130cc576000848401525b50505050565b600060028204905060018216806130ea57607f821691505b602082108114156130fe576130fd61320d565b5b50919050565b61310d826132ae565b810181811067ffffffffffffffff8211171561312c5761312b61326b565b5b80604052505050565b600061314082613086565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613173576131726131af565b5b600182019050919050565b600061318982613086565b915061319483613086565b9250826131a4576131a36131de565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61368b8161301c565b811461369657600080fd5b50565b6136a28161302e565b81146136ad57600080fd5b50565b6136b98161303a565b81146136c457600080fd5b50565b6136d081613086565b81146136db57600080fd5b5056fea26469706673582212201120f21613b71974c816382ecb2ed807d45f0118c7b88e00eef43effd244950364736f6c63430008070033
Deployed Bytecode Sourcemap
62315:3997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32119:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37766:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62600:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39712:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39260:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65685:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31173:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65929:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62739:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62476:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66183:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48977:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65531:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65820:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64695:142;;;;;;;;;;;;;:::i;:::-;;40602:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64331:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37555:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32798:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16758:103;;;;;;;;;;;;;:::i;:::-;;65278:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65401:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16110:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37935:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62653:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62695:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66050:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62840:1485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39988:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40858:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62558:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64843:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62438:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62521:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64445:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17016:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32119:615;32204:4;32519:10;32504:25;;:11;:25;;;;:102;;;;32596:10;32581:25;;:11;:25;;;;32504:102;:179;;;;32673:10;32658:25;;:11;:25;;;;32504:179;32484:199;;32119:615;;;:::o;37766:100::-;37820:13;37853:5;37846:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37766:100;:::o;62600:48::-;;;;:::o;39712:204::-;39780:7;39805:16;39813:7;39805;:16::i;:::-;39800:64;;39830:34;;;;;;;;;;;;;;39800:64;39884:15;:24;39900:7;39884:24;;;;;;;;;;;;;;;;;;;;;39877:31;;39712:204;;;:::o;39260:386::-;39333:13;39349:16;39357:7;39349;:16::i;:::-;39333:32;;39405:5;39382:28;;:19;:17;:19::i;:::-;:28;;;39378:175;;39430:44;39447:5;39454:19;:17;:19::i;:::-;39430:16;:44::i;:::-;39425:128;;39502:35;;;;;;;;;;;;;;39425:128;39378:175;39592:2;39565:15;:24;39581:7;39565:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39630:7;39626:2;39610:28;;39619:5;39610:28;;;;;;;;;;;;39322:324;39260:386;;:::o;65685:129::-;15996:13;:11;:13::i;:::-;65795::::1;65778:14;:30;;;;65685:129:::0;:::o;31173:315::-;31226:7;31454:15;:13;:15::i;:::-;31439:12;;31423:13;;:28;:46;31416:53;;31173:315;:::o;65929:115::-;15996:13;:11;:13::i;:::-;66032:6:::1;66012:17;:26;;;;65929:115:::0;:::o;62739:40::-;;;;:::o;62476:38::-;;;;;;;;;;;;;:::o;66183:126::-;15996:13;:11;:13::i;:::-;66297:6:::1;66275:19;:28;;;;66183:126:::0;:::o;48977:2800::-;49111:27;49141;49160:7;49141:18;:27::i;:::-;49111:57;;49226:4;49185:45;;49201:19;49185:45;;;49181:86;;49239:28;;;;;;;;;;;;;;49181:86;49281:27;49310:23;49337:28;49357:7;49337:19;:28::i;:::-;49280:85;;;;49465:62;49484:15;49501:4;49507:19;:17;:19::i;:::-;49465:18;:62::i;:::-;49460:174;;49547:43;49564:4;49570:19;:17;:19::i;:::-;49547:16;:43::i;:::-;49542:92;;49599:35;;;;;;;;;;;;;;49542:92;49460:174;49665:1;49651:16;;:2;:16;;;49647:52;;;49676:23;;;;;;;;;;;;;;49647:52;49712:43;49734:4;49740:2;49744:7;49753:1;49712:21;:43::i;:::-;49848:15;49845:160;;;49988:1;49967:19;49960:30;49845:160;50383:18;:24;50402:4;50383:24;;;;;;;;;;;;;;;;50381:26;;;;;;;;;;;;50452:18;:22;50471:2;50452:22;;;;;;;;;;;;;;;;50450:24;;;;;;;;;;;50774:145;50811:2;50859:45;50874:4;50880:2;50884:19;50859:14;:45::i;:::-;28401:8;50832:72;50774:18;:145::i;:::-;50745:17;:26;50763:7;50745:26;;;;;;;;;;;:174;;;;51089:1;28401:8;51039:19;:46;:51;51035:626;;;51111:19;51143:1;51133:7;:11;51111:33;;51300:1;51266:17;:30;51284:11;51266:30;;;;;;;;;;;;:35;51262:384;;;51404:13;;51389:11;:28;51385:242;;51584:19;51551:17;:30;51569:11;51551:30;;;;;;;;;;;:52;;;;51385:242;51262:384;51092:569;51035:626;51708:7;51704:2;51689:27;;51698:4;51689:27;;;;;;;;;;;;51727:42;51748:4;51754:2;51758:7;51767:1;51727:20;:42::i;:::-;49100:2677;;;48977:2800;;;:::o;65531:148::-;15996:13;:11;:13::i;:::-;65654:19:::1;65633:18;;:40;;;;;;;;;;;;;;;;;;65531:148:::0;:::o;65820:103::-;65874:7;65900:17;;65893:24;;65820:103;:::o;64695:142::-;15996:13;:11;:13::i;:::-;13035:1:::1;13633:7;;:19;;13625:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13035:1;13766:7;:18;;;;64770:61:::2;64796:10;64809:21;64770:17;:61::i;:::-;12991:1:::1;13945:7;:22;;;;64695:142::o:0;40602:185::-;40740:39;40757:4;40763:2;40767:7;40740:39;;;;;;;;;;;;:16;:39::i;:::-;40602:185;;;:::o;64331:108::-;15996:13;:11;:13::i;:::-;64426:7:::1;64411:12;:22;;;;;;;;;;;;:::i;:::-;;64331:108:::0;:::o;37555:144::-;37619:7;37662:27;37681:7;37662:18;:27::i;:::-;37639:52;;37555:144;;;:::o;32798:224::-;32862:7;32903:1;32886:19;;:5;:19;;;32882:60;;;32914:28;;;;;;;;;;;;;;32882:60;27353:13;32960:18;:25;32979:5;32960:25;;;;;;;;;;;;;;;;:54;32953:61;;32798:224;;;:::o;16758:103::-;15996:13;:11;:13::i;:::-;16823:30:::1;16850:1;16823:18;:30::i;:::-;16758:103::o:0;65278:117::-;65349:4;65371:18;;;;;;;;;;;65364:25;;65278:117;:::o;65401:124::-;65474:7;65499:20;;65492:27;;65401:124;:::o;16110:87::-;16156:7;16183:6;;;;;;;;;;;16176:13;;16110:87;:::o;37935:104::-;37991:13;38024:7;38017:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37935:104;:::o;62653:37::-;;;;:::o;62695:39::-;;;;:::o;66050:127::-;15996:13;:11;:13::i;:::-;66165:6:::1;66146:16;:25;;;;66050:127:::0;:::o;62840:1485::-;62913:18;;;;;;;;;;;62905:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;63018:1;63006:9;;:13;;;;:::i;:::-;62989:14;62973:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;62965:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;63083:16;;63065:14;:34;;63057:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;63195:14;;63178;63155:20;;:37;;;;:::i;:::-;:54;63152:1122;;;63273:9;63255:14;63235:17;;:34;;;;:::i;:::-;:47;;63227:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63152:1122;;;63361:19;63383:21;63393:10;63383:9;:21::i;:::-;63361:43;;63463:19;;63446:14;63429;:31;;;;:::i;:::-;:53;63425:842;;;63531:19;;63514:14;:36;63510:551;;;63584:19;63628:14;63606:19;;:36;;;;:::i;:::-;63584:58;;63661:15;63696:14;63679;:31;;;;:::i;:::-;63661:49;;63771:9;63757:10;63737:17;;:30;;;;:::i;:::-;:43;;63729:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;63867:14;63843:20;;:38;;;;;;;:::i;:::-;;;;;;;;63565:332;;63510:551;;;63994:9;63976:14;63956:17;;:34;;;;:::i;:::-;:47;;63948:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63510:551;63425:842;;;64140:19;;64122:14;:37;;64114:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64241:14;64217:20;;:38;;;;;;;:::i;:::-;;;;;;;;63425:842;63350:924;63152:1122;64282:37;64292:10;64304:14;64282:9;:37::i;:::-;62840:1485;:::o;39988:308::-;40099:19;:17;:19::i;:::-;40087:31;;:8;:31;;;40083:61;;;40127:17;;;;;;;;;;;;;;40083:61;40209:8;40157:18;:39;40176:19;:17;:19::i;:::-;40157:39;;;;;;;;;;;;;;;:49;40197:8;40157:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40269:8;40233:55;;40248:19;:17;:19::i;:::-;40233:55;;;40279:8;40233:55;;;;;;:::i;:::-;;;;;;;;39988:308;;:::o;40858:399::-;41025:31;41038:4;41044:2;41048:7;41025:12;:31::i;:::-;41089:1;41071:2;:14;;;:19;41067:183;;41110:56;41141:4;41147:2;41151:7;41160:5;41110:30;:56::i;:::-;41105:145;;41194:40;;;;;;;;;;;;;;41105:145;41067:183;40858:399;;;;:::o;62558:37::-;;;;:::o;64843:288::-;64939:13;64972:17;64980:8;64972:7;:17::i;:::-;64964:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;65085:12;65104:19;:8;:17;:19::i;:::-;65068:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65054:71;;64843:288;;;:::o;62438:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62521:32::-;;;;:::o;40367:164::-;40464:4;40488:18;:25;40507:5;40488:25;;;;;;;;;;;;;;;:35;40514:8;40488:35;;;;;;;;;;;;;;;;;;;;;;;;;40481:42;;40367:164;;;;:::o;64445:244::-;15996:13;:11;:13::i;:::-;64538:1:::1;64527:8;:12;64519:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64606:9;;64594:8;64578:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64570:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64652:31;64662:10;64674:8;64652:9;:31::i;:::-;64445:244:::0;:::o;17016:201::-;15996:13;:11;:13::i;:::-;17125:1:::1;17105:22;;:8;:22;;;;17097:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17181:28;17200:8;17181:18;:28::i;:::-;17016:201:::0;:::o;41512:273::-;41569:4;41625:7;41606:15;:13;:15::i;:::-;:26;;:66;;;;;41659:13;;41649:7;:23;41606:66;:152;;;;;41757:1;28123:8;41710:17;:26;41728:7;41710:26;;;;;;;;;;;;:43;:48;41606:152;41586:172;;41512:273;;;:::o;60073:105::-;60133:7;60160:10;60153:17;;60073:105;:::o;16275:132::-;16350:12;:10;:12::i;:::-;16339:23;;:7;:5;:7::i;:::-;:23;;;16331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16275:132::o;30697:92::-;30753:7;30697:92;:::o;34472:1129::-;34539:7;34559:12;34574:7;34559:22;;34642:4;34623:15;:13;:15::i;:::-;:23;34619:915;;34676:13;;34669:4;:20;34665:869;;;34714:14;34731:17;:23;34749:4;34731:23;;;;;;;;;;;;34714:40;;34847:1;28123:8;34820:6;:23;:28;34816:699;;;35339:113;35356:1;35346:6;:11;35339:113;;;35399:17;:25;35417:6;;;;;;;35399:25;;;;;;;;;;;;35390:34;;35339:113;;;35485:6;35478:13;;;;;;34816:699;34691:843;34665:869;34619:915;35562:31;;;;;;;;;;;;;;34472:1129;;;;:::o;47313:652::-;47408:27;47437:23;47478:53;47534:15;47478:71;;47720:7;47714:4;47707:21;47755:22;47749:4;47742:36;47831:4;47825;47815:21;47792:44;;47927:19;47921:26;47902:45;;47658:300;47313:652;;;:::o;48078:645::-;48220:11;48382:15;48376:4;48372:26;48364:34;;48541:15;48530:9;48526:31;48513:44;;48688:15;48677:9;48674:30;48667:4;48656:9;48653:19;48650:55;48640:65;;48078:645;;;;;:::o;58906:159::-;;;;;:::o;57218:309::-;57353:7;57373:16;28524:3;57399:19;:40;;57373:67;;28524:3;57466:31;57477:4;57483:2;57487:9;57466:10;:31::i;:::-;57458:40;;:61;;57451:68;;;57218:309;;;;;:::o;37046:447::-;37126:14;37294:15;37287:5;37283:27;37274:36;;37468:5;37454:11;37430:22;37426:40;37423:51;37416:5;37413:62;37403:72;;37046:447;;;;:::o;59724:158::-;;;;;:::o;5164:317::-;5279:6;5254:21;:31;;5246:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5333:12;5351:9;:14;;5373:6;5351:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5332:52;;;5403:7;5395:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5235:246;5164:317;;:::o;17377:191::-;17451:16;17470:6;;;;;;;;;;;17451:25;;17496:8;17487:6;;:17;;;;;;;;;;;;;;;;;;17551:8;17520:40;;17541:8;17520:40;;;;;;;;;;;;17440:128;17377:191;:::o;41869:104::-;41938:27;41948:2;41952:8;41938:27;;;;;;;;;;;;:9;:27::i;:::-;41869:104;;:::o;55728:716::-;55891:4;55937:2;55912:45;;;55958:19;:17;:19::i;:::-;55979:4;55985:7;55994:5;55912:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55908:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56212:1;56195:6;:13;:18;56191:235;;;56241:40;;;;;;;;;;;;;;56191:235;56384:6;56378:13;56369:6;56365:2;56361:15;56354:38;55908:529;56081:54;;;56071:64;;;:6;:64;;;;56064:71;;;55728:716;;;;;;:::o;603:723::-;659:13;889:1;880:5;:10;876:53;;;907:10;;;;;;;;;;;;;;;;;;;;;876:53;939:12;954:5;939:20;;970:14;995:78;1010:1;1002:4;:9;995:78;;1028:8;;;;;:::i;:::-;;;;1059:2;1051:10;;;;;:::i;:::-;;;995:78;;;1083:19;1115:6;1105:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1083:39;;1133:154;1149:1;1140:5;:10;1133:154;;1177:1;1167:11;;;;;:::i;:::-;;;1244:2;1236:5;:10;;;;:::i;:::-;1223:2;:24;;;;:::i;:::-;1210:39;;1193:6;1200;1193:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1273:2;1264:11;;;;;:::i;:::-;;;1133:154;;;1311:6;1297:21;;;;;603:723;;;;:::o;14661:98::-;14714:7;14741:10;14734:17;;14661:98;:::o;58103:147::-;58240:6;58103:147;;;;;:::o;42389:681::-;42512:19;42518:2;42522:8;42512:5;:19::i;:::-;42591:1;42573:2;:14;;;:19;42569:483;;42613:11;42627:13;;42613:27;;42659:13;42681:8;42675:3;:14;42659:30;;42708:233;42739:62;42778:1;42782:2;42786:7;;;;;;42795:5;42739:30;:62::i;:::-;42734:167;;42837:40;;;;;;;;;;;;;;42734:167;42936:3;42928:5;:11;42708:233;;43023:3;43006:13;;:20;43002:34;;43028:8;;;43002:34;42594:458;;42569:483;42389:681;;;:::o;43343:1529::-;43408:20;43431:13;;43408:36;;43473:1;43459:16;;:2;:16;;;43455:48;;;43484:19;;;;;;;;;;;;;;43455:48;43530:1;43518:8;:13;43514:44;;;43540:18;;;;;;;;;;;;;;43514:44;43571:61;43601:1;43605:2;43609:12;43623:8;43571:21;:61::i;:::-;44114:1;27490:2;44085:1;:25;;44084:31;44072:8;:44;44046:18;:22;44065:2;44046:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44393:139;44430:2;44484:33;44507:1;44511:2;44515:1;44484:14;:33::i;:::-;44451:30;44472:8;44451:20;:30::i;:::-;:66;44393:18;:139::i;:::-;44359:17;:31;44377:12;44359:31;;;;;;;;;;;:173;;;;44549:15;44567:12;44549:30;;44594:11;44623:8;44608:12;:23;44594:37;;44646:101;44698:9;;;;;;44694:2;44673:35;;44690:1;44673:35;;;;;;;;;;;;44742:3;44732:7;:13;44646:101;;44779:3;44763:13;:19;;;;43820:974;;44804:60;44833:1;44837:2;44841:12;44855:8;44804:20;:60::i;:::-;43397:1475;43343:1529;;:::o;38876:322::-;38946:14;39177:1;39167:8;39164:15;39139:23;39135:45;39125:55;;38876:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:398::-;14715:3;14736:83;14817:1;14812:3;14736:83;:::i;:::-;14729:90;;14828:93;14917:3;14828:93;:::i;:::-;14946:1;14941:3;14937:11;14930:18;;14556:398;;;:::o;14960:366::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:400::-;15864:3;15885:84;15967:1;15962:3;15885:84;:::i;:::-;15878:91;;15978:93;16067:3;15978:93;:::i;:::-;16096:1;16091:3;16087:11;16080:18;;15704:400;;;:::o;16110:118::-;16197:24;16215:5;16197:24;:::i;:::-;16192:3;16185:37;16110:118;;:::o;16234:695::-;16512:3;16534:92;16622:3;16613:6;16534:92;:::i;:::-;16527:99;;16643:148;16787:3;16643:148;:::i;:::-;16636:155;;16808:95;16899:3;16890:6;16808:95;:::i;:::-;16801:102;;16920:3;16913:10;;16234:695;;;;;:::o;16935:379::-;17119:3;17141:147;17284:3;17141:147;:::i;:::-;17134:154;;17305:3;17298:10;;16935:379;;;:::o;17320:222::-;17413:4;17451:2;17440:9;17436:18;17428:26;;17464:71;17532:1;17521:9;17517:17;17508:6;17464:71;:::i;:::-;17320:222;;;;:::o;17548:640::-;17743:4;17781:3;17770:9;17766:19;17758:27;;17795:71;17863:1;17852:9;17848:17;17839:6;17795:71;:::i;:::-;17876:72;17944:2;17933:9;17929:18;17920:6;17876:72;:::i;:::-;17958;18026:2;18015:9;18011:18;18002:6;17958:72;:::i;:::-;18077:9;18071:4;18067:20;18062:2;18051:9;18047:18;18040:48;18105:76;18176:4;18167:6;18105:76;:::i;:::-;18097:84;;17548:640;;;;;;;:::o;18194:210::-;18281:4;18319:2;18308:9;18304:18;18296:26;;18332:65;18394:1;18383:9;18379:17;18370:6;18332:65;:::i;:::-;18194:210;;;;:::o;18410:313::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18610:9;18604:4;18600:20;18596:1;18585:9;18581:17;18574:47;18638:78;18711:4;18702:6;18638:78;:::i;:::-;18630:86;;18410:313;;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:::-;19320:4;19358:2;19347:9;19343:18;19335:26;;19407:9;19401:4;19397:20;19393:1;19382:9;19378:17;19371:47;19435:131;19561:4;19435:131;:::i;:::-;19427:139;;19154:419;;;:::o;19579:::-;19745:4;19783:2;19772:9;19768:18;19760:26;;19832:9;19826:4;19822:20;19818:1;19807:9;19803:17;19796:47;19860:131;19986:4;19860:131;:::i;:::-;19852:139;;19579:419;;;:::o;20004:::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:::-;20595:4;20633:2;20622:9;20618:18;20610:26;;20682:9;20676:4;20672:20;20668:1;20657:9;20653:17;20646:47;20710:131;20836:4;20710:131;:::i;:::-;20702:139;;20429:419;;;:::o;20854:::-;21020:4;21058:2;21047:9;21043:18;21035:26;;21107:9;21101:4;21097:20;21093:1;21082:9;21078:17;21071:47;21135:131;21261:4;21135:131;:::i;:::-;21127:139;;20854:419;;;:::o;21279:::-;21445:4;21483:2;21472:9;21468:18;21460:26;;21532:9;21526:4;21522:20;21518:1;21507:9;21503:17;21496:47;21560:131;21686:4;21560:131;:::i;:::-;21552:139;;21279:419;;;:::o;21704:::-;21870:4;21908:2;21897:9;21893:18;21885:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21985:131;22111:4;21985:131;:::i;:::-;21977:139;;21704:419;;;:::o;22129:::-;22295:4;22333:2;22322:9;22318:18;22310:26;;22382:9;22376:4;22372:20;22368:1;22357:9;22353:17;22346:47;22410:131;22536:4;22410:131;:::i;:::-;22402:139;;22129:419;;;:::o;22554:::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:::-;23145:4;23183:2;23172:9;23168:18;23160:26;;23232:9;23226:4;23222:20;23218:1;23207:9;23203:17;23196:47;23260:131;23386:4;23260:131;:::i;:::-;23252:139;;22979:419;;;:::o;23404:::-;23570:4;23608:2;23597:9;23593:18;23585:26;;23657:9;23651:4;23647:20;23643:1;23632:9;23628:17;23621:47;23685:131;23811:4;23685:131;:::i;:::-;23677:139;;23404:419;;;:::o;23829:::-;23995:4;24033:2;24022:9;24018:18;24010:26;;24082:9;24076:4;24072:20;24068:1;24057:9;24053:17;24046:47;24110:131;24236:4;24110:131;:::i;:::-;24102:139;;23829:419;;;:::o;24254:::-;24420:4;24458:2;24447:9;24443:18;24435:26;;24507:9;24501:4;24497:20;24493:1;24482:9;24478:17;24471:47;24535:131;24661:4;24535:131;:::i;:::-;24527:139;;24254:419;;;:::o;24679:::-;24845:4;24883:2;24872:9;24868:18;24860:26;;24932:9;24926:4;24922:20;24918:1;24907:9;24903:17;24896:47;24960:131;25086:4;24960:131;:::i;:::-;24952:139;;24679:419;;;:::o;25104:222::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25248:71;25316:1;25305:9;25301:17;25292:6;25248:71;:::i;:::-;25104:222;;;;:::o;25332:129::-;25366:6;25393:20;;:::i;:::-;25383:30;;25422:33;25450:4;25442:6;25422:33;:::i;:::-;25332:129;;;:::o;25467:75::-;25500:6;25533:2;25527:9;25517:19;;25467:75;:::o;25548:307::-;25609:4;25699:18;25691:6;25688:30;25685:56;;;25721:18;;:::i;:::-;25685:56;25759:29;25781:6;25759:29;:::i;:::-;25751:37;;25843:4;25837;25833:15;25825:23;;25548:307;;;:::o;25861:308::-;25923:4;26013:18;26005:6;26002:30;25999:56;;;26035:18;;:::i;:::-;25999:56;26073:29;26095:6;26073:29;:::i;:::-;26065:37;;26157:4;26151;26147:15;26139:23;;25861:308;;;:::o;26175:141::-;26224:4;26247:3;26239:11;;26270:3;26267:1;26260:14;26304:4;26301:1;26291:18;26283:26;;26175:141;;;:::o;26322:98::-;26373:6;26407:5;26401:12;26391:22;;26322:98;;;:::o;26426:99::-;26478:6;26512:5;26506:12;26496:22;;26426:99;;;:::o;26531:168::-;26614:11;26648:6;26643:3;26636:19;26688:4;26683:3;26679:14;26664:29;;26531:168;;;;:::o;26705:147::-;26806:11;26843:3;26828:18;;26705:147;;;;:::o;26858:169::-;26942:11;26976:6;26971:3;26964:19;27016:4;27011:3;27007:14;26992:29;;26858:169;;;;:::o;27033:148::-;27135:11;27172:3;27157:18;;27033:148;;;;:::o;27187:305::-;27227:3;27246:20;27264:1;27246:20;:::i;:::-;27241:25;;27280:20;27298:1;27280:20;:::i;:::-;27275:25;;27434:1;27366:66;27362:74;27359:1;27356:81;27353:107;;;27440:18;;:::i;:::-;27353:107;27484:1;27481;27477:9;27470:16;;27187:305;;;;:::o;27498:185::-;27538:1;27555:20;27573:1;27555:20;:::i;:::-;27550:25;;27589:20;27607:1;27589:20;:::i;:::-;27584:25;;27628:1;27618:35;;27633:18;;:::i;:::-;27618:35;27675:1;27672;27668:9;27663:14;;27498:185;;;;:::o;27689:348::-;27729:7;27752:20;27770:1;27752:20;:::i;:::-;27747:25;;27786:20;27804:1;27786:20;:::i;:::-;27781:25;;27974:1;27906:66;27902:74;27899:1;27896:81;27891:1;27884:9;27877:17;27873:105;27870:131;;;27981:18;;:::i;:::-;27870:131;28029:1;28026;28022:9;28011:20;;27689:348;;;;:::o;28043:191::-;28083:4;28103:20;28121:1;28103:20;:::i;:::-;28098:25;;28137:20;28155:1;28137:20;:::i;:::-;28132:25;;28176:1;28173;28170:8;28167:34;;;28181:18;;:::i;:::-;28167:34;28226:1;28223;28219:9;28211:17;;28043:191;;;;:::o;28240:96::-;28277:7;28306:24;28324:5;28306:24;:::i;:::-;28295:35;;28240:96;;;:::o;28342:90::-;28376:7;28419:5;28412:13;28405:21;28394:32;;28342:90;;;:::o;28438:149::-;28474:7;28514:66;28507:5;28503:78;28492:89;;28438:149;;;:::o;28593:126::-;28630:7;28670:42;28663:5;28659:54;28648:65;;28593:126;;;:::o;28725:77::-;28762:7;28791:5;28780:16;;28725:77;;;:::o;28808:154::-;28892:6;28887:3;28882;28869:30;28954:1;28945:6;28940:3;28936:16;28929:27;28808:154;;;:::o;28968:307::-;29036:1;29046:113;29060:6;29057:1;29054:13;29046:113;;;29145:1;29140:3;29136:11;29130:18;29126:1;29121:3;29117:11;29110:39;29082:2;29079:1;29075:10;29070:15;;29046:113;;;29177:6;29174:1;29171:13;29168:101;;;29257:1;29248:6;29243:3;29239:16;29232:27;29168:101;29017:258;28968:307;;;:::o;29281:320::-;29325:6;29362:1;29356:4;29352:12;29342:22;;29409:1;29403:4;29399:12;29430:18;29420:81;;29486:4;29478:6;29474:17;29464:27;;29420:81;29548:2;29540:6;29537:14;29517:18;29514:38;29511:84;;;29567:18;;:::i;:::-;29511:84;29332:269;29281:320;;;:::o;29607:281::-;29690:27;29712:4;29690:27;:::i;:::-;29682:6;29678:40;29820:6;29808:10;29805:22;29784:18;29772:10;29769:34;29766:62;29763:88;;;29831:18;;:::i;:::-;29763:88;29871:10;29867:2;29860:22;29650:238;29607:281;;:::o;29894:233::-;29933:3;29956:24;29974:5;29956:24;:::i;:::-;29947:33;;30002:66;29995:5;29992:77;29989:103;;;30072:18;;:::i;:::-;29989:103;30119:1;30112:5;30108:13;30101:20;;29894:233;;;:::o;30133:176::-;30165:1;30182:20;30200:1;30182:20;:::i;:::-;30177:25;;30216:20;30234:1;30216:20;:::i;:::-;30211:25;;30255:1;30245:35;;30260:18;;:::i;:::-;30245:35;30301:1;30298;30294:9;30289:14;;30133:176;;;;:::o;30315:180::-;30363:77;30360:1;30353:88;30460:4;30457:1;30450:15;30484:4;30481:1;30474:15;30501:180;30549:77;30546:1;30539:88;30646:4;30643:1;30636:15;30670:4;30667:1;30660:15;30687:180;30735:77;30732:1;30725:88;30832:4;30829:1;30822:15;30856:4;30853:1;30846:15;30873:180;30921:77;30918:1;30911:88;31018:4;31015:1;31008:15;31042:4;31039:1;31032:15;31059:180;31107:77;31104:1;31097:88;31204:4;31201:1;31194:15;31228:4;31225:1;31218:15;31245:117;31354:1;31351;31344:12;31368:117;31477:1;31474;31467:12;31491:117;31600:1;31597;31590:12;31614:117;31723:1;31720;31713:12;31737:102;31778:6;31829:2;31825:7;31820:2;31813:5;31809:14;31805:28;31795:38;;31737:102;;;:::o;31845:224::-;31985:34;31981:1;31973:6;31969:14;31962:58;32054:7;32049:2;32041:6;32037:15;32030:32;31845:224;:::o;32075:225::-;32215:34;32211:1;32203:6;32199:14;32192:58;32284:8;32279:2;32271:6;32267:15;32260:33;32075:225;:::o;32306:245::-;32446:34;32442:1;32434:6;32430:14;32423:58;32515:28;32510:2;32502:6;32498:15;32491:53;32306:245;:::o;32557:179::-;32697:31;32693:1;32685:6;32681:14;32674:55;32557:179;:::o;32742:174::-;32882:26;32878:1;32870:6;32866:14;32859:50;32742:174;:::o;32922:224::-;33062:34;33058:1;33050:6;33046:14;33039:58;33131:7;33126:2;33118:6;33114:15;33107:32;32922:224;:::o;33152:173::-;33292:25;33288:1;33280:6;33276:14;33269:49;33152:173;:::o;33331:172::-;33471:24;33467:1;33459:6;33455:14;33448:48;33331:172;:::o;33509:182::-;33649:34;33645:1;33637:6;33633:14;33626:58;33509:182;:::o;33697:234::-;33837:34;33833:1;33825:6;33821:14;33814:58;33906:17;33901:2;33893:6;33889:15;33882:42;33697:234;:::o;33937:225::-;34077:34;34073:1;34065:6;34061:14;34054:58;34146:8;34141:2;34133:6;34129:15;34122:33;33937:225;:::o;34168:224::-;34308:34;34304:1;34296:6;34292:14;34285:58;34377:7;34372:2;34364:6;34360:15;34353:32;34168:224;:::o;34398:226::-;34538:34;34534:1;34526:6;34522:14;34515:58;34607:9;34602:2;34594:6;34590:15;34583:34;34398:226;:::o;34630:114::-;;:::o;34750:169::-;34890:21;34886:1;34878:6;34874:14;34867:45;34750:169;:::o;34925:181::-;35065:33;35061:1;35053:6;35049:14;35042:57;34925:181;:::o;35112:151::-;35252:3;35248:1;35240:6;35236:14;35229:27;35112:151;:::o;35269:122::-;35342:24;35360:5;35342:24;:::i;:::-;35335:5;35332:35;35322:63;;35381:1;35378;35371:12;35322:63;35269:122;:::o;35397:116::-;35467:21;35482:5;35467:21;:::i;:::-;35460:5;35457:32;35447:60;;35503:1;35500;35493:12;35447:60;35397:116;:::o;35519:120::-;35591:23;35608:5;35591:23;:::i;:::-;35584:5;35581:34;35571:62;;35629:1;35626;35619:12;35571:62;35519:120;:::o;35645:122::-;35718:24;35736:5;35718:24;:::i;:::-;35711:5;35708:35;35698:63;;35757:1;35754;35747:12;35698:63;35645:122;:::o
Swarm Source
ipfs://1120f21613b71974c816382ecb2ed807d45f0118c7b88e00eef43effd2449503
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.