Token The Rug Staff Letters
Overview ERC-721
Total Supply:
30 THERUG
Holders:
11 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheRug
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-02 */ // SPDX-License-Identifier: MIT /* _______ _ _ ______ _____ _ _ _____ |__ __| | | | ____| | __ \| | | |/ ____| | | | |__| | |__ | |__) | | | | | __ | | | __ | __| | _ /| | | | | |_ | | | | | | | |____ | | \ \| |__| | |__| | |_| |_| |_|______| |_| \_\\____/ \_____| */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // 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.6.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: balance query for the zero address"); 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: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); 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: transfer caller is not 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: transfer caller is not 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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); 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 a {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 a {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 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 { 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/TheRug.sol pragma solidity >=0.7.0 <0.9.0; contract TheRug is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; uint256 public maxMintAmount = 30; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable onlyOwner { uint256 supply = totalSupply(); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI)) : ""; } //only owner function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
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"}],"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":"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":[{"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":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052601e600c553480156200001657600080fd5b5060405162003d3738038062003d3783398181016040528101906200003c91906200037d565b82828160009080519060200190620000569291906200024f565b5080600190805190602001906200006f9291906200024f565b5050506200009262000086620000ac60201b60201c565b620000b460201b60201c565b620000a3816200017a60201b60201c565b5050506200063d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200018a620000ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001b06200022560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000200906200045d565b60405180910390fd5b80600b9080519060200190620002219291906200024f565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200025d9062000525565b90600052602060002090601f016020900481019282620002815760008555620002cd565b82601f106200029c57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cc578251825591602001919060010190620002af565b5b509050620002dc9190620002e0565b5090565b5b80821115620002fb576000816000905550600101620002e1565b5090565b6000620003166200031084620004a8565b6200047f565b905082815260208101848484011115620003355762000334620005f4565b5b62000342848285620004ef565b509392505050565b600082601f830112620003625762000361620005ef565b5b815162000374848260208601620002ff565b91505092915050565b600080600060608486031215620003995762000398620005fe565b5b600084015167ffffffffffffffff811115620003ba57620003b9620005f9565b5b620003c8868287016200034a565b935050602084015167ffffffffffffffff811115620003ec57620003eb620005f9565b5b620003fa868287016200034a565b925050604084015167ffffffffffffffff8111156200041e576200041d620005f9565b5b6200042c868287016200034a565b9150509250925092565b600062000445602083620004de565b9150620004528262000614565b602082019050919050565b60006020820190508181036000830152620004788162000436565b9050919050565b60006200048b6200049e565b90506200049982826200055b565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c657620004c5620005c0565b5b620004d18262000603565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200050f578082015181840152602081019050620004f2565b838111156200051f576000848401525b50505050565b600060028204905060018216806200053e57607f821691505b6020821081141562000555576200055462000591565b5b50919050565b620005668262000603565b810181811067ffffffffffffffff82111715620005885762000587620005c0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6136ea806200064d6000396000f3fe6080604052600436106101405760003560e01c806355f804b3116100b6578063a0712d681161006f578063a0712d681461044f578063a22cb4651461046b578063b88d4fde14610494578063c87b56dd146104bd578063e985e9c5146104fa578063f2fde38b1461053757610140565b806355f804b31461033f5780636352211e1461036857806370a08231146103a5578063715018a6146103e25780638da5cb5b146103f957806395d89b411461042457610140565b8063239c70ae11610108578063239c70ae1461023e57806323b872dd146102695780632f745c59146102925780633ccfd60b146102cf57806342842e0e146102d95780634f6ccce71461030257610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea57806318160ddd14610213575b600080fd5b34801561015157600080fd5b5061016c6004803603810190610167919061262a565b610560565b6040516101799190612af6565b60405180910390f35b34801561018e57600080fd5b506101976105da565b6040516101a49190612b11565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906126cd565b61066c565b6040516101e19190612a8f565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c91906125ea565b6106f1565b005b34801561021f57600080fd5b50610228610809565b6040516102359190612d73565b60405180910390f35b34801561024a57600080fd5b50610253610816565b6040516102609190612d73565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b91906124d4565b61081c565b005b34801561029e57600080fd5b506102b960048036038101906102b491906125ea565b61087c565b6040516102c69190612d73565b60405180910390f35b6102d7610921565b005b3480156102e557600080fd5b5061030060048036038101906102fb91906124d4565b610a16565b005b34801561030e57600080fd5b50610329600480360381019061032491906126cd565b610a36565b6040516103369190612d73565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190612684565b610aa7565b005b34801561037457600080fd5b5061038f600480360381019061038a91906126cd565b610b3d565b60405161039c9190612a8f565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612467565b610bef565b6040516103d99190612d73565b60405180910390f35b3480156103ee57600080fd5b506103f7610ca7565b005b34801561040557600080fd5b5061040e610d2f565b60405161041b9190612a8f565b60405180910390f35b34801561043057600080fd5b50610439610d59565b6040516104469190612b11565b60405180910390f35b610469600480360381019061046491906126cd565b610deb565b005b34801561047757600080fd5b50610492600480360381019061048d91906125aa565b610eca565b005b3480156104a057600080fd5b506104bb60048036038101906104b69190612527565b610ee0565b005b3480156104c957600080fd5b506104e460048036038101906104df91906126cd565b610f42565b6040516104f19190612b11565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612494565b610fdf565b60405161052e9190612af6565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190612467565b611073565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d357506105d28261116b565b5b9050919050565b6060600080546105e990612fa3565b80601f016020809104026020016040519081016040528092919081815260200182805461061590612fa3565b80156106625780601f1061063757610100808354040283529160200191610662565b820191906000526020600020905b81548152906001019060200180831161064557829003601f168201915b5050505050905090565b60006106778261124d565b6106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad90612cb3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fc82610b3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076490612d13565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078c6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614806107bb57506107ba816107b56112b9565b610fdf565b5b6107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f190612c33565b60405180910390fd5b61080483836112c1565b505050565b6000600880549050905090565b600c5481565b61082d6108276112b9565b8261137a565b61086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612d33565b60405180910390fd5b610877838383611458565b505050565b600061088783610bef565b82106108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf90612b33565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109296112b9565b73ffffffffffffffffffffffffffffffffffffffff16610947610d2f565b73ffffffffffffffffffffffffffffffffffffffff161461099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612cd3565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516109c390612a7a565b60006040518083038185875af1925050503d8060008114610a00576040519150601f19603f3d011682016040523d82523d6000602084013e610a05565b606091505b5050905080610a1357600080fd5b50565b610a3183838360405180602001604052806000815250610ee0565b505050565b6000610a40610809565b8210610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612d53565b60405180910390fd5b60088281548110610a9557610a946130dc565b5b90600052602060002001549050919050565b610aaf6112b9565b73ffffffffffffffffffffffffffffffffffffffff16610acd610d2f565b73ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90612cd3565b60405180910390fd5b80600b9080519060200190610b3992919061227b565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd90612c73565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790612c53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caf6112b9565b73ffffffffffffffffffffffffffffffffffffffff16610ccd610d2f565b73ffffffffffffffffffffffffffffffffffffffff1614610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90612cd3565b60405180910390fd5b610d2d60006116bf565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d6890612fa3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9490612fa3565b8015610de15780601f10610db657610100808354040283529160200191610de1565b820191906000526020600020905b815481529060010190602001808311610dc457829003601f168201915b5050505050905090565b610df36112b9565b73ffffffffffffffffffffffffffffffffffffffff16610e11610d2f565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90612cd3565b60405180910390fd5b6000610e71610809565b905060008211610e8057600080fd5b600c54821115610e8f57600080fd5b6000600190505b828111610ec557610eb2338284610ead9190612e63565b611785565b8080610ebd90613006565b915050610e96565b505050565b610edc610ed56112b9565b83836117a3565b5050565b610ef1610eeb6112b9565b8361137a565b610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790612d33565b60405180910390fd5b610f3c84848484611910565b50505050565b6060610f4d8261124d565b610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390612cf3565b60405180910390fd5b6000610f9661196c565b90506000815111610fb65760405180602001604052806000815250610fd7565b80604051602001610fc79190612a63565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61107b6112b9565b73ffffffffffffffffffffffffffffffffffffffff16611099610d2f565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690612cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612b73565b60405180910390fd5b611168816116bf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061123657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112465750611245826119fe565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661133483610b3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113858261124d565b6113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612c13565b60405180910390fd5b60006113cf83610b3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061141157506114108185610fdf565b5b8061144f57508373ffffffffffffffffffffffffffffffffffffffff166114378461066c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661147882610b3d565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590612b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590612bd3565b60405180910390fd5b611549838383611a68565b6115546000826112c1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a49190612eb9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115fb9190612e63565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ba838383611b7c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61179f828260405180602001604052806000815250611b81565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990612bf3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119039190612af6565b60405180910390a3505050565b61191b848484611458565b61192784848484611bdc565b611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d90612b53565b60405180910390fd5b50505050565b6060600b805461197b90612fa3565b80601f01602080910402602001604051908101604052809291908181526020018280546119a790612fa3565b80156119f45780601f106119c9576101008083540402835291602001916119f4565b820191906000526020600020905b8154815290600101906020018083116119d757829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611a73838383611d73565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ab657611ab181611d78565b611af5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611af457611af38382611dc1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b3857611b3381611f2e565b611b77565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611b7657611b758282611fff565b5b5b505050565b505050565b611b8b838361207e565b611b986000848484611bdc565b611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90612b53565b60405180910390fd5b505050565b6000611bfd8473ffffffffffffffffffffffffffffffffffffffff16612258565b15611d66578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c266112b9565b8786866040518563ffffffff1660e01b8152600401611c489493929190612aaa565b602060405180830381600087803b158015611c6257600080fd5b505af1925050508015611c9357506040513d601f19601f82011682018060405250810190611c909190612657565b60015b611d16573d8060008114611cc3576040519150601f19603f3d011682016040523d82523d6000602084013e611cc8565b606091505b50600081511415611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590612b53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d6b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611dce84610bef565b611dd89190612eb9565b9050600060076000848152602001908152602001600020549050818114611ebd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611f429190612eb9565b9050600060096000848152602001908152602001600020549050600060088381548110611f7257611f716130dc565b5b906000526020600020015490508060088381548110611f9457611f936130dc565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480611fe357611fe26130ad565b5b6001900381819060005260206000200160009055905550505050565b600061200a83610bef565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590612c93565b60405180910390fd5b6120f78161124d565b15612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90612bb3565b60405180910390fd5b61214360008383611a68565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121939190612e63565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461225460008383611b7c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461228790612fa3565b90600052602060002090601f0160209004810192826122a957600085556122f0565b82601f106122c257805160ff19168380011785556122f0565b828001600101855582156122f0579182015b828111156122ef5782518255916020019190600101906122d4565b5b5090506122fd9190612301565b5090565b5b8082111561231a576000816000905550600101612302565b5090565b600061233161232c84612db3565b612d8e565b90508281526020810184848401111561234d5761234c61313f565b5b612358848285612f61565b509392505050565b600061237361236e84612de4565b612d8e565b90508281526020810184848401111561238f5761238e61313f565b5b61239a848285612f61565b509392505050565b6000813590506123b181613658565b92915050565b6000813590506123c68161366f565b92915050565b6000813590506123db81613686565b92915050565b6000815190506123f081613686565b92915050565b600082601f83011261240b5761240a61313a565b5b813561241b84826020860161231e565b91505092915050565b600082601f8301126124395761243861313a565b5b8135612449848260208601612360565b91505092915050565b6000813590506124618161369d565b92915050565b60006020828403121561247d5761247c613149565b5b600061248b848285016123a2565b91505092915050565b600080604083850312156124ab576124aa613149565b5b60006124b9858286016123a2565b92505060206124ca858286016123a2565b9150509250929050565b6000806000606084860312156124ed576124ec613149565b5b60006124fb868287016123a2565b935050602061250c868287016123a2565b925050604061251d86828701612452565b9150509250925092565b6000806000806080858703121561254157612540613149565b5b600061254f878288016123a2565b9450506020612560878288016123a2565b935050604061257187828801612452565b925050606085013567ffffffffffffffff81111561259257612591613144565b5b61259e878288016123f6565b91505092959194509250565b600080604083850312156125c1576125c0613149565b5b60006125cf858286016123a2565b92505060206125e0858286016123b7565b9150509250929050565b6000806040838503121561260157612600613149565b5b600061260f858286016123a2565b925050602061262085828601612452565b9150509250929050565b6000602082840312156126405761263f613149565b5b600061264e848285016123cc565b91505092915050565b60006020828403121561266d5761266c613149565b5b600061267b848285016123e1565b91505092915050565b60006020828403121561269a57612699613149565b5b600082013567ffffffffffffffff8111156126b8576126b7613144565b5b6126c484828501612424565b91505092915050565b6000602082840312156126e3576126e2613149565b5b60006126f184828501612452565b91505092915050565b61270381612eed565b82525050565b61271281612eff565b82525050565b600061272382612e15565b61272d8185612e2b565b935061273d818560208601612f70565b6127468161314e565b840191505092915050565b600061275c82612e20565b6127668185612e47565b9350612776818560208601612f70565b61277f8161314e565b840191505092915050565b600061279582612e20565b61279f8185612e58565b93506127af818560208601612f70565b80840191505092915050565b60006127c8602b83612e47565b91506127d38261315f565b604082019050919050565b60006127eb603283612e47565b91506127f6826131ae565b604082019050919050565b600061280e602683612e47565b9150612819826131fd565b604082019050919050565b6000612831602583612e47565b915061283c8261324c565b604082019050919050565b6000612854601c83612e47565b915061285f8261329b565b602082019050919050565b6000612877602483612e47565b9150612882826132c4565b604082019050919050565b600061289a601983612e47565b91506128a582613313565b602082019050919050565b60006128bd602c83612e47565b91506128c88261333c565b604082019050919050565b60006128e0603883612e47565b91506128eb8261338b565b604082019050919050565b6000612903602a83612e47565b915061290e826133da565b604082019050919050565b6000612926602983612e47565b915061293182613429565b604082019050919050565b6000612949602083612e47565b915061295482613478565b602082019050919050565b600061296c602c83612e47565b9150612977826134a1565b604082019050919050565b600061298f602083612e47565b915061299a826134f0565b602082019050919050565b60006129b2602f83612e47565b91506129bd82613519565b604082019050919050565b60006129d5602183612e47565b91506129e082613568565b604082019050919050565b60006129f8600083612e3c565b9150612a03826135b7565b600082019050919050565b6000612a1b603183612e47565b9150612a26826135ba565b604082019050919050565b6000612a3e602c83612e47565b9150612a4982613609565b604082019050919050565b612a5d81612f57565b82525050565b6000612a6f828461278a565b915081905092915050565b6000612a85826129eb565b9150819050919050565b6000602082019050612aa460008301846126fa565b92915050565b6000608082019050612abf60008301876126fa565b612acc60208301866126fa565b612ad96040830185612a54565b8181036060830152612aeb8184612718565b905095945050505050565b6000602082019050612b0b6000830184612709565b92915050565b60006020820190508181036000830152612b2b8184612751565b905092915050565b60006020820190508181036000830152612b4c816127bb565b9050919050565b60006020820190508181036000830152612b6c816127de565b9050919050565b60006020820190508181036000830152612b8c81612801565b9050919050565b60006020820190508181036000830152612bac81612824565b9050919050565b60006020820190508181036000830152612bcc81612847565b9050919050565b60006020820190508181036000830152612bec8161286a565b9050919050565b60006020820190508181036000830152612c0c8161288d565b9050919050565b60006020820190508181036000830152612c2c816128b0565b9050919050565b60006020820190508181036000830152612c4c816128d3565b9050919050565b60006020820190508181036000830152612c6c816128f6565b9050919050565b60006020820190508181036000830152612c8c81612919565b9050919050565b60006020820190508181036000830152612cac8161293c565b9050919050565b60006020820190508181036000830152612ccc8161295f565b9050919050565b60006020820190508181036000830152612cec81612982565b9050919050565b60006020820190508181036000830152612d0c816129a5565b9050919050565b60006020820190508181036000830152612d2c816129c8565b9050919050565b60006020820190508181036000830152612d4c81612a0e565b9050919050565b60006020820190508181036000830152612d6c81612a31565b9050919050565b6000602082019050612d886000830184612a54565b92915050565b6000612d98612da9565b9050612da48282612fd5565b919050565b6000604051905090565b600067ffffffffffffffff821115612dce57612dcd61310b565b5b612dd78261314e565b9050602081019050919050565b600067ffffffffffffffff821115612dff57612dfe61310b565b5b612e088261314e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6e82612f57565b9150612e7983612f57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612eae57612ead61304f565b5b828201905092915050565b6000612ec482612f57565b9150612ecf83612f57565b925082821015612ee257612ee161304f565b5b828203905092915050565b6000612ef882612f37565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f8e578082015181840152602081019050612f73565b83811115612f9d576000848401525b50505050565b60006002820490506001821680612fbb57607f821691505b60208210811415612fcf57612fce61307e565b5b50919050565b612fde8261314e565b810181811067ffffffffffffffff82111715612ffd57612ffc61310b565b5b80604052505050565b600061301182612f57565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130445761304361304f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61366181612eed565b811461366c57600080fd5b50565b61367881612eff565b811461368357600080fd5b50565b61368f81612f0b565b811461369a57600080fd5b50565b6136a681612f57565b81146136b157600080fd5b5056fea2646970667358221220d8b26b208c387053e76a6eb157163dc853d9291df00d8cba474ebdb50df6051364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001554686520527567205374616666204c6574746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000654484552554700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5875684c3870536b4a6e5846355579334b4548434a69793564736e724b78754c4544755962376961695065532f7468655275672e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001554686520527567205374616666204c6574746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000654484552554700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5875684c3870536b4a6e5846355579334b4548434a69793564736e724b78754c4544755962376961695065532f7468655275672e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): The Rug Staff Letters
Arg [1] : _symbol (string): THERUG
Arg [2] : _initBaseURI (string): ipfs://QmXuhL8pSkJnXF5Uy3KEHCJiy5dsnrKxuLEDuYb7iaiPeS/theRug.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 54686520527567205374616666204c6574746572730000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5448455255470000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d5875684c3870536b4a6e5846355579334b4548434a6979
Arg [9] : 3564736e724b78754c4544755962376961695065532f7468655275672e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
46014:1410:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39786:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26605:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28165:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27688:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40426:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46115:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28915:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40094:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47263:158;;;:::i;:::-;;29325:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40616:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47158:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26299:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26029:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5163:103;;;;;;;;;;;;;:::i;:::-;;4512:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46461:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28458:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29581:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46746:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28684:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5421:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39786:224;39888:4;39927:35;39912:50;;;:11;:50;;;;:90;;;;39966:36;39990:11;39966:23;:36::i;:::-;39912:90;39905:97;;39786:224;;;:::o;26605:100::-;26659:13;26692:5;26685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26605:100;:::o;28165:221::-;28241:7;28269:16;28277:7;28269;:16::i;:::-;28261:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28354:15;:24;28370:7;28354:24;;;;;;;;;;;;;;;;;;;;;28347:31;;28165:221;;;:::o;27688:411::-;27769:13;27785:23;27800:7;27785:14;:23::i;:::-;27769:39;;27833:5;27827:11;;:2;:11;;;;27819:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27927:5;27911:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27936:37;27953:5;27960:12;:10;:12::i;:::-;27936:16;:37::i;:::-;27911:62;27889:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28070:21;28079:2;28083:7;28070:8;:21::i;:::-;27758:341;27688:411;;:::o;40426:113::-;40487:7;40514:10;:17;;;;40507:24;;40426:113;:::o;46115:33::-;;;;:::o;28915:339::-;29110:41;29129:12;:10;:12::i;:::-;29143:7;29110:18;:41::i;:::-;29102:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29218:28;29228:4;29234:2;29238:7;29218:9;:28::i;:::-;28915:339;;;:::o;40094:256::-;40191:7;40227:23;40244:5;40227:16;:23::i;:::-;40219:5;:31;40211:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40316:12;:19;40329:5;40316:19;;;;;;;;;;;;;;;:26;40336:5;40316:26;;;;;;;;;;;;40309:33;;40094:256;;;;:::o;47263:158::-;4743:12;:10;:12::i;:::-;4732:23;;:7;:5;:7::i;:::-;:23;;;4724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47316:12:::1;47342:10;47334:24;;47366:21;47334:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47315:77;;;47407:7;47399:16;;;::::0;::::1;;47308:113;47263:158::o:0;29325:185::-;29463:39;29480:4;29486:2;29490:7;29463:39;;;;;;;;;;;;:16;:39::i;:::-;29325:185;;;:::o;40616:233::-;40691:7;40727:30;:28;:30::i;:::-;40719:5;:38;40711:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40824:10;40835:5;40824:17;;;;;;;;:::i;:::-;;;;;;;;;;40817:24;;40616:233;;;:::o;47158:98::-;4743:12;:10;:12::i;:::-;4732:23;;:7;:5;:7::i;:::-;:23;;;4724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47239:11:::1;47229:7;:21;;;;;;;;;;;;:::i;:::-;;47158:98:::0;:::o;26299:239::-;26371:7;26391:13;26407:7;:16;26415:7;26407:16;;;;;;;;;;;;;;;;;;;;;26391:32;;26459:1;26442:19;;:5;:19;;;;26434:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26525:5;26518:12;;;26299:239;;;:::o;26029:208::-;26101:7;26146:1;26129:19;;:5;:19;;;;26121:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26213:9;:16;26223:5;26213:16;;;;;;;;;;;;;;;;26206:23;;26029:208;;;:::o;5163:103::-;4743:12;:10;:12::i;:::-;4732:23;;:7;:5;:7::i;:::-;:23;;;4724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5228:30:::1;5255:1;5228:18;:30::i;:::-;5163:103::o:0;4512:87::-;4558:7;4585:6;;;;;;;;;;;4578:13;;4512:87;:::o;26774:104::-;26830:13;26863:7;26856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26774:104;:::o;46461:279::-;4743:12;:10;:12::i;:::-;4732:23;;:7;:5;:7::i;:::-;:23;;;4724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46528:14:::1;46545:13;:11;:13::i;:::-;46528:30;;46587:1;46573:11;:15;46565:24;;;::::0;::::1;;46619:13;;46604:11;:28;;46596:37;;;::::0;::::1;;46647:9;46659:1;46647:13;;46642:93;46667:11;46662:1;:16;46642:93;;46694:33;46704:10;46725:1;46716:6;:10;;;;:::i;:::-;46694:9;:33::i;:::-;46680:3;;;;;:::i;:::-;;;;46642:93;;;;46521:219;46461:279:::0;:::o;28458:155::-;28553:52;28572:12;:10;:12::i;:::-;28586:8;28596;28553:18;:52::i;:::-;28458:155;;:::o;29581:328::-;29756:41;29775:12;:10;:12::i;:::-;29789:7;29756:18;:41::i;:::-;29748:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29862:39;29876:4;29882:2;29886:7;29895:5;29862:13;:39::i;:::-;29581:328;;;;:::o;46746:388::-;46844:13;46885:16;46893:7;46885;:16::i;:::-;46869:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46975:28;47006:10;:8;:10::i;:::-;46975:41;;47061:1;47036:14;47030:28;:32;:98;;;;;;;;;;;;;;;;;47098:14;47081:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;47030:98;47023:105;;;46746:388;;;:::o;28684:164::-;28781:4;28805:18;:25;28824:5;28805:25;;;;;;;;;;;;;;;:35;28831:8;28805:35;;;;;;;;;;;;;;;;;;;;;;;;;28798:42;;28684:164;;;;:::o;5421:201::-;4743:12;:10;:12::i;:::-;4732:23;;:7;:5;:7::i;:::-;:23;;;4724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5530:1:::1;5510:22;;:8;:22;;;;5502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5586:28;5605:8;5586:18;:28::i;:::-;5421:201:::0;:::o;25660:305::-;25762:4;25814:25;25799:40;;;:11;:40;;;;:105;;;;25871:33;25856:48;;;:11;:48;;;;25799:105;:158;;;;25921:36;25945:11;25921:23;:36::i;:::-;25799:158;25779:178;;25660:305;;;:::o;31419:127::-;31484:4;31536:1;31508:30;;:7;:16;31516:7;31508:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31501:37;;31419:127;;;:::o;3236:98::-;3289:7;3316:10;3309:17;;3236:98;:::o;35565:174::-;35667:2;35640:15;:24;35656:7;35640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35723:7;35719:2;35685:46;;35694:23;35709:7;35694:14;:23::i;:::-;35685:46;;;;;;;;;;;;35565:174;;:::o;31713:348::-;31806:4;31831:16;31839:7;31831;:16::i;:::-;31823:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31907:13;31923:23;31938:7;31923:14;:23::i;:::-;31907:39;;31976:5;31965:16;;:7;:16;;;:52;;;;31985:32;32002:5;32009:7;31985:16;:32::i;:::-;31965:52;:87;;;;32045:7;32021:31;;:20;32033:7;32021:11;:20::i;:::-;:31;;;31965:87;31957:96;;;31713:348;;;;:::o;34822:625::-;34981:4;34954:31;;:23;34969:7;34954:14;:23::i;:::-;:31;;;34946:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35060:1;35046:16;;:2;:16;;;;35038:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35116:39;35137:4;35143:2;35147:7;35116:20;:39::i;:::-;35220:29;35237:1;35241:7;35220:8;:29::i;:::-;35281:1;35262:9;:15;35272:4;35262:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35310:1;35293:9;:13;35303:2;35293:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35341:2;35322:7;:16;35330:7;35322:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35380:7;35376:2;35361:27;;35370:4;35361:27;;;;;;;;;;;;35401:38;35421:4;35427:2;35431:7;35401:19;:38::i;:::-;34822:625;;;:::o;5782:191::-;5856:16;5875:6;;;;;;;;;;;5856:25;;5901:8;5892:6;;:17;;;;;;;;;;;;;;;;;;5956:8;5925:40;;5946:8;5925:40;;;;;;;;;;;;5845:128;5782:191;:::o;32403:110::-;32479:26;32489:2;32493:7;32479:26;;;;;;;;;;;;:9;:26::i;:::-;32403:110;;:::o;35881:315::-;36036:8;36027:17;;:5;:17;;;;36019:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36123:8;36085:18;:25;36104:5;36085:25;;;;;;;;;;;;;;;:35;36111:8;36085:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36169:8;36147:41;;36162:5;36147:41;;;36179:8;36147:41;;;;;;:::i;:::-;;;;;;;;35881:315;;;:::o;30791:::-;30948:28;30958:4;30964:2;30968:7;30948:9;:28::i;:::-;30995:48;31018:4;31024:2;31028:7;31037:5;30995:22;:48::i;:::-;30987:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30791:315;;;;:::o;46340:102::-;46400:13;46429:7;46422:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340:102;:::o;17319:157::-;17404:4;17443:25;17428:40;;;:11;:40;;;;17421:47;;17319:157;;;:::o;41462:589::-;41606:45;41633:4;41639:2;41643:7;41606:26;:45::i;:::-;41684:1;41668:18;;:4;:18;;;41664:187;;;41703:40;41735:7;41703:31;:40::i;:::-;41664:187;;;41773:2;41765:10;;:4;:10;;;41761:90;;41792:47;41825:4;41831:7;41792:32;:47::i;:::-;41761:90;41664:187;41879:1;41865:16;;:2;:16;;;41861:183;;;41898:45;41935:7;41898:36;:45::i;:::-;41861:183;;;41971:4;41965:10;;:2;:10;;;41961:83;;41992:40;42020:2;42024:7;41992:27;:40::i;:::-;41961:83;41861:183;41462:589;;;:::o;38643:125::-;;;;:::o;32740:321::-;32870:18;32876:2;32880:7;32870:5;:18::i;:::-;32921:54;32952:1;32956:2;32960:7;32969:5;32921:22;:54::i;:::-;32899:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32740:321;;;:::o;36761:799::-;36916:4;36937:15;:2;:13;;;:15::i;:::-;36933:620;;;36989:2;36973:36;;;37010:12;:10;:12::i;:::-;37024:4;37030:7;37039:5;36973:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36969:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37232:1;37215:6;:13;:18;37211:272;;;37258:60;;;;;;;;;;:::i;:::-;;;;;;;;37211:272;37433:6;37427:13;37418:6;37414:2;37410:15;37403:38;36969:529;37106:41;;;37096:51;;;:6;:51;;;;37089:58;;;;;36933:620;37537:4;37530:11;;36761:799;;;;;;;:::o;38132:126::-;;;;:::o;42774:164::-;42878:10;:17;;;;42851:15;:24;42867:7;42851:24;;;;;;;;;;;:44;;;;42906:10;42922:7;42906:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42774:164;:::o;43565:988::-;43831:22;43881:1;43856:22;43873:4;43856:16;:22::i;:::-;:26;;;;:::i;:::-;43831:51;;43893:18;43914:17;:26;43932:7;43914:26;;;;;;;;;;;;43893:47;;44061:14;44047:10;:28;44043:328;;44092:19;44114:12;:18;44127:4;44114:18;;;;;;;;;;;;;;;:34;44133:14;44114:34;;;;;;;;;;;;44092:56;;44198:11;44165:12;:18;44178:4;44165:18;;;;;;;;;;;;;;;:30;44184:10;44165:30;;;;;;;;;;;:44;;;;44315:10;44282:17;:30;44300:11;44282:30;;;;;;;;;;;:43;;;;44077:294;44043:328;44467:17;:26;44485:7;44467:26;;;;;;;;;;;44460:33;;;44511:12;:18;44524:4;44511:18;;;;;;;;;;;;;;;:34;44530:14;44511:34;;;;;;;;;;;44504:41;;;43646:907;;43565:988;;:::o;44848:1079::-;45101:22;45146:1;45126:10;:17;;;;:21;;;;:::i;:::-;45101:46;;45158:18;45179:15;:24;45195:7;45179:24;;;;;;;;;;;;45158:45;;45530:19;45552:10;45563:14;45552:26;;;;;;;;:::i;:::-;;;;;;;;;;45530:48;;45616:11;45591:10;45602;45591:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45727:10;45696:15;:28;45712:11;45696:28;;;;;;;;;;;:41;;;;45868:15;:24;45884:7;45868:24;;;;;;;;;;;45861:31;;;45903:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44919:1008;;;44848:1079;:::o;42352:221::-;42437:14;42454:20;42471:2;42454:16;:20::i;:::-;42437:37;;42512:7;42485:12;:16;42498:2;42485:16;;;;;;;;;;;;;;;:24;42502:6;42485:24;;;;;;;;;;;:34;;;;42559:6;42530:17;:26;42548:7;42530:26;;;;;;;;;;;:35;;;;42426:147;42352:221;;:::o;33397:439::-;33491:1;33477:16;;:2;:16;;;;33469:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33550:16;33558:7;33550;:16::i;:::-;33549:17;33541:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33612:45;33641:1;33645:2;33649:7;33612:20;:45::i;:::-;33687:1;33670:9;:13;33680:2;33670:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33718:2;33699:7;:16;33707:7;33699:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33763:7;33759:2;33738:33;;33755:1;33738:33;;;;;;;;;;;;33784:44;33812:1;33816:2;33820:7;33784:19;:44::i;:::-;33397:439;;:::o;7213:326::-;7273:4;7530:1;7508:7;:19;;;:23;7501:30;;7213:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:398::-;14627:3;14648:83;14729:1;14724:3;14648:83;:::i;:::-;14641:90;;14740:93;14829:3;14740:93;:::i;:::-;14858:1;14853:3;14849:11;14842:18;;14468:398;;;:::o;14872:366::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:::-;15386:3;15407:67;15471:2;15466:3;15407:67;:::i;:::-;15400:74;;15483:93;15572:3;15483:93;:::i;:::-;15601:2;15596:3;15592:12;15585:19;;15244:366;;;:::o;15616:118::-;15703:24;15721:5;15703:24;:::i;:::-;15698:3;15691:37;15616:118;;:::o;15740:275::-;15872:3;15894:95;15985:3;15976:6;15894:95;:::i;:::-;15887:102;;16006:3;15999:10;;15740:275;;;;:::o;16021:379::-;16205:3;16227:147;16370:3;16227:147;:::i;:::-;16220:154;;16391:3;16384:10;;16021:379;;;:::o;16406:222::-;16499:4;16537:2;16526:9;16522:18;16514:26;;16550:71;16618:1;16607:9;16603:17;16594:6;16550:71;:::i;:::-;16406:222;;;;:::o;16634:640::-;16829:4;16867:3;16856:9;16852:19;16844:27;;16881:71;16949:1;16938:9;16934:17;16925:6;16881:71;:::i;:::-;16962:72;17030:2;17019:9;17015:18;17006:6;16962:72;:::i;:::-;17044;17112:2;17101:9;17097:18;17088:6;17044:72;:::i;:::-;17163:9;17157:4;17153:20;17148:2;17137:9;17133:18;17126:48;17191:76;17262:4;17253:6;17191:76;:::i;:::-;17183:84;;16634:640;;;;;;;:::o;17280:210::-;17367:4;17405:2;17394:9;17390:18;17382:26;;17418:65;17480:1;17469:9;17465:17;17456:6;17418:65;:::i;:::-;17280:210;;;;:::o;17496:313::-;17609:4;17647:2;17636:9;17632:18;17624:26;;17696:9;17690:4;17686:20;17682:1;17671:9;17667:17;17660:47;17724:78;17797:4;17788:6;17724:78;:::i;:::-;17716:86;;17496:313;;;;:::o;17815:419::-;17981:4;18019:2;18008:9;18004:18;17996:26;;18068:9;18062:4;18058:20;18054:1;18043:9;18039:17;18032:47;18096:131;18222:4;18096:131;:::i;:::-;18088:139;;17815:419;;;:::o;18240:::-;18406:4;18444:2;18433:9;18429:18;18421:26;;18493:9;18487:4;18483:20;18479:1;18468:9;18464:17;18457:47;18521:131;18647:4;18521:131;:::i;:::-;18513:139;;18240:419;;;:::o;18665:::-;18831:4;18869:2;18858:9;18854:18;18846:26;;18918:9;18912:4;18908:20;18904:1;18893:9;18889:17;18882:47;18946:131;19072:4;18946:131;:::i;:::-;18938:139;;18665:419;;;:::o;19090:::-;19256:4;19294:2;19283:9;19279:18;19271:26;;19343:9;19337:4;19333:20;19329:1;19318:9;19314:17;19307:47;19371:131;19497:4;19371:131;:::i;:::-;19363:139;;19090:419;;;:::o;19515:::-;19681:4;19719:2;19708:9;19704:18;19696:26;;19768:9;19762:4;19758:20;19754:1;19743:9;19739:17;19732:47;19796:131;19922:4;19796:131;:::i;:::-;19788:139;;19515:419;;;:::o;19940:::-;20106:4;20144:2;20133:9;20129:18;20121:26;;20193:9;20187:4;20183:20;20179:1;20168:9;20164:17;20157:47;20221:131;20347:4;20221:131;:::i;:::-;20213:139;;19940:419;;;:::o;20365:::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20618:9;20612:4;20608:20;20604:1;20593:9;20589:17;20582:47;20646:131;20772:4;20646:131;:::i;:::-;20638:139;;20365:419;;;:::o;20790:::-;20956:4;20994:2;20983:9;20979:18;20971:26;;21043:9;21037:4;21033:20;21029:1;21018:9;21014:17;21007:47;21071:131;21197:4;21071:131;:::i;:::-;21063:139;;20790:419;;;:::o;21215:::-;21381:4;21419:2;21408:9;21404:18;21396:26;;21468:9;21462:4;21458:20;21454:1;21443:9;21439:17;21432:47;21496:131;21622:4;21496:131;:::i;:::-;21488:139;;21215:419;;;:::o;21640:::-;21806:4;21844:2;21833:9;21829:18;21821:26;;21893:9;21887:4;21883:20;21879:1;21868:9;21864:17;21857:47;21921:131;22047:4;21921:131;:::i;:::-;21913:139;;21640:419;;;:::o;22065:::-;22231:4;22269:2;22258:9;22254:18;22246:26;;22318:9;22312:4;22308:20;22304:1;22293:9;22289:17;22282:47;22346:131;22472:4;22346:131;:::i;:::-;22338:139;;22065:419;;;:::o;22490:::-;22656:4;22694:2;22683:9;22679:18;22671:26;;22743:9;22737:4;22733:20;22729:1;22718:9;22714:17;22707:47;22771:131;22897:4;22771:131;:::i;:::-;22763:139;;22490:419;;;:::o;22915:::-;23081:4;23119:2;23108:9;23104:18;23096:26;;23168:9;23162:4;23158:20;23154:1;23143:9;23139:17;23132:47;23196:131;23322:4;23196:131;:::i;:::-;23188:139;;22915:419;;;:::o;23340:::-;23506:4;23544:2;23533:9;23529:18;23521:26;;23593:9;23587:4;23583:20;23579:1;23568:9;23564:17;23557:47;23621:131;23747:4;23621:131;:::i;:::-;23613:139;;23340:419;;;:::o;23765:::-;23931:4;23969:2;23958:9;23954:18;23946:26;;24018:9;24012:4;24008:20;24004:1;23993:9;23989:17;23982:47;24046:131;24172:4;24046:131;:::i;:::-;24038:139;;23765:419;;;:::o;24190:::-;24356:4;24394:2;24383:9;24379:18;24371:26;;24443:9;24437:4;24433:20;24429:1;24418:9;24414:17;24407:47;24471:131;24597:4;24471:131;:::i;:::-;24463:139;;24190:419;;;:::o;24615:::-;24781:4;24819:2;24808:9;24804:18;24796:26;;24868:9;24862:4;24858:20;24854:1;24843:9;24839:17;24832:47;24896:131;25022:4;24896:131;:::i;:::-;24888:139;;24615:419;;;:::o;25040:::-;25206:4;25244:2;25233:9;25229:18;25221:26;;25293:9;25287:4;25283:20;25279:1;25268:9;25264:17;25257:47;25321:131;25447:4;25321:131;:::i;:::-;25313:139;;25040:419;;;:::o;25465:222::-;25558:4;25596:2;25585:9;25581:18;25573:26;;25609:71;25677:1;25666:9;25662:17;25653:6;25609:71;:::i;:::-;25465:222;;;;:::o;25693:129::-;25727:6;25754:20;;:::i;:::-;25744:30;;25783:33;25811:4;25803:6;25783:33;:::i;:::-;25693:129;;;:::o;25828:75::-;25861:6;25894:2;25888:9;25878:19;;25828:75;:::o;25909:307::-;25970:4;26060:18;26052:6;26049:30;26046:56;;;26082:18;;:::i;:::-;26046:56;26120:29;26142:6;26120:29;:::i;:::-;26112:37;;26204:4;26198;26194:15;26186:23;;25909:307;;;:::o;26222:308::-;26284:4;26374:18;26366:6;26363:30;26360:56;;;26396:18;;:::i;:::-;26360:56;26434:29;26456:6;26434:29;:::i;:::-;26426:37;;26518:4;26512;26508:15;26500:23;;26222:308;;;:::o;26536:98::-;26587:6;26621:5;26615:12;26605:22;;26536:98;;;:::o;26640:99::-;26692:6;26726:5;26720:12;26710:22;;26640:99;;;:::o;26745:168::-;26828:11;26862:6;26857:3;26850:19;26902:4;26897:3;26893:14;26878:29;;26745:168;;;;:::o;26919:147::-;27020:11;27057:3;27042:18;;26919:147;;;;:::o;27072:169::-;27156:11;27190:6;27185:3;27178:19;27230:4;27225:3;27221:14;27206:29;;27072:169;;;;:::o;27247:148::-;27349:11;27386:3;27371:18;;27247:148;;;;:::o;27401:305::-;27441:3;27460:20;27478:1;27460:20;:::i;:::-;27455:25;;27494:20;27512:1;27494:20;:::i;:::-;27489:25;;27648:1;27580:66;27576:74;27573:1;27570:81;27567:107;;;27654:18;;:::i;:::-;27567:107;27698:1;27695;27691:9;27684:16;;27401:305;;;;:::o;27712:191::-;27752:4;27772:20;27790:1;27772:20;:::i;:::-;27767:25;;27806:20;27824:1;27806:20;:::i;:::-;27801:25;;27845:1;27842;27839:8;27836:34;;;27850:18;;:::i;:::-;27836:34;27895:1;27892;27888:9;27880:17;;27712:191;;;;:::o;27909:96::-;27946:7;27975:24;27993:5;27975:24;:::i;:::-;27964:35;;27909:96;;;:::o;28011:90::-;28045:7;28088:5;28081:13;28074:21;28063:32;;28011:90;;;:::o;28107:149::-;28143:7;28183:66;28176:5;28172:78;28161:89;;28107:149;;;:::o;28262:126::-;28299:7;28339:42;28332:5;28328:54;28317:65;;28262:126;;;:::o;28394:77::-;28431:7;28460:5;28449:16;;28394:77;;;:::o;28477:154::-;28561:6;28556:3;28551;28538:30;28623:1;28614:6;28609:3;28605:16;28598:27;28477:154;;;:::o;28637:307::-;28705:1;28715:113;28729:6;28726:1;28723:13;28715:113;;;28814:1;28809:3;28805:11;28799:18;28795:1;28790:3;28786:11;28779:39;28751:2;28748:1;28744:10;28739:15;;28715:113;;;28846:6;28843:1;28840:13;28837:101;;;28926:1;28917:6;28912:3;28908:16;28901:27;28837:101;28686:258;28637:307;;;:::o;28950:320::-;28994:6;29031:1;29025:4;29021:12;29011:22;;29078:1;29072:4;29068:12;29099:18;29089:81;;29155:4;29147:6;29143:17;29133:27;;29089:81;29217:2;29209:6;29206:14;29186:18;29183:38;29180:84;;;29236:18;;:::i;:::-;29180:84;29001:269;28950:320;;;:::o;29276:281::-;29359:27;29381:4;29359:27;:::i;:::-;29351:6;29347:40;29489:6;29477:10;29474:22;29453:18;29441:10;29438:34;29435:62;29432:88;;;29500:18;;:::i;:::-;29432:88;29540:10;29536:2;29529:22;29319:238;29276:281;;:::o;29563:233::-;29602:3;29625:24;29643:5;29625:24;:::i;:::-;29616:33;;29671:66;29664:5;29661:77;29658:103;;;29741:18;;:::i;:::-;29658:103;29788:1;29781:5;29777:13;29770:20;;29563:233;;;:::o;29802:180::-;29850:77;29847:1;29840:88;29947:4;29944:1;29937:15;29971:4;29968:1;29961:15;29988:180;30036:77;30033:1;30026:88;30133:4;30130:1;30123:15;30157:4;30154:1;30147:15;30174:180;30222:77;30219:1;30212:88;30319:4;30316:1;30309:15;30343:4;30340:1;30333:15;30360:180;30408:77;30405:1;30398:88;30505:4;30502:1;30495:15;30529:4;30526:1;30519:15;30546:180;30594:77;30591:1;30584:88;30691:4;30688:1;30681:15;30715:4;30712:1;30705:15;30732:117;30841:1;30838;30831:12;30855:117;30964:1;30961;30954:12;30978:117;31087:1;31084;31077:12;31101:117;31210:1;31207;31200:12;31224:102;31265:6;31316:2;31312:7;31307:2;31300:5;31296:14;31292:28;31282:38;;31224:102;;;:::o;31332:230::-;31472:34;31468:1;31460:6;31456:14;31449:58;31541:13;31536:2;31528:6;31524:15;31517:38;31332:230;:::o;31568:237::-;31708:34;31704:1;31696:6;31692:14;31685:58;31777:20;31772:2;31764:6;31760:15;31753:45;31568:237;:::o;31811:225::-;31951:34;31947:1;31939:6;31935:14;31928:58;32020:8;32015:2;32007:6;32003:15;31996:33;31811:225;:::o;32042:224::-;32182:34;32178:1;32170:6;32166:14;32159:58;32251:7;32246:2;32238:6;32234:15;32227:32;32042:224;:::o;32272:178::-;32412:30;32408:1;32400:6;32396:14;32389:54;32272:178;:::o;32456:223::-;32596:34;32592:1;32584:6;32580:14;32573:58;32665:6;32660:2;32652:6;32648:15;32641:31;32456:223;:::o;32685:175::-;32825:27;32821:1;32813:6;32809:14;32802:51;32685:175;:::o;32866:231::-;33006:34;33002:1;32994:6;32990:14;32983:58;33075:14;33070:2;33062:6;33058:15;33051:39;32866:231;:::o;33103:243::-;33243:34;33239:1;33231:6;33227:14;33220:58;33312:26;33307:2;33299:6;33295:15;33288:51;33103:243;:::o;33352:229::-;33492:34;33488:1;33480:6;33476:14;33469:58;33561:12;33556:2;33548:6;33544:15;33537:37;33352:229;:::o;33587:228::-;33727:34;33723:1;33715:6;33711:14;33704:58;33796:11;33791:2;33783:6;33779:15;33772:36;33587:228;:::o;33821:182::-;33961:34;33957:1;33949:6;33945:14;33938:58;33821:182;:::o;34009:231::-;34149:34;34145:1;34137:6;34133:14;34126:58;34218:14;34213:2;34205:6;34201:15;34194:39;34009:231;:::o;34246:182::-;34386:34;34382:1;34374:6;34370:14;34363:58;34246:182;:::o;34434:234::-;34574:34;34570:1;34562:6;34558:14;34551:58;34643:17;34638:2;34630:6;34626:15;34619:42;34434:234;:::o;34674:220::-;34814:34;34810:1;34802:6;34798:14;34791:58;34883:3;34878:2;34870:6;34866:15;34859:28;34674:220;:::o;34900:114::-;;:::o;35020:236::-;35160:34;35156:1;35148:6;35144:14;35137:58;35229:19;35224:2;35216:6;35212:15;35205:44;35020:236;:::o;35262:231::-;35402:34;35398:1;35390:6;35386:14;35379:58;35471:14;35466:2;35458:6;35454:15;35447:39;35262:231;:::o;35499:122::-;35572:24;35590:5;35572:24;:::i;:::-;35565:5;35562:35;35552:63;;35611:1;35608;35601:12;35552:63;35499:122;:::o;35627:116::-;35697:21;35712:5;35697:21;:::i;:::-;35690:5;35687:32;35677:60;;35733:1;35730;35723:12;35677:60;35627:116;:::o;35749:120::-;35821:23;35838:5;35821:23;:::i;:::-;35814:5;35811:34;35801:62;;35859:1;35856;35849:12;35801:62;35749:120;:::o;35875:122::-;35948:24;35966:5;35948:24;:::i;:::-;35941:5;35938:35;35928:63;;35987:1;35984;35977:12;35928:63;35875:122;:::o
Swarm Source
ipfs://d8b26b208c387053e76a6eb157163dc853d9291df00d8cba474ebdb50df60513