ERC-721
Overview
Max Total Supply
2,001 RebelCupidz
Holders
865
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 RebelCupidzLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RebelCupidz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-18 */ // SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; // 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/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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // 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/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: contracts/erc721a.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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: contracts/contract.sol pragma solidity ^0.8.4; contract RebelCupidz is Ownable, ERC721A { using Strings for uint256; string private _baseTokenURI; uint256 public cost = 0.006 ether; uint256 public maxSupply = 5555; uint256 public maxPaidMintPerWallet = 10; uint256 public maxFreeMintPerWallet = 2; uint256 public totalFreeMintsAllowed=1555; uint256 public freeNFTsMinted=0; bool public paused = true; constructor() ERC721A("RebelCupidz", "RebelCupidz") {} modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 , "Invalid mint amount!"); require(totalMinted() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function freeMint(uint64 _mintAmount) public mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); uint64 freeAmountMinted = getFreeAmountMinted(msg.sender); require(freeAmountMinted + _mintAmount <= maxFreeMintPerWallet, "Free Mint limit exceeded." ); require(freeNFTsMinted + _mintAmount <= totalFreeMintsAllowed, "Total Free Mints allowed exceeded." ); _safeMint(msg.sender, _mintAmount); freeNFTsMinted+=_mintAmount; setFreeAmountMinted(msg.sender,freeAmountMinted+_mintAmount); } function mint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); require(numberMinted(msg.sender) + _mintAmount <= maxPaidMintPerWallet, "Mint limit exceeded." ); _safeMint(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function getFreeAmountMinted(address owner) public view returns (uint64) { return _getAux(owner); } function setFreeAmountMinted(address owner, uint64 aux) internal { _setAux(owner, aux); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } 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, _tokenId.toString(), ".json")) : ""; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function totalMinted() public view returns (uint256) { return _totalMinted(); } function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } function burn(uint256 tokenId, bool approvalCheck) public { _burn(tokenId, approvalCheck); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setTotalFreeMintsAllowed(uint256 _totalFreeMinstAllowed) public onlyOwner { totalFreeMintsAllowed = _totalFreeMinstAllowed; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setMaxFreeMintPerWallet(uint256 _maxFreeMintPerWallet) public onlyOwner { maxFreeMintPerWallet = _maxFreeMintPerWallet; } function setMaxPaidMintPerWallet(uint256 _maxPaidMintPerWallet) public onlyOwner { maxPaidMintPerWallet = _maxPaidMintPerWallet; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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"},{"internalType":"bool","name":"approvalCheck","type":"bool"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeNFTsMinted","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"}],"name":"getFreeAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPaidMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintPerWallet","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPaidMintPerWallet","type":"uint256"}],"name":"setMaxPaidMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFreeMinstAllowed","type":"uint256"}],"name":"setTotalFreeMintsAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMintsAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661550f7dca70000600a9081556115b3600b55600c556002600d55610613600e556000600f556010805460ff191660011790553480156200004457600080fd5b506040518060400160405280600b81526020016a2932b132b621bab834b23d60a91b8152506040518060400160405280600b81526020016a2932b132b621bab834b23d60a91b815250620000a7620000a1620000df60201b60201c565b620000e3565b8151620000bc90600390602085019062000133565b508051620000d290600490602084019062000133565b5050600180555062000216565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014190620001d9565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b600181811c90821680620001ee57607f821691505b602082108114156200021057634e487b7160e01b600052602260045260246000fd5b50919050565b61245b80620002266000396000f3fe6080604052600436106102465760003560e01c80637693aa9311610139578063b88d4fde116100b6578063e0217c1d1161007a578063e0217c1d1461069c578063e985e9c5146106bc578063efbd73f414610705578063f2fde38b14610725578063f77b1edd14610745578063fb9d09c81461076557600080fd5b8063b88d4fde14610606578063c87b56dd14610626578063d5abeb0114610646578063d60fe4341461065c578063dc33e6811461067c57600080fd5b806395d89b41116100fd57806395d89b41146105865780639fac68cb1461059b5780639fbd6461146105bb578063a22cb465146105d1578063a2309ff8146105f157600080fd5b80637693aa93146104ee578063845bb3bb1461052657806384e4383b1461053c5780638da5cb5b146105525780638e4852dd1461057057600080fd5b806342842e0e116101c75780635c975abb1161018b5780635c975abb1461045f5780636352211e146104795780636f8b44b01461049957806370a08231146104b9578063715018a6146104d957600080fd5b806342842e0e146103b2578063438b6300146103d257806344a0d68a146103ff5780634f558e791461041f57806355f804b31461043f57600080fd5b806313faede61161020e57806313faede61461031c57806316c38b3c1461034057806318160ddd1461036057806323b872dd1461037d5780633ccfd60b1461039d57600080fd5b806301ffc9a71461024b57806302be8bff1461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fb1565b610778565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046120bb565b6107ca565b005b3480156102ae57600080fd5b506102b76109e4565b60405161027791906121d0565b3480156102d057600080fd5b506102e46102df36600461205c565b610a76565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a0610317366004611f6c565b610aba565b34801561032857600080fd5b50610332600a5481565b604051908152602001610277565b34801561034c57600080fd5b506102a061035b366004611f96565b610b43565b34801561036c57600080fd5b506002546001540360001901610332565b34801561038957600080fd5b506102a0610398366004611e2b565b610b80565b3480156103a957600080fd5b506102a0610b8b565b3480156103be57600080fd5b506102a06103cd366004611e2b565b610c18565b3480156103de57600080fd5b506103f26103ed366004611ddd565b610c33565b604051610277919061218c565b34801561040b57600080fd5b506102a061041a36600461205c565b610d13565b34801561042b57600080fd5b5061026b61043a36600461205c565b610d42565b34801561044b57600080fd5b506102a061045a366004611feb565b610d4d565b34801561046b57600080fd5b5060105461026b9060ff1681565b34801561048557600080fd5b506102e461049436600461205c565b610d83565b3480156104a557600080fd5b506102a06104b436600461205c565b610d95565b3480156104c557600080fd5b506103326104d4366004611ddd565b610dc4565b3480156104e557600080fd5b506102a0610e12565b3480156104fa57600080fd5b5061050e610509366004611ddd565b610e48565b6040516001600160401b039091168152602001610277565b34801561053257600080fd5b50610332600d5481565b34801561054857600080fd5b50610332600e5481565b34801561055e57600080fd5b506000546001600160a01b03166102e4565b34801561057c57600080fd5b50610332600c5481565b34801561059257600080fd5b506102b7610e76565b3480156105a757600080fd5b506102a06105b6366004612098565b610e85565b3480156105c757600080fd5b50610332600f5481565b3480156105dd57600080fd5b506102a06105ec366004611f42565b610e93565b3480156105fd57600080fd5b50610332610f29565b34801561061257600080fd5b506102a0610621366004611e67565b610f3d565b34801561063257600080fd5b506102b761064136600461205c565b610f8e565b34801561065257600080fd5b50610332600b5481565b34801561066857600080fd5b506102a061067736600461205c565b611059565b34801561068857600080fd5b50610332610697366004611ddd565b611088565b3480156106a857600080fd5b506102a06106b736600461205c565b6110b6565b3480156106c857600080fd5b5061026b6106d7366004611df8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561071157600080fd5b506102a0610720366004612075565b6110e5565b34801561073157600080fd5b506102a0610740366004611ddd565b61116e565b34801561075157600080fd5b506102a061076036600461205c565b611206565b6102a06107733660046120bb565b611235565b60006001600160e01b031982166380ac58cd60e01b14806107a957506001600160e01b03198216635b5e139f60e01b145b806107c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b806001600160401b0316600081116107fd5760405162461bcd60e51b81526004016107f4906121e3565b60405180910390fd5b600b5481610809610f29565b6108139190612274565b11156108315760405162461bcd60e51b81526004016107f490612246565b60105460ff161561087e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016107f4565b600061088933610e48565b600d54909150610899848361228c565b6001600160401b031611156108f05760405162461bcd60e51b815260206004820152601960248201527f46726565204d696e74206c696d69742065786365656465642e0000000000000060448201526064016107f4565b600e54836001600160401b0316600f5461090a9190612274565b11156109635760405162461bcd60e51b815260206004820152602260248201527f546f74616c2046726565204d696e747320616c6c6f7765642065786365656465604482015261321760f11b60648201526084016107f4565b61097633846001600160401b03166113b0565b826001600160401b0316600f60008282546109919190612274565b909155506109df9050336109a5858461228c565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b505050565b6060600380546109f39061232d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f9061232d565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b6000610a81826113ca565b610a9e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ac582610d83565b9050806001600160a01b0316836001600160a01b03161415610afa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1a5750610b1881336106d7565b155b15610b38576040516367d9dca160e11b815260040160405180910390fd5b6109df838383611403565b6000546001600160a01b03163314610b6d5760405162461bcd60e51b81526004016107f490612211565b6010805460ff1916911515919091179055565b6109df83838361145f565b6000546001600160a01b03163314610bb55760405162461bcd60e51b81526004016107f490612211565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610c1557600080fd5b50565b6109df83838360405180602001604052806000815250610f3d565b60606000610c4083610dc4565b90506000816001600160401b03811115610c5c57610c5c6123d9565b604051908082528060200260200182016040528015610c85578160200160208202803683370190505b509050600160005b8381108015610c9e5750600b548211155b15610d09576000610cae83610d83565b9050866001600160a01b0316816001600160a01b03161415610cf65782848381518110610cdd57610cdd6123c3565b602090810291909101015281610cf281612368565b9250505b82610d0081612368565b93505050610c8d565b5090949350505050565b6000546001600160a01b03163314610d3d5760405162461bcd60e51b81526004016107f490612211565b600a55565b60006107c4826113ca565b6000546001600160a01b03163314610d775760405162461bcd60e51b81526004016107f490612211565b6109df60098383611d18565b6000610d8e8261163b565b5192915050565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016107f490612211565b600b55565b60006001600160a01b038216610ded576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e3c5760405162461bcd60e51b81526004016107f490612211565b610e466000611762565b565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b03166107c4565b6060600480546109f39061232d565b610e8f82826117b2565b5050565b6001600160a01b038216331415610ebd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610f386001546000190190565b905090565b610f4884848461145f565b6001600160a01b0383163b15158015610f6a5750610f6884848484611966565b155b15610f88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f99826113ca565b610ffd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f4565b6000611007611a5e565b905060008151116110275760405180602001604052806000815250611052565b8061103184611a6d565b604051602001611042929190612110565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110835760405162461bcd60e51b81526004016107f490612211565b600e55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b03166107c4565b6000546001600160a01b031633146110e05760405162461bcd60e51b81526004016107f490612211565b600c55565b81600081116111065760405162461bcd60e51b81526004016107f4906121e3565b600b5481611112610f29565b61111c9190612274565b111561113a5760405162461bcd60e51b81526004016107f490612246565b6000546001600160a01b031633146111645760405162461bcd60e51b81526004016107f490612211565b6109df82846113b0565b6000546001600160a01b031633146111985760405162461bcd60e51b81526004016107f490612211565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b610c1581611762565b6000546001600160a01b031633146112305760405162461bcd60e51b81526004016107f490612211565b600d55565b806001600160401b03166000811161125f5760405162461bcd60e51b81526004016107f4906121e3565b600b548161126b610f29565b6112759190612274565b11156112935760405162461bcd60e51b81526004016107f490612246565b60105460ff16156112e05760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016107f4565b816001600160401b0316600a546112f791906122cb565b34101561133c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107f4565b600c54826001600160401b031661135233611088565b61135c9190612274565b11156113a15760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016107f4565b610e8f33836001600160401b03165b610e8f828260405180602001604052806000815250611b6a565b6000816001111580156113de575060015482105b80156107c4575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061146a8261163b565b9050836001600160a01b031681600001516001600160a01b0316146114a15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114bf57506114bf85336106d7565b806114da5750336114cf84610a76565b6001600160a01b0316145b9050806114fa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661152157604051633a954ecd60e21b815260040160405180910390fd5b61152d60008487611403565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661160157600154821461160157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061240683398151915260405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561166b575060015481105b1561174957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117475780516001600160a01b0316156116de579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611742579392505050565b6116de565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006117bd8361163b565b80519091508215611823576000336001600160a01b03831614806117e657506117e682336106d7565b806118015750336117f686610a76565b6001600160a01b0316145b90508061182157604051632ce44b5f60e11b815260040160405180910390fd5b505b61182f60008583611403565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661192d57600154821461192d57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612406833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061199b90339089908890889060040161214f565b602060405180830381600087803b1580156119b557600080fd5b505af19250505080156119e5575060408051601f3d908101601f191682019092526119e291810190611fce565b60015b611a40573d808015611a13576040519150601f19603f3d011682016040523d82523d6000602084013e611a18565b606091505b508051611a38576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546109f39061232d565b606081611a915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abb5780611aa581612368565b9150611ab49050600a836122b7565b9150611a95565b6000816001600160401b03811115611ad557611ad56123d9565b6040519080825280601f01601f191660200182016040528015611aff576020820181803683370190505b5090505b8415611a5657611b146001836122ea565b9150611b21600a86612383565b611b2c906030612274565b60f81b818381518110611b4157611b416123c3565b60200101906001600160f81b031916908160001a905350611b63600a866122b7565b9450611b03565b6109df838383600180546001600160a01b038516611b9a57604051622e076360e81b815260040160405180910390fd5b83611bb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6457506001600160a01b0387163b15155b15611cdb575b60405182906001600160a01b03891690600090600080516020612406833981519152908290a4611ca36000888480600101955088611966565b611cc0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c6a578260015414611cd657600080fd5b611d0f565b5b6040516001830192906001600160a01b03891690600090600080516020612406833981519152908290a480821415611cdc575b50600155611634565b828054611d249061232d565b90600052602060002090601f016020900481019282611d465760008555611d8c565b82601f10611d5f5782800160ff19823516178555611d8c565b82800160010185558215611d8c579182015b82811115611d8c578235825591602001919060010190611d71565b50611d98929150611d9c565b5090565b5b80821115611d985760008155600101611d9d565b80356001600160a01b0381168114611dc857600080fd5b919050565b80358015158114611dc857600080fd5b600060208284031215611def57600080fd5b61105282611db1565b60008060408385031215611e0b57600080fd5b611e1483611db1565b9150611e2260208401611db1565b90509250929050565b600080600060608486031215611e4057600080fd5b611e4984611db1565b9250611e5760208501611db1565b9150604084013590509250925092565b60008060008060808587031215611e7d57600080fd5b611e8685611db1565b9350611e9460208601611db1565b92506040850135915060608501356001600160401b0380821115611eb757600080fd5b818701915087601f830112611ecb57600080fd5b813581811115611edd57611edd6123d9565b604051601f8201601f19908116603f01168101908382118183101715611f0557611f056123d9565b816040528281528a6020848701011115611f1e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f5557600080fd5b611f5e83611db1565b9150611e2260208401611dcd565b60008060408385031215611f7f57600080fd5b611f8883611db1565b946020939093013593505050565b600060208284031215611fa857600080fd5b61105282611dcd565b600060208284031215611fc357600080fd5b8135611052816123ef565b600060208284031215611fe057600080fd5b8151611052816123ef565b60008060208385031215611ffe57600080fd5b82356001600160401b038082111561201557600080fd5b818501915085601f83011261202957600080fd5b81358181111561203857600080fd5b86602082850101111561204a57600080fd5b60209290920196919550909350505050565b60006020828403121561206e57600080fd5b5035919050565b6000806040838503121561208857600080fd5b82359150611e2260208401611db1565b600080604083850312156120ab57600080fd5b82359150611e2260208401611dcd565b6000602082840312156120cd57600080fd5b81356001600160401b038116811461105257600080fd5b600081518084526120fc816020860160208601612301565b601f01601f19169290920160200192915050565b60008351612122818460208801612301565b835190830190612136818360208801612301565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612182908301846120e4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121c4578351835292840192918401916001016121a8565b50909695505050505050565b60208152600061105260208301846120e4565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561228757612287612397565b500190565b60006001600160401b038083168185168083038211156122ae576122ae612397565b01949350505050565b6000826122c6576122c66123ad565b500490565b60008160001904831182151516156122e5576122e5612397565b500290565b6000828210156122fc576122fc612397565b500390565b60005b8381101561231c578181015183820152602001612304565b83811115610f885750506000910152565b600181811c9082168061234157607f821691505b6020821081141561236257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237c5761237c612397565b5060010190565b600082612392576123926123ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220dce371cc1842d156c6f50f845c572b2f4a0095d50e834bcdae957ba79b50d0a964736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637693aa9311610139578063b88d4fde116100b6578063e0217c1d1161007a578063e0217c1d1461069c578063e985e9c5146106bc578063efbd73f414610705578063f2fde38b14610725578063f77b1edd14610745578063fb9d09c81461076557600080fd5b8063b88d4fde14610606578063c87b56dd14610626578063d5abeb0114610646578063d60fe4341461065c578063dc33e6811461067c57600080fd5b806395d89b41116100fd57806395d89b41146105865780639fac68cb1461059b5780639fbd6461146105bb578063a22cb465146105d1578063a2309ff8146105f157600080fd5b80637693aa93146104ee578063845bb3bb1461052657806384e4383b1461053c5780638da5cb5b146105525780638e4852dd1461057057600080fd5b806342842e0e116101c75780635c975abb1161018b5780635c975abb1461045f5780636352211e146104795780636f8b44b01461049957806370a08231146104b9578063715018a6146104d957600080fd5b806342842e0e146103b2578063438b6300146103d257806344a0d68a146103ff5780634f558e791461041f57806355f804b31461043f57600080fd5b806313faede61161020e57806313faede61461031c57806316c38b3c1461034057806318160ddd1461036057806323b872dd1461037d5780633ccfd60b1461039d57600080fd5b806301ffc9a71461024b57806302be8bff1461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fb1565b610778565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046120bb565b6107ca565b005b3480156102ae57600080fd5b506102b76109e4565b60405161027791906121d0565b3480156102d057600080fd5b506102e46102df36600461205c565b610a76565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a0610317366004611f6c565b610aba565b34801561032857600080fd5b50610332600a5481565b604051908152602001610277565b34801561034c57600080fd5b506102a061035b366004611f96565b610b43565b34801561036c57600080fd5b506002546001540360001901610332565b34801561038957600080fd5b506102a0610398366004611e2b565b610b80565b3480156103a957600080fd5b506102a0610b8b565b3480156103be57600080fd5b506102a06103cd366004611e2b565b610c18565b3480156103de57600080fd5b506103f26103ed366004611ddd565b610c33565b604051610277919061218c565b34801561040b57600080fd5b506102a061041a36600461205c565b610d13565b34801561042b57600080fd5b5061026b61043a36600461205c565b610d42565b34801561044b57600080fd5b506102a061045a366004611feb565b610d4d565b34801561046b57600080fd5b5060105461026b9060ff1681565b34801561048557600080fd5b506102e461049436600461205c565b610d83565b3480156104a557600080fd5b506102a06104b436600461205c565b610d95565b3480156104c557600080fd5b506103326104d4366004611ddd565b610dc4565b3480156104e557600080fd5b506102a0610e12565b3480156104fa57600080fd5b5061050e610509366004611ddd565b610e48565b6040516001600160401b039091168152602001610277565b34801561053257600080fd5b50610332600d5481565b34801561054857600080fd5b50610332600e5481565b34801561055e57600080fd5b506000546001600160a01b03166102e4565b34801561057c57600080fd5b50610332600c5481565b34801561059257600080fd5b506102b7610e76565b3480156105a757600080fd5b506102a06105b6366004612098565b610e85565b3480156105c757600080fd5b50610332600f5481565b3480156105dd57600080fd5b506102a06105ec366004611f42565b610e93565b3480156105fd57600080fd5b50610332610f29565b34801561061257600080fd5b506102a0610621366004611e67565b610f3d565b34801561063257600080fd5b506102b761064136600461205c565b610f8e565b34801561065257600080fd5b50610332600b5481565b34801561066857600080fd5b506102a061067736600461205c565b611059565b34801561068857600080fd5b50610332610697366004611ddd565b611088565b3480156106a857600080fd5b506102a06106b736600461205c565b6110b6565b3480156106c857600080fd5b5061026b6106d7366004611df8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561071157600080fd5b506102a0610720366004612075565b6110e5565b34801561073157600080fd5b506102a0610740366004611ddd565b61116e565b34801561075157600080fd5b506102a061076036600461205c565b611206565b6102a06107733660046120bb565b611235565b60006001600160e01b031982166380ac58cd60e01b14806107a957506001600160e01b03198216635b5e139f60e01b145b806107c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b806001600160401b0316600081116107fd5760405162461bcd60e51b81526004016107f4906121e3565b60405180910390fd5b600b5481610809610f29565b6108139190612274565b11156108315760405162461bcd60e51b81526004016107f490612246565b60105460ff161561087e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016107f4565b600061088933610e48565b600d54909150610899848361228c565b6001600160401b031611156108f05760405162461bcd60e51b815260206004820152601960248201527f46726565204d696e74206c696d69742065786365656465642e0000000000000060448201526064016107f4565b600e54836001600160401b0316600f5461090a9190612274565b11156109635760405162461bcd60e51b815260206004820152602260248201527f546f74616c2046726565204d696e747320616c6c6f7765642065786365656465604482015261321760f11b60648201526084016107f4565b61097633846001600160401b03166113b0565b826001600160401b0316600f60008282546109919190612274565b909155506109df9050336109a5858461228c565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b505050565b6060600380546109f39061232d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f9061232d565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b6000610a81826113ca565b610a9e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610ac582610d83565b9050806001600160a01b0316836001600160a01b03161415610afa5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1a5750610b1881336106d7565b155b15610b38576040516367d9dca160e11b815260040160405180910390fd5b6109df838383611403565b6000546001600160a01b03163314610b6d5760405162461bcd60e51b81526004016107f490612211565b6010805460ff1916911515919091179055565b6109df83838361145f565b6000546001600160a01b03163314610bb55760405162461bcd60e51b81526004016107f490612211565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610c1557600080fd5b50565b6109df83838360405180602001604052806000815250610f3d565b60606000610c4083610dc4565b90506000816001600160401b03811115610c5c57610c5c6123d9565b604051908082528060200260200182016040528015610c85578160200160208202803683370190505b509050600160005b8381108015610c9e5750600b548211155b15610d09576000610cae83610d83565b9050866001600160a01b0316816001600160a01b03161415610cf65782848381518110610cdd57610cdd6123c3565b602090810291909101015281610cf281612368565b9250505b82610d0081612368565b93505050610c8d565b5090949350505050565b6000546001600160a01b03163314610d3d5760405162461bcd60e51b81526004016107f490612211565b600a55565b60006107c4826113ca565b6000546001600160a01b03163314610d775760405162461bcd60e51b81526004016107f490612211565b6109df60098383611d18565b6000610d8e8261163b565b5192915050565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016107f490612211565b600b55565b60006001600160a01b038216610ded576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e3c5760405162461bcd60e51b81526004016107f490612211565b610e466000611762565b565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b03166107c4565b6060600480546109f39061232d565b610e8f82826117b2565b5050565b6001600160a01b038216331415610ebd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610f386001546000190190565b905090565b610f4884848461145f565b6001600160a01b0383163b15158015610f6a5750610f6884848484611966565b155b15610f88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f99826113ca565b610ffd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f4565b6000611007611a5e565b905060008151116110275760405180602001604052806000815250611052565b8061103184611a6d565b604051602001611042929190612110565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110835760405162461bcd60e51b81526004016107f490612211565b600e55565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b03166107c4565b6000546001600160a01b031633146110e05760405162461bcd60e51b81526004016107f490612211565b600c55565b81600081116111065760405162461bcd60e51b81526004016107f4906121e3565b600b5481611112610f29565b61111c9190612274565b111561113a5760405162461bcd60e51b81526004016107f490612246565b6000546001600160a01b031633146111645760405162461bcd60e51b81526004016107f490612211565b6109df82846113b0565b6000546001600160a01b031633146111985760405162461bcd60e51b81526004016107f490612211565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b610c1581611762565b6000546001600160a01b031633146112305760405162461bcd60e51b81526004016107f490612211565b600d55565b806001600160401b03166000811161125f5760405162461bcd60e51b81526004016107f4906121e3565b600b548161126b610f29565b6112759190612274565b11156112935760405162461bcd60e51b81526004016107f490612246565b60105460ff16156112e05760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016107f4565b816001600160401b0316600a546112f791906122cb565b34101561133c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107f4565b600c54826001600160401b031661135233611088565b61135c9190612274565b11156113a15760405162461bcd60e51b815260206004820152601460248201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b60448201526064016107f4565b610e8f33836001600160401b03165b610e8f828260405180602001604052806000815250611b6a565b6000816001111580156113de575060015482105b80156107c4575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061146a8261163b565b9050836001600160a01b031681600001516001600160a01b0316146114a15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114bf57506114bf85336106d7565b806114da5750336114cf84610a76565b6001600160a01b0316145b9050806114fa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661152157604051633a954ecd60e21b815260040160405180910390fd5b61152d60008487611403565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661160157600154821461160157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061240683398151915260405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561166b575060015481105b1561174957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117475780516001600160a01b0316156116de579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611742579392505050565b6116de565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006117bd8361163b565b80519091508215611823576000336001600160a01b03831614806117e657506117e682336106d7565b806118015750336117f686610a76565b6001600160a01b0316145b90508061182157604051632ce44b5f60e11b815260040160405180910390fd5b505b61182f60008583611403565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661192d57600154821461192d57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612406833981519152908390a450506002805460010190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061199b90339089908890889060040161214f565b602060405180830381600087803b1580156119b557600080fd5b505af19250505080156119e5575060408051601f3d908101601f191682019092526119e291810190611fce565b60015b611a40573d808015611a13576040519150601f19603f3d011682016040523d82523d6000602084013e611a18565b606091505b508051611a38576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546109f39061232d565b606081611a915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abb5780611aa581612368565b9150611ab49050600a836122b7565b9150611a95565b6000816001600160401b03811115611ad557611ad56123d9565b6040519080825280601f01601f191660200182016040528015611aff576020820181803683370190505b5090505b8415611a5657611b146001836122ea565b9150611b21600a86612383565b611b2c906030612274565b60f81b818381518110611b4157611b416123c3565b60200101906001600160f81b031916908160001a905350611b63600a866122b7565b9450611b03565b6109df838383600180546001600160a01b038516611b9a57604051622e076360e81b815260040160405180910390fd5b83611bb85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c6457506001600160a01b0387163b15155b15611cdb575b60405182906001600160a01b03891690600090600080516020612406833981519152908290a4611ca36000888480600101955088611966565b611cc0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c6a578260015414611cd657600080fd5b611d0f565b5b6040516001830192906001600160a01b03891690600090600080516020612406833981519152908290a480821415611cdc575b50600155611634565b828054611d249061232d565b90600052602060002090601f016020900481019282611d465760008555611d8c565b82601f10611d5f5782800160ff19823516178555611d8c565b82800160010185558215611d8c579182015b82811115611d8c578235825591602001919060010190611d71565b50611d98929150611d9c565b5090565b5b80821115611d985760008155600101611d9d565b80356001600160a01b0381168114611dc857600080fd5b919050565b80358015158114611dc857600080fd5b600060208284031215611def57600080fd5b61105282611db1565b60008060408385031215611e0b57600080fd5b611e1483611db1565b9150611e2260208401611db1565b90509250929050565b600080600060608486031215611e4057600080fd5b611e4984611db1565b9250611e5760208501611db1565b9150604084013590509250925092565b60008060008060808587031215611e7d57600080fd5b611e8685611db1565b9350611e9460208601611db1565b92506040850135915060608501356001600160401b0380821115611eb757600080fd5b818701915087601f830112611ecb57600080fd5b813581811115611edd57611edd6123d9565b604051601f8201601f19908116603f01168101908382118183101715611f0557611f056123d9565b816040528281528a6020848701011115611f1e57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f5557600080fd5b611f5e83611db1565b9150611e2260208401611dcd565b60008060408385031215611f7f57600080fd5b611f8883611db1565b946020939093013593505050565b600060208284031215611fa857600080fd5b61105282611dcd565b600060208284031215611fc357600080fd5b8135611052816123ef565b600060208284031215611fe057600080fd5b8151611052816123ef565b60008060208385031215611ffe57600080fd5b82356001600160401b038082111561201557600080fd5b818501915085601f83011261202957600080fd5b81358181111561203857600080fd5b86602082850101111561204a57600080fd5b60209290920196919550909350505050565b60006020828403121561206e57600080fd5b5035919050565b6000806040838503121561208857600080fd5b82359150611e2260208401611db1565b600080604083850312156120ab57600080fd5b82359150611e2260208401611dcd565b6000602082840312156120cd57600080fd5b81356001600160401b038116811461105257600080fd5b600081518084526120fc816020860160208601612301565b601f01601f19169290920160200192915050565b60008351612122818460208801612301565b835190830190612136818360208801612301565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612182908301846120e4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121c4578351835292840192918401916001016121a8565b50909695505050505050565b60208152600061105260208301846120e4565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561228757612287612397565b500190565b60006001600160401b038083168185168083038211156122ae576122ae612397565b01949350505050565b6000826122c6576122c66123ad565b500490565b60008160001904831182151516156122e5576122e5612397565b500290565b6000828210156122fc576122fc612397565b500390565b60005b8381101561231c578181015183820152602001612304565b83811115610f885750506000910152565b600181811c9082168061234157607f821691505b6020821081141561236257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237c5761237c612397565b5060010190565b600082612392576123926123ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c1557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220dce371cc1842d156c6f50f845c572b2f4a0095d50e834bcdae957ba79b50d0a964736f6c63430008070033
Deployed Bytecode Sourcemap
46300:4865:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24952:315;;;;;;;;;;-1:-1:-1;24952:315:0;;;;;:::i;:::-;;:::i;:::-;;;7696:14:1;;7689:22;7671:41;;7659:2;7644:18;24952:315:0;;;;;;;;46999:585;;;;;;;;;;-1:-1:-1;46999:585:0;;;;;:::i;:::-;;:::i;:::-;;28235:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29832:212::-;;;;;;;;;;-1:-1:-1;29832:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6357:32:1;;;6339:51;;6327:2;6312:18;29832:212:0;6193:203:1;29367:389:0;;;;;;;;;;-1:-1:-1;29367:389:0;;;;;:::i;:::-;;:::i;46422:33::-;;;;;;;;;;;;;;;;;;;11781:25:1;;;11769:2;11754:18;46422:33:0;11635:177:1;50266:83:0;;;;;;;;;;-1:-1:-1;50266:83:0;;;;;:::i;:::-;;:::i;24157:315::-;;;;;;;;;;-1:-1:-1;24419:12:0;;24002:1;24403:13;:28;-1:-1:-1;;24403:46:0;24157:315;;30749:182;;;;;;;;;;-1:-1:-1;30749:182:0;;;;;:::i;:::-;;:::i;51013:147::-;;;;;;;;;;;;;:::i;31012:197::-;;;;;;;;;;-1:-1:-1;31012:197:0;;;;;:::i;:::-;;:::i;48391:693::-;;;;;;;;;;-1:-1:-1;48391:693:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50357:80::-;;;;;;;;;;-1:-1:-1;50357:80:0;;;;;:::i;:::-;;:::i;49806:102::-;;;;;;;;;;-1:-1:-1;49806:102:0;;;;;:::i;:::-;;:::i;50152:106::-;;;;;;;;;;-1:-1:-1;50152:106:0;;;;;:::i;:::-;;:::i;46686:25::-;;;;;;;;;;-1:-1:-1;46686:25:0;;;;;;;;28029:129;;;;;;;;;;-1:-1:-1;28029:129:0;;;;;:::i;:::-;;:::i;50601:100::-;;;;;;;;;;-1:-1:-1;50601:100:0;;;;;:::i;:::-;;:::i;25341:212::-;;;;;;;;;;-1:-1:-1;25341:212:0;;;;;:::i;:::-;;:::i;45417:103::-;;;;;;;;;;;;;:::i;48157:113::-;;;;;;;;;;-1:-1:-1;48157:113:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11979:31:1;;;11961:50;;11949:2;11934:18;48157:113:0;11817:200:1;46552:39:0;;;;;;;;;;;;;;;;46600:41;;;;;;;;;;;;;;;;44766:87;;;;;;;;;;-1:-1:-1;44812:7:0;44839:6;-1:-1:-1;;;;;44839:6:0;44766:87;;46505:40;;;;;;;;;;;;;;;;28418:108;;;;;;;;;;;;;:::i;49916:106::-;;;;;;;;;;-1:-1:-1;49916:106:0;;;;;:::i;:::-;;:::i;46648:31::-;;;;;;;;;;;;;;;;30126:297;;;;;;;;;;-1:-1:-1;30126:297:0;;;;;:::i;:::-;;:::i;49705:93::-;;;;;;;;;;;;;:::i;31290:389::-;;;;;;;;;;-1:-1:-1;31290:389:0;;;;;:::i;:::-;;:::i;49092:484::-;;;;;;;;;;-1:-1:-1;49092:484:0;;;;;:::i;:::-;;:::i;46462:31::-;;;;;;;;;;;;;;;;50445:148;;;;;;;;;;-1:-1:-1;50445:148:0;;;;;:::i;:::-;;:::i;49584:113::-;;;;;;;;;;-1:-1:-1;49584:113:0;;;;;:::i;:::-;;:::i;50861:144::-;;;;;;;;;;-1:-1:-1;50861:144:0;;;;;:::i;:::-;;:::i;30504:168::-;;;;;;;;;;-1:-1:-1;30504:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;30627:25:0;;;30601:4;30627:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30504:168;47984:161;;;;;;;;;;-1:-1:-1;47984:161:0;;;;;:::i;:::-;;:::i;45675:201::-;;;;;;;;;;-1:-1:-1;45675:201:0;;;;;:::i;:::-;;:::i;50709:144::-;;;;;;;;;;-1:-1:-1;50709:144:0;;;;;:::i;:::-;;:::i;47592:384::-;;;;;;:::i;:::-;;:::i;24952:315::-;25054:4;-1:-1:-1;;;;;;25095:40:0;;-1:-1:-1;;;25095:40:0;;:107;;-1:-1:-1;;;;;;;25154:48:0;;-1:-1:-1;;;25154:48:0;25095:107;:162;;;-1:-1:-1;;;;;;;;;;13827:40:0;;;25221:36;25073:184;24952:315;-1:-1:-1;;24952:315:0:o;46999:585::-;47059:11;-1:-1:-1;;;;;46782:209:0;46860:1;46846:11;:15;46838:49;;;;-1:-1:-1;;;46838:49:0;;;;;;;:::i;:::-;;;;;;;;;46937:9;;46922:11;46906:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46898:73;;;;-1:-1:-1;;;46898:73:0;;;;;;;:::i;:::-;47092:6:::1;::::0;::::1;;47091:7;47083:43;;;::::0;-1:-1:-1;;;47083:43:0;;9969:2:1;47083:43:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:53;10090:18;;47083:43:0::1;9767:347:1::0;47083:43:0::1;47137:23;47163:31;47183:10;47163:19;:31::i;:::-;47249:20;::::0;47137:57;;-1:-1:-1;47215:30:0::1;47234:11:::0;47137:57;47215:30:::1;:::i;:::-;-1:-1:-1::0;;;;;47215:54:0::1;;;47207:93;;;::::0;-1:-1:-1;;;47207:93:0;;9254:2:1;47207:93:0::1;::::0;::::1;9236:21:1::0;9293:2;9273:18;;;9266:30;9332:27;9312:18;;;9305:55;9377:18;;47207:93:0::1;9052:349:1::0;47207:93:0::1;47351:21;;47336:11;-1:-1:-1::0;;;;;47319:28:0::1;:14;;:28;;;;:::i;:::-;:53;;47311:101;;;::::0;-1:-1:-1;;;47311:101:0;;11086:2:1;47311:101:0::1;::::0;::::1;11068:21:1::0;11125:2;11105:18;;;11098:30;11164:34;11144:18;;;11137:62;-1:-1:-1;;;11215:18:1;;;11208:32;11257:19;;47311:101:0::1;10884:398:1::0;47311:101:0::1;47433:34;47443:10;47455:11;-1:-1:-1::0;;;;;47433:34:0::1;:9;:34::i;:::-;47494:11;-1:-1:-1::0;;;;;47478:27:0::1;:14;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;47516:60:0::1;::::0;-1:-1:-1;47536:10:0::1;47547:28;47564:11:::0;47547:16;:28:::1;:::i;:::-;-1:-1:-1::0;;;;;26545:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;26545:29:0;-1:-1:-1;;;;;;;;26545:29:0;;;;;;49916:106;;;47516:60:::1;47072:512;46999:585:::0;;:::o;28235:104::-;28289:13;28324:5;28317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28235:104;:::o;29832:212::-;29900:7;29927:16;29935:7;29927;:16::i;:::-;29922:64;;29952:34;;-1:-1:-1;;;29952:34:0;;;;;;;;;;;29922:64;-1:-1:-1;30010:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30010:24:0;;29832:212::o;29367:389::-;29442:13;29458:24;29474:7;29458:15;:24::i;:::-;29442:40;;29505:5;-1:-1:-1;;;;;29499:11:0;:2;-1:-1:-1;;;;;29499:11:0;;29495:48;;;29519:24;;-1:-1:-1;;;29519:24:0;;;;;;;;;;;29495:48;20316:10;-1:-1:-1;;;;;29564:21:0;;;;;;:63;;-1:-1:-1;29590:37:0;29607:5;20316:10;30504:168;:::i;29590:37::-;29589:38;29564:63;29560:142;;;29653:35;;-1:-1:-1;;;29653:35:0;;;;;;;;;;;29560:142;29718:28;29727:2;29731:7;29740:5;29718:8;:28::i;50266:83::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50326:6:::1;:15:::0;;-1:-1:-1;;50326:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50266:83::o;30749:182::-;30893:28;30903:4;30909:2;30913:7;30893:9;:28::i;51013:147::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;51062:7:::1;44839:6:::0;;51075:55:::1;::::0;-1:-1:-1;;;;;44839:6:0;;;;51104:21:::1;::::0;51062:7;51075:55;51062:7;51075:55;51104:21;44839:6;51075:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51061:69;;;51149:2;51141:11;;;::::0;::::1;;51050:110;51013:147::o:0;31012:197::-;31160:39;31177:4;31183:2;31187:7;31160:39;;;;;;;;;;;;:16;:39::i;48391:693::-;48478:16;48512:23;48538:17;48548:6;48538:9;:17::i;:::-;48512:43;;48566:30;48613:15;-1:-1:-1;;;;;48599:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48599:30:0;-1:-1:-1;48566:63:0;-1:-1:-1;48665:1:0;48640:22;48717:327;48742:15;48724;:33;:64;;;;;48779:9;;48761:14;:27;;48724:64;48717:327;;;48801:25;48829:23;48837:14;48829:7;:23::i;:::-;48801:51;;48890:6;-1:-1:-1;;;;;48869:27:0;:17;-1:-1:-1;;;;;48869:27:0;;48865:139;;;48946:14;48913:13;48927:15;48913:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48975:17;;;;:::i;:::-;;;;48865:139;49016:16;;;;:::i;:::-;;;;48790:254;48717:327;;;-1:-1:-1;49063:13:0;;48391:693;-1:-1:-1;;;;48391:693:0:o;50357:80::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50417:4:::1;:12:::0;50357:80::o;49806:102::-;49860:4;49884:16;49892:7;49884;:16::i;50152:106::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50227:23:::1;:13;50243:7:::0;;50227:23:::1;:::i;28029:129::-:0;28093:7;28122:21;28135:7;28122:12;:21::i;:::-;:26;;28029:129;-1:-1:-1;;28029:129:0:o;50601:100::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50671:9:::1;:22:::0;50601:100::o;25341:212::-;25405:7;-1:-1:-1;;;;;25431:19:0;;25427:60;;25459:28;;-1:-1:-1;;;25459:28:0;;;;;;;;;;;25427:60;-1:-1:-1;;;;;;25515:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25515:27:0;;25341:212::o;45417:103::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;45482:30:::1;45509:1;45482:18;:30::i;:::-;45417:103::o:0;48157:113::-;-1:-1:-1;;;;;26246:19:0;;48222:6;26246:19;;;:12;:19;;;;;:23;-1:-1:-1;;;26246:23:0;;-1:-1:-1;;;;;26246:23:0;48248:14;26163:116;28418:108;28474:13;28509:7;28502:14;;;;;:::i;49916:106::-;49985:29;49991:7;50000:13;49985:5;:29::i;:::-;49916:106;;:::o;30126:297::-;-1:-1:-1;;;;;30227:24:0;;20316:10;30227:24;30223:54;;;30260:17;;-1:-1:-1;;;30260:17:0;;;;;;;;;;;30223:54;20316:10;30294:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30294:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30294:53:0;;;;;;;;;;30365:48;;7671:41:1;;;30294:42:0;;20316:10;30365:48;;7644:18:1;30365:48:0;;;;;;;30126:297;;:::o;49705:93::-;49749:7;49776:14;24002:1;24816:13;-1:-1:-1;;24816:31:0;;24575:295;49776:14;49769:21;;49705:93;:::o;31290:389::-;31469:28;31479:4;31485:2;31489:7;31469:9;:28::i;:::-;-1:-1:-1;;;;;31514:13:0;;3930:19;:23;;31514:76;;;;;31534:56;31565:4;31571:2;31575:7;31584:5;31534:30;:56::i;:::-;31533:57;31514:76;31510:160;;;31616:40;;-1:-1:-1;;;31616:40:0;;;;;;;;;;;31510:160;31290:389;;;;:::o;49092:484::-;49213:13;49266:17;49274:8;49266:7;:17::i;:::-;49248:106;;;;-1:-1:-1;;;49248:106:0;;10321:2:1;49248:106:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399:34;10379:18;;;10372:62;-1:-1:-1;;;10450:18:1;;;10443:45;10505:19;;49248:106:0;10119:411:1;49248:106:0;49367:28;49398:10;:8;:10::i;:::-;49367:41;;49459:1;49434:14;49428:28;:32;:140;;;;;;;;;;;;;;;;;49502:14;49518:19;:8;:17;:19::i;:::-;49485:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49428:140;49421:147;49092:484;-1:-1:-1;;;49092:484:0:o;50445:148::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50539:21:::1;:46:::0;50445:148::o;49584:113::-;-1:-1:-1;;;;;25743:19:0;;49642:7;25743:19;;;:12;:19;;;;;:32;-1:-1:-1;;;25743:32:0;;-1:-1:-1;;;;;25743:32:0;49669:20;25645:141;50861:144;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50953:20:::1;:44:::0;50861:144::o;47984:161::-;48070:11;46860:1;46846:11;:15;46838:49;;;;-1:-1:-1;;;46838:49:0;;;;;;;:::i;:::-;46937:9;;46922:11;46906:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46898:73;;;;-1:-1:-1;;;46898:73:0;;;;;;;:::i;:::-;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23:::1;44978:68;;;;-1:-1:-1::0;;;44978:68:0::1;;;;;;;:::i;:::-;48104:33:::2;48114:9;48125:11;48104:9;:33::i;45675:201::-:0;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45764:22:0;::::1;45756:73;;;::::0;-1:-1:-1;;;45756:73:0;;8498:2:1;45756:73:0::1;::::0;::::1;8480:21:1::0;8537:2;8517:18;;;8510:30;8576:34;8556:18;;;8549:62;-1:-1:-1;;;8627:18:1;;;8620:36;8673:19;;45756:73:0::1;8296:402:1::0;45756:73:0::1;45840:28;45859:8;45840:18;:28::i;50709:144::-:0;44812:7;44839:6;-1:-1:-1;;;;;44839:6:0;20316:10;44986:23;44978:68;;;;-1:-1:-1;;;44978:68:0;;;;;;;:::i;:::-;50801:20:::1;:44:::0;50709:144::o;47592:384::-;47656:11;-1:-1:-1;;;;;46782:209:0;46860:1;46846:11;:15;46838:49;;;;-1:-1:-1;;;46838:49:0;;;;;;;:::i;:::-;46937:9;;46922:11;46906:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46898:73;;;;-1:-1:-1;;;46898:73:0;;;;;;;:::i;:::-;47689:6:::1;::::0;::::1;;47688:7;47680:43;;;::::0;-1:-1:-1;;;47680:43:0;;9969:2:1;47680:43:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:53;10090:18;;47680:43:0::1;9767:347:1::0;47680:43:0::1;47771:11;-1:-1:-1::0;;;;;47764:18:0::1;:4;;:18;;;;:::i;:::-;47751:9;:31;;47743:63;;;::::0;-1:-1:-1;;;47743:63:0;;11489:2:1;47743:63:0::1;::::0;::::1;11471:21:1::0;11528:2;11508:18;;;11501:30;-1:-1:-1;;;11547:18:1;;;11540:49;11606:18;;47743:63:0::1;11287:343:1::0;47743:63:0::1;47867:20;;47852:11;-1:-1:-1::0;;;;;47825:38:0::1;:24;47838:10;47825:12;:24::i;:::-;:38;;;;:::i;:::-;:62;;47817:96;;;::::0;-1:-1:-1;;;47817:96:0;;8149:2:1;47817:96:0::1;::::0;::::1;8131:21:1::0;8188:2;8168:18;;;8161:30;-1:-1:-1;;;8207:18:1;;;8200:50;8267:18;;47817:96:0::1;7947:344:1::0;47817:96:0::1;47934:34;47944:10;47956:11;-1:-1:-1::0;;;;;47934:34:0::1;32157:108:::0;32228:27;32238:2;32242:8;32228:27;;;;;;;;;;;;:9;:27::i;31952:193::-;32009:4;32054:7;24002:1;32035:26;;:53;;;;;32075:13;;32065:7;:23;32035:53;:100;;;;-1:-1:-1;;32108:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32108:27:0;;;;32107:28;;31952:193::o;40558:210::-;40683:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40683:29:0;-1:-1:-1;;;;;40683:29:0;;;;;;;;;40730:28;;40683:24;;40730:28;;;;;;;40558:210;;;:::o;35247:2226::-;35372:35;35410:21;35423:7;35410:12;:21::i;:::-;35372:59;;35474:4;-1:-1:-1;;;;;35452:26:0;:13;:18;;;-1:-1:-1;;;;;35452:26:0;;35448:67;;35487:28;;-1:-1:-1;;;35487:28:0;;;;;;;;;;;35448:67;35532:22;20316:10;-1:-1:-1;;;;;35558:20:0;;;;:75;;-1:-1:-1;35597:36:0;35614:4;20316:10;30504:168;:::i;35597:36::-;35558:130;;;-1:-1:-1;20316:10:0;35652:20;35664:7;35652:11;:20::i;:::-;-1:-1:-1;;;;;35652:36:0;;35558:130;35532:157;;35711:17;35706:66;;35737:35;;-1:-1:-1;;;35737:35:0;;;;;;;;;;;35706:66;-1:-1:-1;;;;;35789:16:0;;35785:52;;35814:23;;-1:-1:-1;;;35814:23:0;;;;;;;;;;;35785:52;35968:35;35985:1;35989:7;35998:4;35968:8;:35::i;:::-;-1:-1:-1;;;;;36311:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36311:31:0;;;-1:-1:-1;;;;;36311:31:0;;;-1:-1:-1;;36311:31:0;;;;;;;36359:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36359:29:0;;;;;;;;;;;36443:20;;;:11;:20;;;;;;36480:18;;-1:-1:-1;;;;;;36515:49:0;;;;-1:-1:-1;;;36548:15:0;36515:49;;;;;;;;;;36846:11;;36908:24;;;;;36953:13;;36443:20;;36908:24;;36953:13;36949:398;;37169:13;;37154:11;:28;37150:180;;37209:20;;37280:28;;;;-1:-1:-1;;;;;37254:54:0;-1:-1:-1;;;37254:54:0;-1:-1:-1;;;;;;37254:54:0;;;-1:-1:-1;;;;;37209:20:0;;37254:54;;;;37150:180;36284:1076;;;37400:7;37396:2;-1:-1:-1;;;;;37381:27:0;37390:4;-1:-1:-1;;;;;37381:27:0;-1:-1:-1;;;;;;;;;;;37381:27:0;;;;;;;;;37421:42;35359:2114;;35247:2226;;;:::o;26798:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26911:7:0;;24002:1;26966:23;;:47;;;;;27000:13;;26993:4;:20;26966:47;26962:922;;;27036:31;27070:17;;;:11;:17;;;;;;;;;27036:51;;;;;;;;;-1:-1:-1;;;;;27036:51:0;;;;-1:-1:-1;;;27036:51:0;;-1:-1:-1;;;;;27036:51:0;;;;;;;;-1:-1:-1;;;27036:51:0;;;;;;;;;;;;;;27108:759;;27160:14;;-1:-1:-1;;;;;27160:28:0;;27156:105;;27226:9;26798:1159;-1:-1:-1;;;26798:1159:0:o;27156:105::-;-1:-1:-1;;;27615:6:0;27662:17;;;;:11;:17;;;;;;;;;27650:29;;;;;;;;;-1:-1:-1;;;;;27650:29:0;;;;;-1:-1:-1;;;27650:29:0;;-1:-1:-1;;;;;27650:29:0;;;;;;;;-1:-1:-1;;;27650:29:0;;;;;;;;;;;;;27712:28;27708:113;;27782:9;26798:1159;-1:-1:-1;;;26798:1159:0:o;27708:113::-;27573:273;;;27015:869;26962:922;27916:31;;-1:-1:-1;;;27916:31:0;;;;;;;;;;;46036:191;46110:16;46129:6;;-1:-1:-1;;;;;46146:17:0;;;-1:-1:-1;;;;;;46146:17:0;;;;;;46179:40;;46129:6;;;;;;;46179:40;;46110:16;46179:40;46099:128;46036:191;:::o;37912:2514::-;37994:35;38032:21;38045:7;38032:12;:21::i;:::-;38085:18;;37994:59;;-1:-1:-1;38120:302:0;;;;38156:22;20316:10;-1:-1:-1;;;;;38182:20:0;;;;:79;;-1:-1:-1;38225:36:0;38242:4;20316:10;30504:168;:::i;38225:36::-;38182:138;;;-1:-1:-1;20316:10:0;38284:20;38296:7;38284:11;:20::i;:::-;-1:-1:-1;;;;;38284:36:0;;38182:138;38156:165;;38347:17;38342:66;;38373:35;;-1:-1:-1;;;38373:35:0;;;;;;;;;;;38342:66;38139:283;38120:302;38560:35;38577:1;38581:7;38590:4;38560:8;:35::i;:::-;-1:-1:-1;;;;;38937:18:0;;;38903:31;38937:18;;;:12;:18;;;;;;;;38972:24;;-1:-1:-1;;;;;;;;;;38972:24:0;;;;;;;;;-1:-1:-1;;38972:24:0;;;;39013:29;;;;;38995:1;39013:29;;;;;;;;-1:-1:-1;;39013:29:0;;;;;;;;;;39181:20;;;:11;:20;;;;;;39218;;-1:-1:-1;;;;39288:15:0;39255:49;;;-1:-1:-1;;;39255:49:0;-1:-1:-1;;;;;;39255:49:0;;;;;;;;;;39321:22;-1:-1:-1;;;39321:22:0;;;39621:11;;;39683:24;;;;;39728:13;;38937:18;;39683:24;;39728:13;39724:398;;39944:13;;39929:11;:28;39925:180;;39984:20;;40055:28;;;;-1:-1:-1;;;;;40029:54:0;-1:-1:-1;;;40029:54:0;-1:-1:-1;;;;;;40029:54:0;;;-1:-1:-1;;;;;39984:20:0;;40029:54;;;;39925:180;-1:-1:-1;;40156:35:0;;40183:7;;-1:-1:-1;40179:1:0;;-1:-1:-1;;;;;;40156:35:0;;;-1:-1:-1;;;;;;;;;;;40156:35:0;40179:1;;40156:35;-1:-1:-1;;40389:12:0;:14;;;;;;-1:-1:-1;;37912:2514:0:o;41282:701::-;41478:72;;-1:-1:-1;;;41478:72:0;;41455:4;;-1:-1:-1;;;;;41478:36:0;;;;;:72;;20316:10;;41529:4;;41535:7;;41544:5;;41478:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41478:72:0;;;;;;;;-1:-1:-1;;41478:72:0;;;;;;;;;;;;:::i;:::-;;;41474:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41718:13:0;;41714:247;;41766:40;;-1:-1:-1;;;41766:40:0;;;;;;;;;;;41714:247;41915:6;41909:13;41900:6;41896:2;41892:15;41885:38;41474:500;-1:-1:-1;;;;;;41599:55:0;-1:-1:-1;;;41599:55:0;;-1:-1:-1;41474:500:0;41282:701;;;;;;:::o;50030:114::-;50090:13;50123;50116:20;;;;;:::i;643:723::-;699:13;920:10;916:53;;-1:-1:-1;;947:10:0;;;;;;;;;;;;-1:-1:-1;;;947:10:0;;;;;643:723::o;916:53::-;994:5;979:12;1035:78;1042:9;;1035:78;;1068:8;;;;:::i;:::-;;-1:-1:-1;1091:10:0;;-1:-1:-1;1099:2:0;1091:10;;:::i;:::-;;;1035:78;;;1123:19;1155:6;-1:-1:-1;;;;;1145:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1145:17:0;;1123:39;;1173:154;1180:10;;1173:154;;1207:11;1217:1;1207:11;;:::i;:::-;;-1:-1:-1;1276:10:0;1284:2;1276:5;:10;:::i;:::-;1263:24;;:2;:24;:::i;:::-;1250:39;;1233:6;1240;1233:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1233:56:0;;;;;;;;-1:-1:-1;1304:11:0;1313:2;1304:11;;:::i;:::-;;;1173:154;;32652:175;32785:32;32791:2;32795:8;32805:5;32812:4;33284:13;;-1:-1:-1;;;;;33314:16:0;;33310:48;;33339:19;;-1:-1:-1;;;33339:19:0;;;;;;;;;;;33310:48;33375:13;33371:44;;33397:18;;-1:-1:-1;;;33397:18:0;;;;;;;;;;;33371:44;-1:-1:-1;;;;;33782:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33843:49:0;;-1:-1:-1;;;;;33782:44:0;;;;;;;33843:49;;;-1:-1:-1;;;;;33782:44:0;;;;;;33843:49;;;;;;;;;;;;;;;;33913:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33965:66:0;;;;-1:-1:-1;;;34015:15:0;33965:66;;;;;;;;;;33913:25;34118:23;;;34166:4;:23;;;;-1:-1:-1;;;;;;34174:13:0;;3930:19;:23;;34174:15;34162:667;;;34212:324;34245:38;;34270:12;;-1:-1:-1;;;;;34245:38:0;;;34262:1;;-1:-1:-1;;;;;;;;;;;34245:38:0;34262:1;;34245:38;34313:69;34352:1;34356:2;34360:14;;;;;;34376:5;34313:30;:69::i;:::-;34308:178;;34420:40;;-1:-1:-1;;;34420:40:0;;;;;;;;;;;34308:178;34531:3;34515:12;:19;;34212:324;;34621:12;34604:13;;:29;34600:43;;34635:8;;;34600:43;34162:667;;;34688:124;34721:40;;34746:14;;;;;-1:-1:-1;;;;;34721:40:0;;;34738:1;;-1:-1:-1;;;;;;;;;;;34721:40:0;34738:1;;34721:40;34807:3;34791:12;:19;;34688:124;;34162:667;-1:-1:-1;34845:13:0;:28;34899:60;31290:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;-1:-1:-1;;;;;1610:2:1;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;-1:-1:-1;;;;;3754:2:1;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:254::-;4346:6;4354;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4459:9;4446:23;4436:33;;4488:38;4522:2;4511:9;4507:18;4488:38;:::i;4537:248::-;4602:6;4610;4663:2;4651:9;4642:7;4638:23;4634:32;4631:52;;;4679:1;4676;4669:12;4631:52;4715:9;4702:23;4692:33;;4744:35;4775:2;4764:9;4760:18;4744:35;:::i;4790:284::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;4956:9;4943:23;-1:-1:-1;;;;;4999:5:1;4995:30;4988:5;4985:41;4975:69;;5040:1;5037;5030:12;5079:257;5120:3;5158:5;5152:12;5185:6;5180:3;5173:19;5201:63;5257:6;5250:4;5245:3;5241:14;5234:4;5227:5;5223:16;5201:63;:::i;:::-;5318:2;5297:15;-1:-1:-1;;5293:29:1;5284:39;;;;5325:4;5280:50;;5079:257;-1:-1:-1;;5079:257:1:o;5341:637::-;5621:3;5659:6;5653:13;5675:53;5721:6;5716:3;5709:4;5701:6;5697:17;5675:53;:::i;:::-;5791:13;;5750:16;;;;5813:57;5791:13;5750:16;5847:4;5835:17;;5813:57;:::i;:::-;-1:-1:-1;;;5892:20:1;;5921:22;;;5970:1;5959:13;;5341:637;-1:-1:-1;;;;5341:637:1:o;6401:488::-;-1:-1:-1;;;;;6670:15:1;;;6652:34;;6722:15;;6717:2;6702:18;;6695:43;6769:2;6754:18;;6747:34;;;6817:3;6812:2;6797:18;;6790:31;;;6595:4;;6838:45;;6863:19;;6855:6;6838:45;:::i;:::-;6830:53;6401:488;-1:-1:-1;;;;;;6401:488:1:o;6894:632::-;7065:2;7117:21;;;7187:13;;7090:18;;;7209:22;;;7036:4;;7065:2;7288:15;;;;7262:2;7247:18;;;7036:4;7331:169;7345:6;7342:1;7339:13;7331:169;;;7406:13;;7394:26;;7475:15;;;;7440:12;;;;7367:1;7360:9;7331:169;;;-1:-1:-1;7517:3:1;;6894:632;-1:-1:-1;;;;;;6894:632:1:o;7723:219::-;7872:2;7861:9;7854:21;7835:4;7892:44;7932:2;7921:9;7917:18;7909:6;7892:44;:::i;8703:344::-;8905:2;8887:21;;;8944:2;8924:18;;;8917:30;-1:-1:-1;;;8978:2:1;8963:18;;8956:50;9038:2;9023:18;;8703:344::o;9406:356::-;9608:2;9590:21;;;9627:18;;;9620:30;9686:34;9681:2;9666:18;;9659:62;9753:2;9738:18;;9406:356::o;10535:344::-;10737:2;10719:21;;;10776:2;10756:18;;;10749:30;-1:-1:-1;;;10810:2:1;10795:18;;10788:50;10870:2;10855:18;;10535:344::o;12022:128::-;12062:3;12093:1;12089:6;12086:1;12083:13;12080:39;;;12099:18;;:::i;:::-;-1:-1:-1;12135:9:1;;12022:128::o;12155:236::-;12194:3;-1:-1:-1;;;;;12267:2:1;12264:1;12260:10;12297:2;12294:1;12290:10;12328:3;12324:2;12320:12;12315:3;12312:21;12309:47;;;12336:18;;:::i;:::-;12372:13;;12155:236;-1:-1:-1;;;;12155:236:1:o;12396:120::-;12436:1;12462;12452:35;;12467:18;;:::i;:::-;-1:-1:-1;12501:9:1;;12396:120::o;12521:168::-;12561:7;12627:1;12623;12619:6;12615:14;12612:1;12609:21;12604:1;12597:9;12590:17;12586:45;12583:71;;;12634:18;;:::i;:::-;-1:-1:-1;12674:9:1;;12521:168::o;12694:125::-;12734:4;12762:1;12759;12756:8;12753:34;;;12767:18;;:::i;:::-;-1:-1:-1;12804:9:1;;12694:125::o;12824:258::-;12896:1;12906:113;12920:6;12917:1;12914:13;12906:113;;;12996:11;;;12990:18;12977:11;;;12970:39;12942:2;12935:10;12906:113;;;13037:6;13034:1;13031:13;13028:48;;;-1:-1:-1;;13072:1:1;13054:16;;13047:27;12824:258::o;13087:380::-;13166:1;13162:12;;;;13209;;;13230:61;;13284:4;13276:6;13272:17;13262:27;;13230:61;13337:2;13329:6;13326:14;13306:18;13303:38;13300:161;;;13383:10;13378:3;13374:20;13371:1;13364:31;13418:4;13415:1;13408:15;13446:4;13443:1;13436:15;13300:161;;13087:380;;;:::o;13472:135::-;13511:3;-1:-1:-1;;13532:17:1;;13529:43;;;13552:18;;:::i;:::-;-1:-1:-1;13599:1:1;13588:13;;13472:135::o;13612:112::-;13644:1;13670;13660:35;;13675:18;;:::i;:::-;-1:-1:-1;13709:9:1;;13612:112::o;13729:127::-;13790:10;13785:3;13781:20;13778:1;13771:31;13821:4;13818:1;13811:15;13845:4;13842:1;13835:15;13861:127;13922:10;13917:3;13913:20;13910:1;13903:31;13953:4;13950:1;13943:15;13977:4;13974:1;13967:15;13993:127;14054:10;14049:3;14045:20;14042:1;14035:31;14085:4;14082:1;14075:15;14109:4;14106:1;14099:15;14125:127;14186:10;14181:3;14177:20;14174:1;14167:31;14217:4;14214:1;14207:15;14241:4;14238:1;14231:15;14257:131;-1:-1:-1;;;;;;14331:32:1;;14321:43;;14311:71;;14378:1;14375;14368:12
Swarm Source
ipfs://dce371cc1842d156c6f50f845c572b2f4a0095d50e834bcdae957ba79b50d0a9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.