Polygon Sponsored slots available. Book your slot here!
Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x280b67a90d7e698c8e591a7ad5c67313b1dec84773b7972de5dff1e2f8b85ac9 | Airdrop | 31542105 | 307 days 6 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | 0xfc97e23f7aa34f558481b4ad00b08b8a43427e09 | 0 MATIC | 0.004915543175 | |
0x4bc99fccbd575ac9c74d6270fbb96710f4f4e06b16a3d98cdfff51092a53ae5a | 0x60c06040 | 31542071 | 307 days 6 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | Contract Creation | 0 MATIC | 0.069073448222 |
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x65062887dD2b721e17911dEaB8A4631305D7eC6F
Contract Name:
FemmeCouchee
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-08-05 */ // File: @openzeppelin/contracts/utils/Strings.sol // 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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/FemmeCouchee.sol pragma solidity >=0.7.0 <0.9.0; contract FemmeCouchee is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 3000 ether; uint256 public maxSupply = 10; uint256 public maxMintAmount = 10; bool public paused = false; bool public revealed = false; string public notRevealedUri; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function airdrop(address[] memory _addresses) external onlyOwner{ uint256 supply = totalSupply(); for(uint8 i = 0; i < _addresses.length; i++){ _safeMint(_addresses[i], supply + i + 1); } } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001e0565b5068a2a15d09519be00000600d55600a600e819055600f556010805461ffff191690553480156200005857600080fd5b5060405162002824380380620028248339810160408190526200007b916200033d565b83518490849062000094906000906020850190620001e0565b508051620000aa906001906020840190620001e0565b505050620000c7620000c1620000e760201b60201c565b620000eb565b620000d2826200013d565b620000dd8162000160565b5050505062000449565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001476200017f565b80516200015c90600b906020840190620001e0565b5050565b6200016a6200017f565b80516200015c906011906020840190620001e0565b600a546001600160a01b03163314620001de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001ee90620003f6565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b600082601f8301126200029857600080fd5b81516001600160401b0380821115620002b557620002b562000433565b604051601f8301601f19908116603f01168101908282118183101715620002e057620002e062000433565b81604052838152602092508683858801011115620002fd57600080fd5b600091505b8382101562000321578582018301518183018401529082019062000302565b83821115620003335760008385830101525b9695505050505050565b600080600080608085870312156200035457600080fd5b84516001600160401b03808211156200036c57600080fd5b6200037a8883890162000286565b955060208701519150808211156200039157600080fd5b6200039f8883890162000286565b94506040870151915080821115620003b657600080fd5b620003c48883890162000286565b93506060870151915080821115620003db57600080fd5b50620003ea8782880162000286565b91505092959194509250565b600181811c908216806200040b57607f821691505b602082108114156200042d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123cb80620004596000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105e7578063da3ef23f146105fd578063e985e9c51461061d578063f2c4ce1e14610666578063f2fde38b1461068657600080fd5b8063a22cb4651461055d578063a475b5dd1461057d578063b88d4fde14610592578063c6682862146105b2578063c87b56dd146105c757600080fd5b8063729ad39e116100f2578063729ad39e146104d75780637f00c7a6146104f75780638da5cb5b1461051757806395d89b4114610535578063a0712d681461054a57600080fd5b80635c975abb146104685780636352211e1461048257806370a08231146104a2578063715018a6146104c257600080fd5b806323b872dd116101a6578063438b630011610175578063438b6300146103bc57806344a0d68a146103e95780634f6ccce714610409578063518302271461042957806355f804b31461044857600080fd5b806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57600080fd5b8063081c8c44116101ed578063081c8c44146102d0578063095ea7b3146102e557806313faede61461030557806318160ddd14610329578063239c70ae1461033e57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611f08565b6106a6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611eed565b6106d1565b005b34801561028257600080fd5b5061028b6106ec565b60405161024b9190612115565b3480156102a457600080fd5b506102b86102b3366004611f8b565b61077e565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b5061028b6107a5565b3480156102f157600080fd5b50610274610300366004611e0f565b610833565b34801561031157600080fd5b5061031b600d5481565b60405190815260200161024b565b34801561033557600080fd5b5060085461031b565b34801561034a57600080fd5b5061031b600f5481565b34801561036057600080fd5b5061027461036f366004611d2d565b61094e565b34801561038057600080fd5b5061031b61038f366004611e0f565b61097f565b610274610a15565b3480156103a857600080fd5b506102746103b7366004611d2d565b610a91565b3480156103c857600080fd5b506103dc6103d7366004611cdf565b610aac565b60405161024b91906120d1565b3480156103f557600080fd5b50610274610404366004611f8b565b610b4e565b34801561041557600080fd5b5061031b610424366004611f8b565b610b5b565b34801561043557600080fd5b5060105461023f90610100900460ff1681565b34801561045457600080fd5b50610274610463366004611f42565b610bee565b34801561047457600080fd5b5060105461023f9060ff1681565b34801561048e57600080fd5b506102b861049d366004611f8b565b610c0d565b3480156104ae57600080fd5b5061031b6104bd366004611cdf565b610c6d565b3480156104ce57600080fd5b50610274610cf3565b3480156104e357600080fd5b506102746104f2366004611e39565b610d07565b34801561050357600080fd5b50610274610512366004611f8b565b610d7c565b34801561052357600080fd5b50600a546001600160a01b03166102b8565b34801561054157600080fd5b5061028b610d89565b610274610558366004611f8b565b610d98565b34801561056957600080fd5b50610274610578366004611de5565b610e40565b34801561058957600080fd5b50610274610e4b565b34801561059e57600080fd5b506102746105ad366004611d69565b610e64565b3480156105be57600080fd5b5061028b610e9c565b3480156105d357600080fd5b5061028b6105e2366004611f8b565b610ea9565b3480156105f357600080fd5b5061031b600e5481565b34801561060957600080fd5b50610274610618366004611f42565b611028565b34801561062957600080fd5b5061023f610638366004611cfa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067257600080fd5b50610274610681366004611f42565b611043565b34801561069257600080fd5b506102746106a1366004611cdf565b61105e565b60006001600160e01b0319821663780e9d6360e01b14806106cb57506106cb826110d4565b92915050565b6106d9611124565b6010805460ff1916911515919091179055565b6060600080546106fb90612287565b80601f016020809104026020016040519081016040528092919081815260200182805461072790612287565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b60006107898261117e565b506000908152600460205260409020546001600160a01b031690565b601180546107b290612287565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90612287565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b505050505081565b600061083e82610c0d565b9050806001600160a01b0316836001600160a01b031614156108b15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108cd57506108cd8133610638565b61093f5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016108a8565b61094983836111dd565b505050565b610958338261124b565b6109745760405162461bcd60e51b81526004016108a89061217a565b6109498383836112ca565b600061098a83610c6d565b82106109ec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108a8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a1d611124565b6000610a31600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7b576040519150601f19603f3d011682016040523d82523d6000602084013e610a80565b606091505b5050905080610a8e57600080fd5b50565b61094983838360405180602001604052806000815250610e64565b60606000610ab983610c6d565b905060008167ffffffffffffffff811115610ad657610ad6612369565b604051908082528060200260200182016040528015610aff578160200160208202803683370190505b50905060005b82811015610b4657610b17858261097f565b828281518110610b2957610b29612353565b602090810291909101015280610b3e816122c2565b915050610b05565b509392505050565b610b56611124565b600d55565b6000610b6660085490565b8210610bc95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108a8565b60088281548110610bdc57610bdc612353565b90600052602060002001549050919050565b610bf6611124565b8051610c0990600b906020840190611bc2565b5050565b6000818152600260205260408120546001600160a01b0316806106cb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108a8565b60006001600160a01b038216610cd75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016108a8565b506001600160a01b031660009081526003602052604090205490565b610cfb611124565b610d056000611471565b565b610d0f611124565b6000610d1a60085490565b905060005b82518160ff16101561094957610d6a838260ff1681518110610d4357610d43612353565b60200260200101518260ff1684610d5a91906121f9565b610d659060016121f9565b6114c3565b80610d74816122dd565b915050610d1f565b610d84611124565b600f55565b6060600180546106fb90612287565b6000610da360085490565b60105490915060ff1615610db657600080fd5b60008211610dc357600080fd5b600f54821115610dd257600080fd5b600e54610ddf83836121f9565b1115610dea57600080fd5b600a546001600160a01b03163314610e165781600d54610e0a9190612225565b341015610e1657600080fd5b60015b82811161094957610e2e33610d6583856121f9565b80610e38816122c2565b915050610e19565b610c093383836114dd565b610e53611124565b6010805461ff001916610100179055565b610e6e338361124b565b610e8a5760405162461bcd60e51b81526004016108a89061217a565b610e96848484846115ac565b50505050565b600c80546107b290612287565b6000818152600260205260409020546060906001600160a01b0316610f285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a8565b601054610100900460ff16610fc95760118054610f4490612287565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7090612287565b8015610fbd5780601f10610f9257610100808354040283529160200191610fbd565b820191906000526020600020905b815481529060010190602001808311610fa057829003601f168201915b50505050509050919050565b6000610fd36115df565b90506000815111610ff35760405180602001604052806000815250611021565b80610ffd846115ee565b600c60405160200161101193929190611fd0565b6040516020818303038152906040525b9392505050565b611030611124565b8051610c0990600c906020840190611bc2565b61104b611124565b8051610c09906011906020840190611bc2565b611066611124565b6001600160a01b0381166110cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a8565b610a8e81611471565b60006001600160e01b031982166380ac58cd60e01b148061110557506001600160e01b03198216635b5e139f60e01b145b806106cb57506301ffc9a760e01b6001600160e01b03198316146106cb565b600a546001600160a01b03163314610d055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a8565b6000818152600260205260409020546001600160a01b0316610a8e5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016108a8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061121282610c0d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061125783610c0d565b9050806001600160a01b0316846001600160a01b0316148061129e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806112c25750836001600160a01b03166112b78461077e565b6001600160a01b0316145b949350505050565b826001600160a01b03166112dd82610c0d565b6001600160a01b0316146113415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108a8565b6001600160a01b0382166113a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a8565b6113ae8383836116ec565b6113b96000826111dd565b6001600160a01b03831660009081526003602052604081208054600192906113e2908490612244565b90915550506001600160a01b03821660009081526003602052604081208054600192906114109084906121f9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c098282604051806020016040528060008152506117a4565b816001600160a01b0316836001600160a01b0316141561153f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115b78484846112ca565b6115c3848484846117d7565b610e965760405162461bcd60e51b81526004016108a890612128565b6060600b80546106fb90612287565b6060816116125750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163c5780611626816122c2565b91506116359050600a83612211565b9150611616565b60008167ffffffffffffffff81111561165757611657612369565b6040519080825280601f01601f191660200182016040528015611681576020820181803683370190505b5090505b84156112c257611696600183612244565b91506116a3600a866122fd565b6116ae9060306121f9565b60f81b8183815181106116c3576116c3612353565b60200101906001600160f81b031916908160001a9053506116e5600a86612211565b9450611685565b6001600160a01b0383166117475761174281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61176a565b816001600160a01b0316836001600160a01b03161461176a5761176a83826118e4565b6001600160a01b0382166117815761094981611981565b826001600160a01b0316826001600160a01b031614610949576109498282611a30565b6117ae8383611a74565b6117bb60008484846117d7565b6109495760405162461bcd60e51b81526004016108a890612128565b60006001600160a01b0384163b156118d957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061181b903390899088908890600401612094565b602060405180830381600087803b15801561183557600080fd5b505af1925050508015611865575060408051601f3d908101601f1916820190925261186291810190611f25565b60015b6118bf573d808015611893576040519150601f19603f3d011682016040523d82523d6000602084013e611898565b606091505b5080516118b75760405162461bcd60e51b81526004016108a890612128565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c2565b506001949350505050565b600060016118f184610c6d565b6118fb9190612244565b60008381526007602052604090205490915080821461194e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061199390600190612244565b600083815260096020526040812054600880549394509092849081106119bb576119bb612353565b9060005260206000200154905080600883815481106119dc576119dc612353565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a1457611a1461233d565b6001900381819060005260206000200160009055905550505050565b6000611a3b83610c6d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611aca5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a8565b6000818152600260205260409020546001600160a01b031615611b2f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a8565b611b3b600083836116ec565b6001600160a01b0382166000908152600360205260408120805460019290611b649084906121f9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bce90612287565b90600052602060002090601f016020900481019282611bf05760008555611c36565b82601f10611c0957805160ff1916838001178555611c36565b82800160010185558215611c36579182015b82811115611c36578251825591602001919060010190611c1b565b50611c42929150611c46565b5090565b5b80821115611c425760008155600101611c47565b600067ffffffffffffffff831115611c7557611c75612369565b611c88601f8401601f19166020016121c8565b9050828152838383011115611c9c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cca57600080fd5b919050565b80358015158114611cca57600080fd5b600060208284031215611cf157600080fd5b61102182611cb3565b60008060408385031215611d0d57600080fd5b611d1683611cb3565b9150611d2460208401611cb3565b90509250929050565b600080600060608486031215611d4257600080fd5b611d4b84611cb3565b9250611d5960208501611cb3565b9150604084013590509250925092565b60008060008060808587031215611d7f57600080fd5b611d8885611cb3565b9350611d9660208601611cb3565b925060408501359150606085013567ffffffffffffffff811115611db957600080fd5b8501601f81018713611dca57600080fd5b611dd987823560208401611c5b565b91505092959194509250565b60008060408385031215611df857600080fd5b611e0183611cb3565b9150611d2460208401611ccf565b60008060408385031215611e2257600080fd5b611e2b83611cb3565b946020939093013593505050565b60006020808385031215611e4c57600080fd5b823567ffffffffffffffff80821115611e6457600080fd5b818501915085601f830112611e7857600080fd5b813581811115611e8a57611e8a612369565b8060051b9150611e9b8483016121c8565b8181528481019084860184860187018a1015611eb657600080fd5b600095505b83861015611ee057611ecc81611cb3565b835260019590950194918601918601611ebb565b5098975050505050505050565b600060208284031215611eff57600080fd5b61102182611ccf565b600060208284031215611f1a57600080fd5b81356110218161237f565b600060208284031215611f3757600080fd5b81516110218161237f565b600060208284031215611f5457600080fd5b813567ffffffffffffffff811115611f6b57600080fd5b8201601f81018413611f7c57600080fd5b6112c284823560208401611c5b565b600060208284031215611f9d57600080fd5b5035919050565b60008151808452611fbc81602086016020860161225b565b601f01601f19169290920160200192915050565b600084516020611fe38285838a0161225b565b855191840191611ff68184848a0161225b565b8554920191600090600181811c908083168061201357607f831692505b85831081141561203157634e487b7160e01b85526022600452602485fd5b808015612045576001811461205657612083565b60ff19851688528388019550612083565b60008b81526020902060005b8581101561207b5781548a820152908401908801612062565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c790830184611fa4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612109578351835292840192918401916001016120ed565b50909695505050505050565b6020815260006110216020830184611fa4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156121f1576121f1612369565b604052919050565b6000821982111561220c5761220c612311565b500190565b60008261222057612220612327565b500490565b600081600019048311821515161561223f5761223f612311565b500290565b60008282101561225657612256612311565b500390565b60005b8381101561227657818101518382015260200161225e565b83811115610e965750506000910152565b600181811c9082168061229b57607f821691505b602082108114156122bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122d6576122d6612311565b5060010190565b600060ff821660ff8114156122f4576122f4612311565b60010192915050565b60008261230c5761230c612327565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8e57600080fdfea264697066735822122094631a94f51d8320d2ba5df8da9ddd129b8ddda16a6f71db0412ed1dad0cbfae64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000c46656d6d65436f75636865650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446656d6d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61646942797564394a42374b6e676e45686f4e764d73463250746b595245325665344677463159615a7774382f0000000000000000000000000000000000000000000000000000000000000000000000000000000000036464640000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
46240:3155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;-1:-1:-1;40010:224:0;;;;;:::i;:::-;;:::i;:::-;;;8550:14:1;;8543:22;8525:41;;8513:2;8498:18;40010:224:0;;;;;;;;48941:73;;;;;;;;;;-1:-1:-1;48941:73:0;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28257:171::-;;;;;;;;;;-1:-1:-1;28257:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7211:32:1;;;7193:51;;7181:2;7166:18;28257:171:0;7047:203:1;46562:28:0;;;;;;;;;;;;;:::i;27774:417::-;;;;;;;;;;-1:-1:-1;27774:417:0;;;;;:::i;:::-;;:::i;46389:32::-;;;;;;;;;;;;;;;;;;;15269:25:1;;;15257:2;15242:18;46389:32:0;15123:177:1;40650:113:0;;;;;;;;;;-1:-1:-1;40738:10:0;:17;40650:113;;46460:33;;;;;;;;;;;;;;;;28957:336;;;;;;;;;;-1:-1:-1;28957:336:0;;;;;:::i;:::-;;:::i;40318:256::-;;;;;;;;;;-1:-1:-1;40318:256:0;;;;;:::i;:::-;;:::i;49247:145::-;;;:::i;29364:185::-;;;;;;;;;;-1:-1:-1;29364:185:0;;;;;:::i;:::-;;:::i;47427:348::-;;;;;;;;;;-1:-1:-1;47427:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48373:80::-;;;;;;;;;;-1:-1:-1;48373:80:0;;;;;:::i;:::-;;:::i;40840:233::-;;;;;;;;;;-1:-1:-1;40840:233:0;;;;;:::i;:::-;;:::i;46529:28::-;;;;;;;;;;-1:-1:-1;46529:28:0;;;;;;;;;;;48709:98;;;;;;;;;;-1:-1:-1;48709:98:0;;;;;:::i;:::-;;:::i;46498:26::-;;;;;;;;;;-1:-1:-1;46498:26:0;;;;;;;;26455:222;;;;;;;;;;-1:-1:-1;26455:222:0;;;;;:::i;:::-;;:::i;26186:207::-;;;;;;;;;;-1:-1:-1;26186:207:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;49020:214::-;;;;;;;;;;-1:-1:-1;49020:214:0;;;;;:::i;:::-;;:::i;48459:116::-;;;;;;;;;;-1:-1:-1;48459:116:0;;;;;:::i;:::-;;:::i;4625:87::-;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;26913:104;;;;;;;;;;;;;:::i;46988:433::-;;;;;;:::i;:::-;;:::i;28500:155::-;;;;;;;;;;-1:-1:-1;28500:155:0;;;;;:::i;:::-;;:::i;48300:65::-;;;;;;;;;;;;;:::i;29620:323::-;;;;;;;;;;-1:-1:-1;29620:323:0;;;;;:::i;:::-;;:::i;46347:37::-;;;;;;;;;;;;;:::i;47781:497::-;;;;;;;;;;-1:-1:-1;47781:497:0;;;;;:::i;:::-;;:::i;46426:29::-;;;;;;;;;;;;;;;;48813:122;;;;;;;;;;-1:-1:-1;48813:122:0;;;;;:::i;:::-;;:::i;28726:164::-;;;;;;;;;;-1:-1:-1;28726:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28726:164;48583:120;;;;;;;;;;-1:-1:-1;48583:120:0;;;;;:::i;:::-;;:::i;5531:201::-;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;40010:224::-;40112:4;-1:-1:-1;;;;;;40136:50:0;;-1:-1:-1;;;40136:50:0;;:90;;;40190:36;40214:11;40190:23;:36::i;:::-;40129:97;40010:224;-1:-1:-1;;40010:224:0:o;48941:73::-;4511:13;:11;:13::i;:::-;48993:6:::1;:15:::0;;-1:-1:-1;;48993:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48941:73::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;-1:-1:-1;28396:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28396:24:0;;28257:171::o;46562:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;-1:-1:-1;;;;;27913:11:0;:2;-1:-1:-1;;;;;27913:11:0;;;27905:57;;;;-1:-1:-1;;;27905:57:0;;14095:2:1;27905:57:0;;;14077:21:1;14134:2;14114:18;;;14107:30;14173:34;14153:18;;;14146:62;-1:-1:-1;;;14224:18:1;;;14217:31;14265:19;;27905:57:0;;;;;;;;;3256:10;-1:-1:-1;;;;;27997:21:0;;;;:62;;-1:-1:-1;28022:37:0;28039:5;3256:10;28726:164;:::i;28022:37::-;27975:174;;;;-1:-1:-1;;;27975:174:0;;12173:2:1;27975:174:0;;;12155:21:1;12212:2;12192:18;;;12185:30;12251:34;12231:18;;;12224:62;12322:32;12302:18;;;12295:60;12372:19;;27975:174:0;11971:426:1;27975:174:0;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;28957:336::-;29152:41;3256:10;29185:7;29152:18;:41::i;:::-;29144:100;;;;-1:-1:-1;;;29144:100:0;;;;;;;:::i;:::-;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;-1:-1:-1;;;40435:87:0;;9003:2:1;40435:87:0;;;8985:21:1;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:1;;;9125:41;9183:19;;40435:87:0;8801:407:1;40435:87:0;-1:-1:-1;;;;;;40540:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40318:256::o;49247:145::-;4511:13;:11;:13::i;:::-;49300:7:::1;49321;4698:6:::0;;-1:-1:-1;;;;;4698:6:0;;4625:87;49321:7:::1;-1:-1:-1::0;;;;;49313:21:0::1;49342;49313:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49299:69;;;49383:2;49375:11;;;::::0;::::1;;49292:100;49247:145::o:0;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;47427:348::-;47502:16;47530:23;47556:17;47566:6;47556:9;:17::i;:::-;47530:43;;47580:25;47622:15;47608:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47608:30:0;;47580:58;;47650:9;47645:103;47665:15;47661:1;:19;47645:103;;;47710:30;47730:6;47738:1;47710:19;:30::i;:::-;47696:8;47705:1;47696:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47682:3;;;;:::i;:::-;;;;47645:103;;;-1:-1:-1;47761:8:0;47427:348;-1:-1:-1;;;47427:348:0:o;48373:80::-;4511:13;:11;:13::i;:::-;48432:4:::1;:15:::0;48373:80::o;40840:233::-;40915:7;40951:30;40738:10;:17;;40650:113;40951:30;40943:5;:38;40935:95;;;;-1:-1:-1;;;40935:95:0;;14497:2:1;40935:95:0;;;14479:21:1;14536:2;14516:18;;;14509:30;14575:34;14555:18;;;14548:62;-1:-1:-1;;;14626:18:1;;;14619:42;14678:19;;40935:95:0;14295:408:1;40935:95:0;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;41041:24;;40840:233;;;:::o;48709:98::-;4511:13;:11;:13::i;:::-;48780:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48709:98:::0;:::o;26455:222::-;26527:7;26563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26563:16:0;26598:19;26590:56;;;;-1:-1:-1;;;26590:56:0;;13742:2:1;26590:56:0;;;13724:21:1;13781:2;13761:18;;;13754:30;-1:-1:-1;;;13800:18:1;;;13793:54;13864:18;;26590:56:0;13540:348:1;26186:207:0;26258:7;-1:-1:-1;;;;;26286:19:0;;26278:73;;;;-1:-1:-1;;;26278:73:0;;11763:2:1;26278:73:0;;;11745:21:1;11802:2;11782:18;;;11775:30;11841:34;11821:18;;;11814:62;-1:-1:-1;;;11892:18:1;;;11885:39;11941:19;;26278:73:0;11561:405:1;26278:73:0;-1:-1:-1;;;;;;26369:16:0;;;;;:9;:16;;;;;;;26186:207::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;49020:214::-;4511:13;:11;:13::i;:::-;49091:14:::1;49108:13;40738:10:::0;:17;;40650:113;49108:13:::1;49091:30;;49132:7;49128:101;49149:10;:17;49145:1;:21;;;49128:101;;;49181:40;49191:10;49202:1;49191:13;;;;;;;;;;:::i;:::-;;;;;;;49215:1;49206:10;;:6;:10;;;;:::i;:::-;:14;::::0;49219:1:::1;49206:14;:::i;:::-;49181:9;:40::i;:::-;49168:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49128:101;;48459:116:::0;4511:13;:11;:13::i;:::-;48536::::1;:33:::0;48459:116::o;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;46988:433::-;47045:14;47062:13;40738:10;:17;;40650:113;47062:13;47091:6;;47045:30;;-1:-1:-1;47091:6:0;;47090:7;47082:16;;;;;;47127:1;47113:11;:15;47105:24;;;;;;47159:13;;47144:11;:28;;47136:37;;;;;;47212:9;;47188:20;47197:11;47188:6;:20;:::i;:::-;:33;;47180:42;;;;;;4698:6;;-1:-1:-1;;;;;4698:6:0;47235:10;:21;47231:84;;47295:11;47288:4;;:18;;;;:::i;:::-;47275:9;:31;;47267:40;;;;;;47340:1;47323:93;47348:11;47343:1;:16;47323:93;;47375:33;47385:10;47397;47406:1;47397:6;:10;:::i;47375:33::-;47361:3;;;;:::i;:::-;;;;47323:93;;28500:155;28595:52;3256:10;28628:8;28638;28595:18;:52::i;48300:65::-;4511:13;:11;:13::i;:::-;48344:8:::1;:15:::0;;-1:-1:-1;;48344:15:0::1;;;::::0;;48300:65::o;29620:323::-;29794:41;3256:10;29827:7;29794:18;:41::i;:::-;29786:100;;;;-1:-1:-1;;;29786:100:0;;;;;;;:::i;:::-;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;46347:37::-;;;;;;;:::i;47781:497::-;31515:4;31539:16;;;:7;:16;;;;;;47879:13;;-1:-1:-1;;;;;31539:16:0;47904:97;;;;-1:-1:-1;;;47904:97:0;;13326:2:1;47904:97:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404:34;13384:18;;;13377:62;-1:-1:-1;;;13455:18:1;;;13448:45;13510:19;;47904:97:0;13124:411:1;47904:97:0;48017:8;;;;;;;48014:62;;48054:14;48047:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47781:497;;;:::o;48014:62::-;48084:28;48115:10;:8;:10::i;:::-;48084:41;;48170:1;48145:14;48139:28;:32;:133;;;;;;;;;;;;;;;;;48207:14;48223:18;:7;:16;:18::i;:::-;48243:13;48190:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48139:133;48132:140;47781:497;-1:-1:-1;;;47781:497:0:o;48813:122::-;4511:13;:11;:13::i;:::-;48896:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48583:120::-:0;4511:13;:11;:13::i;:::-;48665:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5531:201::-:0;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;9834:2:1;5612:73:0::1;::::0;::::1;9816:21:1::0;9873:2;9853:18;;;9846:30;9912:34;9892:18;;;9885:62;-1:-1:-1;;;9963:18:1;;;9956:36;10009:19;;5612:73:0::1;9632:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;25817:305::-:0;25919:4;-1:-1:-1;;;;;;25956:40:0;;-1:-1:-1;;;25956:40:0;;:105;;-1:-1:-1;;;;;;;26013:48:0;;-1:-1:-1;;;26013:48:0;25956:105;:158;;;-1:-1:-1;;;;;;;;;;17588:40:0;;;26078:36;17479:157;4790:132;4698:6;;-1:-1:-1;;;;;4698:6:0;3256:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;12965:2:1;4846:68:0;;;12947:21:1;;;12984:18;;;12977:30;13043:34;13023:18;;;13016:62;13095:18;;4846:68:0;12763:356:1;36232:135:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;36306:53;;;;-1:-1:-1;;;36306:53:0;;13742:2:1;36306:53:0;;;13724:21:1;13781:2;13761:18;;;13754:30;-1:-1:-1;;;13800:18:1;;;13793:54;13864:18;;36306:53:0;13540:348:1;35511:174:0;35586:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35586:29:0;-1:-1:-1;;;;;35586:29:0;;;;;;;;:24;;35640:23;35586:24;35640:14;:23::i;:::-;-1:-1:-1;;;;;35631:46:0;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;-1:-1:-1;;;;;31912:16:0;:7;-1:-1:-1;;;;;31912:16:0;;:52;;;-1:-1:-1;;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31932:32;31912:87;;;;31992:7;-1:-1:-1;;;;;31968:31:0;:20;31980:7;31968:11;:20::i;:::-;-1:-1:-1;;;;;31968:31:0;;31912:87;31904:96;31744:264;-1:-1:-1;;;;31744:264:0:o;34767:625::-;34926:4;-1:-1:-1;;;;;34899:31:0;:23;34914:7;34899:14;:23::i;:::-;-1:-1:-1;;;;;34899:31:0;;34891:81;;;;-1:-1:-1;;;34891:81:0;;10241:2:1;34891:81:0;;;10223:21:1;10280:2;10260:18;;;10253:30;10319:34;10299:18;;;10292:62;-1:-1:-1;;;10370:18:1;;;10363:35;10415:19;;34891:81:0;10039:401:1;34891:81:0;-1:-1:-1;;;;;34991:16:0;;34983:65;;;;-1:-1:-1;;;34983:65:0;;11004:2:1;34983:65:0;;;10986:21:1;11043:2;11023:18;;;11016:30;11082:34;11062:18;;;11055:62;-1:-1:-1;;;11133:18:1;;;11126:34;11177:19;;34983:65:0;10802:400:1;34983:65:0;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;-1:-1:-1;;;;;35207:15:0;;;;;;:9;:15;;;;;:20;;35226:1;;35207:15;:20;;35226:1;;35207:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35238:13:0;;;;;;:9;:13;;;;;:18;;35255:1;;35238:13;:18;;35255:1;;35238:18;:::i;:::-;;;;-1:-1:-1;;35267:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35267:21:0;-1:-1:-1;;;;;35267:21:0;;;;;;;;;35306:27;;35267:16;;35306:27;;;;;;;27844:347;27774:417;;:::o;5892:191::-;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;35828:315::-;35983:8;-1:-1:-1;;;;;35974:17:0;:5;-1:-1:-1;;;;;35974:17:0;;;35966:55;;;;-1:-1:-1;;;35966:55:0;;11409:2:1;35966:55:0;;;11391:21:1;11448:2;11428:18;;;11421:30;11487:27;11467:18;;;11460:55;11532:18;;35966:55:0;11207:349:1;35966:55:0;-1:-1:-1;;;;;36032:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36032:46:0;;;;;;;;;;36094:41;;8525::1;;;36094::0;;8498:18:1;36094:41:0;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;-1:-1:-1;;;31019:110:0;;;;;;;:::i;46867:102::-;46927:13;46956:7;46949:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;41686:589;-1:-1:-1;;;;;41892:18:0;;41888:187;;41927:40;41959:7;43102:10;:17;;43075:24;;;;:15;:24;;;;;:44;;;43130:24;;;;;;;;;;;;42998:164;41927:40;41888:187;;;41997:2;-1:-1:-1;;;;;41989:10:0;:4;-1:-1:-1;;;;;41989:10:0;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;-1:-1:-1;;;;;42089:16:0;;42085:183;;42122:45;42159:7;42122:36;:45::i;42085:183::-;42195:4;-1:-1:-1;;;;;42189:10:0;:2;-1:-1:-1;;;;;42189:10:0;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;-1:-1:-1;;;32845:153:0;;;;;;;:::i;36931:853::-;37085:4;-1:-1:-1;;;;;37106:13:0;;7618:19;:23;37102:675;;37142:71;;-1:-1:-1;;;37142:71:0;;-1:-1:-1;;;;;37142:36:0;;;;;:71;;3256:10;;37193:4;;37199:7;;37208:4;;37142:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37142:71:0;;;;;;;;-1:-1:-1;;37142:71:0;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37383:13:0;;37379:328;;37426:60;;-1:-1:-1;;;37426:60:0;;;;;;;:::i;37379:328::-;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;-1:-1:-1;;;;;;37264:51:0;-1:-1:-1;;;37264:51:0;;-1:-1:-1;37257:58:0;;37102:675;-1:-1:-1;37761:4:0;36931:853;;;;;;:::o;43789:988::-;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44117:18;44138:26;;;:17;:26;;;;;;44055:51;;-1:-1:-1;44271:28:0;;;44267:328;;-1:-1:-1;;;;;44338:18:0;;44316:19;44338:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44389:30;;;;;;:44;;;44506:30;;:17;:30;;;;;:43;;;44267:328;-1:-1:-1;44691:26:0;;;;:17;:26;;;;;;;;44684:33;;;-1:-1:-1;;;;;44735:18:0;;;;;:12;:18;;;;;:34;;;;;;;44728:41;43789:988::o;45072:1079::-;45350:10;:17;45325:22;;45350:21;;45370:1;;45350:21;:::i;:::-;45382:18;45403:24;;;:15;:24;;;;;;45776:10;:26;;45325:46;;-1:-1:-1;45403:24:0;;45325:46;;45776:26;;;;;;:::i;:::-;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45920:28;;;:15;:28;;;;;;;:41;;;46092:24;;;;;46085:31;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;-1:-1:-1;;;;;42709:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42754:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42576:221:0:o;33342:439::-;-1:-1:-1;;;;;33422:16:0;;33414:61;;;;-1:-1:-1;;;33414:61:0;;12604:2:1;33414:61:0;;;12586:21:1;;;12623:18;;;12616:30;12682:34;12662:18;;;12655:62;12734:18;;33414:61:0;12402:356:1;33414:61:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;:30;33486:58;;;;-1:-1:-1;;;33486:58:0;;10647:2:1;33486:58:0;;;10629:21:1;10686:2;10666:18;;;10659:30;10725;10705:18;;;10698:58;10773:18;;33486:58:0;10445:352:1;33486:58:0;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;-1:-1:-1;;;;;33615:13:0;;;;;;:9;:13;;;;;:18;;33632:1;;33615:13;:18;;33632:1;;33615:18;:::i;:::-;;;;-1:-1:-1;;33644:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33644:21:0;-1:-1:-1;;;;;33644:21:0;;;;;;;;33683:33;;33644:16;;;33683:33;;33644:16;;33683:33;48780:21:::1;48709:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:1527::-;5529:3;5567:6;5561:13;5593:4;5606:51;5650:6;5645:3;5640:2;5632:6;5628:15;5606:51;:::i;:::-;5720:13;;5679:16;;;;5742:55;5720:13;5679:16;5764:15;;;5742:55;:::i;:::-;5886:13;;5819:20;;;5859:1;;5946;5968:18;;;;6021;;;;6048:93;;6126:4;6116:8;6112:19;6100:31;;6048:93;6189:2;6179:8;6176:16;6156:18;6153:40;6150:167;;;-1:-1:-1;;;6216:33:1;;6272:4;6269:1;6262:15;6302:4;6223:3;6290:17;6150:167;6333:18;6360:110;;;;6484:1;6479:328;;;;6326:481;;6360:110;-1:-1:-1;;6395:24:1;;6381:39;;6440:20;;;;-1:-1:-1;6360:110:1;;6479:328;15658:1;15651:14;;;15695:4;15682:18;;6574:1;6588:169;6602:8;6599:1;6596:15;6588:169;;;6684:14;;6669:13;;;6662:37;6727:16;;;;6619:10;;6588:169;;;6592:3;;6788:8;6781:5;6777:20;6770:27;;6326:481;-1:-1:-1;6823:3:1;;5305:1527;-1:-1:-1;;;;;;;;;;;5305:1527:1:o;7255:488::-;-1:-1:-1;;;;;7524:15:1;;;7506:34;;7576:15;;7571:2;7556:18;;7549:43;7623:2;7608:18;;7601:34;;;7671:3;7666:2;7651:18;;7644:31;;;7449:4;;7692:45;;7717:19;;7709:6;7692:45;:::i;:::-;7684:53;7255:488;-1:-1:-1;;;;;;7255:488:1:o;7748:632::-;7919:2;7971:21;;;8041:13;;7944:18;;;8063:22;;;7890:4;;7919:2;8142:15;;;;8116:2;8101:18;;;7890:4;8185:169;8199:6;8196:1;8193:13;8185:169;;;8260:13;;8248:26;;8329:15;;;;8294:12;;;;8221:1;8214:9;8185:169;;;-1:-1:-1;8371:3:1;;7748:632;-1:-1:-1;;;;;;7748:632:1:o;8577:219::-;8726:2;8715:9;8708:21;8689:4;8746:44;8786:2;8775:9;8771:18;8763:6;8746:44;:::i;9213:414::-;9415:2;9397:21;;;9454:2;9434:18;;;9427:30;9493:34;9488:2;9473:18;;9466:62;-1:-1:-1;;;9559:2:1;9544:18;;9537:48;9617:3;9602:19;;9213:414::o;14708:410::-;14910:2;14892:21;;;14949:2;14929:18;;;14922:30;14988:34;14983:2;14968:18;;14961:62;-1:-1:-1;;;15054:2:1;15039:18;;15032:44;15108:3;15093:19;;14708:410::o;15305:275::-;15376:2;15370:9;15441:2;15422:13;;-1:-1:-1;;15418:27:1;15406:40;;15476:18;15461:34;;15497:22;;;15458:62;15455:88;;;15523:18;;:::i;:::-;15559:2;15552:22;15305:275;;-1:-1:-1;15305:275:1:o;15711:128::-;15751:3;15782:1;15778:6;15775:1;15772:13;15769:39;;;15788:18;;:::i;:::-;-1:-1:-1;15824:9:1;;15711:128::o;15844:120::-;15884:1;15910;15900:35;;15915:18;;:::i;:::-;-1:-1:-1;15949:9:1;;15844:120::o;15969:168::-;16009:7;16075:1;16071;16067:6;16063:14;16060:1;16057:21;16052:1;16045:9;16038:17;16034:45;16031:71;;;16082:18;;:::i;:::-;-1:-1:-1;16122:9:1;;15969:168::o;16142:125::-;16182:4;16210:1;16207;16204:8;16201:34;;;16215:18;;:::i;:::-;-1:-1:-1;16252:9:1;;16142:125::o;16272:258::-;16344:1;16354:113;16368:6;16365:1;16362:13;16354:113;;;16444:11;;;16438:18;16425:11;;;16418:39;16390:2;16383:10;16354:113;;;16485:6;16482:1;16479:13;16476:48;;;-1:-1:-1;;16520:1:1;16502:16;;16495:27;16272:258::o;16535:380::-;16614:1;16610:12;;;;16657;;;16678:61;;16732:4;16724:6;16720:17;16710:27;;16678:61;16785:2;16777:6;16774:14;16754:18;16751:38;16748:161;;;16831:10;16826:3;16822:20;16819:1;16812:31;16866:4;16863:1;16856:15;16894:4;16891:1;16884:15;16748:161;;16535:380;;;:::o;16920:135::-;16959:3;-1:-1:-1;;16980:17:1;;16977:43;;;17000:18;;:::i;:::-;-1:-1:-1;17047:1:1;17036:13;;16920:135::o;17060:175::-;17097:3;17141:4;17134:5;17130:16;17170:4;17161:7;17158:17;17155:43;;;17178:18;;:::i;:::-;17227:1;17214:15;;17060:175;-1:-1:-1;;17060:175:1:o;17240:112::-;17272:1;17298;17288:35;;17303:18;;:::i;:::-;-1:-1:-1;17337:9:1;;17240:112::o;17357:127::-;17418:10;17413:3;17409:20;17406:1;17399:31;17449:4;17446:1;17439:15;17473:4;17470:1;17463:15;17489:127;17550:10;17545:3;17541:20;17538:1;17531:31;17581:4;17578:1;17571:15;17605:4;17602:1;17595:15;17621:127;17682:10;17677:3;17673:20;17670:1;17663:31;17713:4;17710:1;17703:15;17737:4;17734:1;17727:15;17753:127;17814:10;17809:3;17805:20;17802:1;17795:31;17845:4;17842:1;17835:15;17869:4;17866:1;17859:15;17885:127;17946:10;17941:3;17937:20;17934:1;17927:31;17977:4;17974:1;17967:15;18001:4;17998:1;17991:15;18017:131;-1:-1:-1;;;;;;18091:32:1;;18081:43;;18071:71;;18138:1;18135;18128:12
Swarm Source
ipfs://94631a94f51d8320d2ba5df8da9ddd129b8ddda16a6f71db0412ed1dad0cbfae
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.