ERC-721
Overview
Max Total Supply
7,777 FZX
Holders
3,421
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FZXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FZX
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-02 */ /** ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄█░▌ ▐░▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▐░▌░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄▄▄ ▐░▌ ▐░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀ */ // SPDX-License-Identifier: MIT //Developer Info: // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/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: contracts/new.sol 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 0; } /** * @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 {} } 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); } } pragma solidity ^0.8.7; contract FZX is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.003 ether; uint16 public maxSupply = 7777; uint8 public maxMintAmountPerTx = 21; uint8 public maxFreeMintAmountPerWallet = 1; bool public paused = true; bool public reveal =false; mapping (address => uint8) public NFTPerPublicAddress; constructor() ERC721A("FZX", "FZX") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); uint8 nft = NFTPerPublicAddress[msg.sender]; require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction."); require(!paused, "The contract is paused!"); if(nft >= maxFreeMintAmountPerWallet) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } else { uint8 costAmount = _mintAmount + nft; if(costAmount > maxFreeMintAmountPerWallet) { costAmount = costAmount - maxFreeMintAmountPerWallet; require(msg.value >= cost * costAmount, "Insufficient funds!"); } } _safeMint(msg.sender , _mintAmount); NFTPerPublicAddress[msg.sender] = _mintAmount + nft; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000116565b50660aa87bee538000600c55600d805465ffffffffffff1916640101151e611790553480156200005757600080fd5b5060408051808201825260038082526208cb4b60eb1b602080840182815285518087019096529285528401528151919291620000969160029162000116565b508051620000ac90600390602084019062000116565b50506000805550620000be33620000c4565b620001f9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b6122f480620002096000396000f3fe60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220b4870cc4a2a752c38ebd84d6cc0046afb003ec6644fa207c4bc58fd4d0ede26c64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220b4870cc4a2a752c38ebd84d6cc0046afb003ec6644fa207c4bc58fd4d0ede26c64736f6c63430008070033
Deployed Bytecode Sourcemap
45130:4013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25454:305;;;;;;;;;;-1:-1:-1;25454:305:0;;;;;:::i;:::-;;:::i;:::-;;;8357:14:1;;8350:22;8332:41;;8320:2;8305:18;25454:305:0;;;;;;;;47552:97;;;;;;;;;;-1:-1:-1;47552:97:0;;;;;:::i;:::-;;:::i;:::-;;28567:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30070:204::-;;;;;;;;;;-1:-1:-1;30070:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7655:32:1;;;7637:51;;7625:2;7610:18;30070:204:0;7491:203:1;29633:371:0;;;;;;;;;;-1:-1:-1;29633:371:0;;;;;:::i;:::-;;:::i;48426:102::-;;;;;;;;;;-1:-1:-1;48426:102:0;;;;;:::i;:::-;;:::i;45313:33::-;;;;;;;;;;;;;;;;;;;11536:25:1;;;11524:2;11509:18;45313:33:0;11390:177:1;24703:303:0;;;;;;;;;;-1:-1:-1;24957:12:0;;24747:7;24941:13;:28;24703:303;;30935:170;;;;;;;;;;-1:-1:-1;30935:170:0;;;;;:::i;:::-;;:::i;46736:326::-;;;;;;;;;;-1:-1:-1;46736:326:0;;;;;:::i;:::-;;:::i;48536:74::-;;;;;;;;;;;;;:::i;48697:70::-;;;;;;;;;;;;;:::i;48891:144::-;;;;;;;;;;;;;:::i;31176:185::-;;;;;;;;;;-1:-1:-1;31176:185:0;;;;;:::i;:::-;;:::i;48616:76::-;;;;;;;;;;-1:-1:-1;48616:76:0;;;;;:::i;:::-;;:::i;48167:134::-;;;;;;;;;;-1:-1:-1;48167:134:0;;;;;:::i;:::-;;:::i;45552:25::-;;;;;;;;;;-1:-1:-1;45552:25:0;;;;;;;;;;;28375:125;;;;;;;;;;-1:-1:-1;28375:125:0;;;;;:::i;:::-;;:::i;45752:976::-;;;;;;:::i;:::-;;:::i;25823:206::-;;;;;;;;;;-1:-1:-1;25823:206:0;;;;;:::i;:::-;;:::i;44276:103::-;;;;;;;;;;;;;:::i;48319:102::-;;;;;;;;;;-1:-1:-1;48319:102:0;;;;;:::i;:::-;;:::i;43624:87::-;;;;;;;;;;-1:-1:-1;43697:6:0;;-1:-1:-1;;;;;43697:6:0;43624:87;;45395:36;;;;;;;;;;-1:-1:-1;45395:36:0;;;;;;;;;;;;;;11744:4:1;11732:17;;;11714:36;;11702:2;11687:18;45395:36:0;11572:184:1;28736:104:0;;;;;;;;;;;;;:::i;30346:287::-;;;;;;;;;;-1:-1:-1;30346:287:0;;;;;:::i;:::-;;:::i;45582:25::-;;;;;;;;;;-1:-1:-1;45582:25:0;;;;;;;;;;;48773:107;;;;;;;;;;-1:-1:-1;48773:107:0;;;;;:::i;:::-;;:::i;31432:369::-;;;;;;;;;;-1:-1:-1;31432:369:0;;;;;:::i;:::-;;:::i;47664:490::-;;;;;;;;;;-1:-1:-1;47664:490:0;;;;;:::i;:::-;;:::i;47068:473::-;;;;;;;;;;-1:-1:-1;47068:473:0;;;;;:::i;:::-;;:::i;45360:30::-;;;;;;;;;;-1:-1:-1;45360:30:0;;;;;;;;;;;11371:6:1;11359:19;;;11341:38;;11329:2;11314:18;45360:30:0;11197:188:1;45615:53:0;;;;;;;;;;-1:-1:-1;45615:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30704:164;;;;;;;;;;-1:-1:-1;30704:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30825:25:0;;;30801:4;30825:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30704:164;45273:23;;;;;;;;;;;;;:::i;44534:201::-;;;;;;;;;;-1:-1:-1;44534:201:0;;;;;:::i;:::-;;:::i;45438:43::-;;;;;;;;;;-1:-1:-1;45438:43:0;;;;;;;;;;;25454:305;25556:4;-1:-1:-1;;;;;;25593:40:0;;-1:-1:-1;;;25593:40:0;;:105;;-1:-1:-1;;;;;;;25650:48:0;;-1:-1:-1;;;25650:48:0;25593:105;:158;;;-1:-1:-1;;;;;;;;;;15488:40:0;;;25715:36;25573:178;25454:305;-1:-1:-1;;25454:305:0:o;47552:97::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;;;;;;;;;47621:9:::1;:22:::0;;-1:-1:-1;;47621:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47552:97::o;28567:100::-;28621:13;28654:5;28647:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28567:100;:::o;30070:204::-;30138:7;30163:16;30171:7;30163;:16::i;:::-;30158:64;;30188:34;;-1:-1:-1;;;30188:34:0;;;;;;;;;;;30158:64;-1:-1:-1;30242:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30242:24:0;;30070:204::o;29633:371::-;29706:13;29722:24;29738:7;29722:15;:24::i;:::-;29706:40;;29767:5;-1:-1:-1;;;;;29761:11:0;:2;-1:-1:-1;;;;;29761:11:0;;29757:48;;;29781:24;;-1:-1:-1;;;29781:24:0;;;;;;;;;;;29757:48;3929:10;-1:-1:-1;;;;;29822:21:0;;;;;;:63;;-1:-1:-1;29848:37:0;29865:5;3929:10;30704:164;:::i;29848:37::-;29847:38;29822:63;29818:138;;;29909:35;;-1:-1:-1;;;29909:35:0;;;;;;;;;;;29818:138;29968:28;29977:2;29981:7;29990:5;29968:8;:28::i;:::-;29695:309;29633:371;;:::o;48426:102::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48500:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48426:102:::0;:::o;30935:170::-;31069:28;31079:4;31085:2;31089:7;31069:9;:28::i;46736:326::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;46819:18:::1;46847:13;24957:12:::0;;24747:7;24941:13;:28;;24703:303;46847:13:::1;46905:9;::::0;46819:42;;-1:-1:-1;46905:9:0::1;;46876:25;46890:11:::0;46819:42;46876:25:::1;:::i;:::-;:38;;;;46868:70;;;;-1:-1:-1::0;;;46868:70:0::1;;;;;;;:::i;:::-;46946:34;46956:9;46968:11;46946:34;;:9;:34::i;48536:74::-:0;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48593:6:::1;::::0;;-1:-1:-1;;48583:16:0;::::1;48593:6:::0;;;;::::1;;;48592:7;48583:16:::0;;::::1;;::::0;;48536:74::o;48697:70::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48756:6:::1;::::0;;-1:-1:-1;;48746:16:0;::::1;48756:6:::0;;;;::::1;;;48755:7;48746:16:::0;;::::1;;::::0;;48697:70::o;48891:144::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48980:39:::1;::::0;48951:21:::1;::::0;48988:10:::1;::::0;48980:39;::::1;;;::::0;48951:21;;48935:13:::1;48980:39:::0;48935:13;48980:39;48951:21;48988:10;48980:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31176:185:::0;31314:39;31331:4;31337:2;31341:7;31314:39;;;;;;;;;;;;:16;:39::i;48616:76::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48672:4:::1;:12:::0;48616:76::o;48167:134::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48241:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48241:35:0;;::::1;::::0;;;::::1;::::0;;48167:134::o;28375:125::-;28439:7;28466:21;28479:7;28466:12;:21::i;:::-;:26;;28375:125;-1:-1:-1;;28375:125:0:o;45752:976::-;45811:18;45839:13;24957:12;;24747:7;24941:13;:28;;24703:303;45839:13;45893:10;45861:9;45873:31;;;:19;:31;;;;;;45948:9;;45811:42;;-1:-1:-1;45873:31:0;;;;;45948:9;;;45919:25;;;;45811:42;45919:25;:::i;:::-;:38;;;;45911:70;;;;-1:-1:-1;;;45911:70:0;;;;;;;:::i;:::-;46017:18;;;;;;;45996:17;46010:3;45996:11;:17;:::i;:::-;:39;;;;45988:80;;;;-1:-1:-1;;;45988:80:0;;10694:2:1;45988:80:0;;;10676:21:1;10733:2;10713:18;;;10706:30;10772;10752:18;;;10745:58;10820:18;;45988:80:0;10492:352:1;45988:80:0;46086:6;;;;;;;46085:7;46077:43;;;;-1:-1:-1;;;46077:43:0;;9578:2:1;46077:43:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:25;9636:18;;;9629:53;9699:18;;46077:43:0;9376:347:1;46077:43:0;46145:26;;;;;;;;;46138:33;;;;46135:417;;46213:11;46206:18;;:4;;:18;;;;:::i;:::-;46193:9;:31;;46185:63;;;;-1:-1:-1;;;46185:63:0;;11051:2:1;46185:63:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;46185:63:0;10849:343:1;46185:63:0;46135:417;;;46279:16;46298:17;46312:3;46298:11;:17;:::i;:::-;46342:26;;46279:36;;-1:-1:-1;46342:26:0;;;;;;;46329:39;;;;46326:199;;;46415:26;;46402:39;;46415:26;;;;;46402:10;:39;:::i;:::-;46389:52;;46480:10;46473:17;;:4;;:17;;;;:::i;:::-;46460:9;:30;;46452:62;;;;-1:-1:-1;;;46452:62:0;;11051:2:1;46452:62:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;46452:62:0;10849:343:1;46452:62:0;46267:285;46135:417;46568:35;46578:10;46591:11;46568:35;;:9;:35::i;:::-;46646:17;46660:3;46646:11;:17;:::i;:::-;46632:10;46612:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46612:51:0;;;;;;;;;;;;-1:-1:-1;;;45752:976:0:o;25823:206::-;25887:7;-1:-1:-1;;;;;25911:19:0;;25907:60;;25939:28;;-1:-1:-1;;;25939:28:0;;;;;;;;;;;25907:60;-1:-1:-1;;;;;;25993:19:0;;;;;:12;:19;;;;;:27;;;;25823:206::o;44276:103::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;44341:30:::1;44368:1;44341:18;:30::i;:::-;44276:103::o:0;48319:102::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48393:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28736:104::-:0;28792:13;28825:7;28818:14;;;;;:::i;30346:287::-;-1:-1:-1;;;;;30445:24:0;;3929:10;30445:24;30441:54;;;30478:17;;-1:-1:-1;;;30478:17:0;;;;;;;;;;;30441:54;3929:10;30508:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30508:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30508:53:0;;;;;;;;;;30577:48;;8332:41:1;;;30508:42:0;;3929:10;30577:48;;8305:18:1;30577:48:0;;;;;;;30346:287;;:::o;48773:107::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;48845:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48845:27:0;;::::1;::::0;;;::::1;::::0;;48773:107::o;31432:369::-;31599:28;31609:4;31615:2;31619:7;31599:9;:28::i;:::-;-1:-1:-1;;;;;31642:13:0;;5591:19;:23;;31642:76;;;;;31662:56;31693:4;31699:2;31703:7;31712:5;31662:30;:56::i;:::-;31661:57;31642:76;31638:156;;;31742:40;;-1:-1:-1;;;31742:40:0;;;;;;;;;;;31638:156;31432:369;;;;:::o;47664:490::-;47763:13;47804:17;47812:8;47804:7;:17::i;:::-;47788:98;;;;-1:-1:-1;;;47788:98:0;;9930:2:1;47788:98:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:34;9988:18;;;9981:62;-1:-1:-1;;;10059:18:1;;;10052:45;10114:19;;47788:98:0;9728:411:1;47788:98:0;47904:6;;;;;;;47899:50;;47936:9;47929:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47664:490;;;:::o;47899:50::-;47963:28;47994:10;:8;:10::i;:::-;47963:41;;48049:1;48024:14;48018:28;:32;:130;;;;;;;;;;;;;;;;;48086:14;48102:19;:8;:17;:19::i;:::-;48123:9;48069:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48018:130;48011:137;47664:490;-1:-1:-1;;;47664:490:0:o;47068:473::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;47168:18:::1;47196:13;24957:12:::0;;24747:7;24941:13;:28;;24703:303;47196:13:::1;47168:42:::0;-1:-1:-1;47218:16:0::1;47239:36;47259:9:::0;47239:36:::1;::::0;::::1;;:::i;:::-;47319:9;::::0;47218:57;;-1:-1:-1;47319:9:0::1;::::0;;::::1;::::0;47290:25:::1;::::0;47218:57;;47290:25;::::1;;:::i;:::-;:38;;47282:70;;;;-1:-1:-1::0;;;47282:70:0::1;;;;;;;:::i;:::-;47365:9;47360:116;47380:20:::0;;::::1;47360:116;;;47422:42;47432:9;;47442:1;47432:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47446:17;47422:42;;:9;:42::i;:::-;47402:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47360:116;;;-1:-1:-1::0;;;;;;47068:473:0:o;45273:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44534:201::-;43697:6;;-1:-1:-1;;;;;43697:6:0;3929:10;43844:23;43836:69;;;;-1:-1:-1;;;43836:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44623:22:0;::::1;44615:73;;;::::0;-1:-1:-1;;;44615:73:0;;8810:2:1;44615:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:36;8985:19;;44615:73:0::1;8608:402:1::0;44615:73:0::1;44699:28;44718:8;44699:18;:28::i;:::-;44534:201:::0;:::o;32056:187::-;32113:4;32177:13;;32167:7;:23;32137:98;;;;-1:-1:-1;;32208:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32208:27:0;;;;32207:28;;32056:187::o;40226:196::-;40341:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40341:29:0;-1:-1:-1;;;;;40341:29:0;;;;;;;;;40386:28;;40341:24;;40386:28;;;;;;;40226:196;;;:::o;35169:2130::-;35284:35;35322:21;35335:7;35322:12;:21::i;:::-;35284:59;;35382:4;-1:-1:-1;;;;;35360:26:0;:13;:18;;;-1:-1:-1;;;;;35360:26:0;;35356:67;;35395:28;;-1:-1:-1;;;35395:28:0;;;;;;;;;;;35356:67;35436:22;3929:10;-1:-1:-1;;;;;35462:20:0;;;;:73;;-1:-1:-1;35499:36:0;35516:4;3929:10;30704:164;:::i;35499:36::-;35462:126;;;-1:-1:-1;3929:10:0;35552:20;35564:7;35552:11;:20::i;:::-;-1:-1:-1;;;;;35552:36:0;;35462:126;35436:153;;35607:17;35602:66;;35633:35;;-1:-1:-1;;;35633:35:0;;;;;;;;;;;35602:66;-1:-1:-1;;;;;35683:16:0;;35679:52;;35708:23;;-1:-1:-1;;;35708:23:0;;;;;;;;;;;35679:52;35852:35;35869:1;35873:7;35882:4;35852:8;:35::i;:::-;-1:-1:-1;;;;;36183:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36183:31:0;;;;;;;-1:-1:-1;;36183:31:0;;;;;;;36229:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36229:29:0;;;;;;;;;;;36309:20;;;:11;:20;;;;;;36344:18;;-1:-1:-1;;;;;;36377:49:0;;;;-1:-1:-1;;;36410:15:0;36377:49;;;;;;;;;;36700:11;;36760:24;;;;;36803:13;;36309:20;;36760:24;;36803:13;36799:384;;37013:13;;36998:11;:28;36994:174;;37051:20;;37120:28;;;;37094:54;;-1:-1:-1;;;37094:54:0;-1:-1:-1;;;;;;37094:54:0;;;-1:-1:-1;;;;;37051:20:0;;37094:54;;;;36994:174;36158:1036;;;37230:7;37226:2;-1:-1:-1;;;;;37211:27:0;37220:4;-1:-1:-1;;;;;37211:27:0;;;;;;;;;;;37249:42;35273:2026;;35169:2130;;;:::o;32251:104::-;32320:27;32330:2;32334:8;32320:27;;;;;;;;;;;;:9;:27::i;27204:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27315:7:0;27398:13;;27391:4;:20;27360:886;;;27432:31;27466:17;;;:11;:17;;;;;;;;;27432:51;;;;;;;;;-1:-1:-1;;;;;27432:51:0;;;;-1:-1:-1;;;27432:51:0;;;;;;;;;;;-1:-1:-1;;;27432:51:0;;;;;;;;;;;;;;27502:729;;27552:14;;-1:-1:-1;;;;;27552:28:0;;27548:101;;27616:9;27204:1109;-1:-1:-1;;;27204:1109:0:o;27548:101::-;-1:-1:-1;;;27991:6:0;28036:17;;;;:11;:17;;;;;;;;;28024:29;;;;;;;;;-1:-1:-1;;;;;28024:29:0;;;;;-1:-1:-1;;;28024:29:0;;;;;;;;;;;-1:-1:-1;;;28024:29:0;;;;;;;;;;;;;28084:28;28080:109;;28152:9;27204:1109;-1:-1:-1;;;27204:1109:0:o;28080:109::-;27951:261;;;27413:833;27360:886;28274:31;;-1:-1:-1;;;28274:31:0;;;;;;;;;;;44895:191;44988:6;;;-1:-1:-1;;;;;45005:17:0;;;-1:-1:-1;;;;;;45005:17:0;;;;;;;45038:40;;44988:6;;;45005:17;44988:6;;45038:40;;44969:16;;45038:40;44958:128;44895:191;:::o;40914:667::-;41098:72;;-1:-1:-1;;;41098:72:0;;41077:4;;-1:-1:-1;;;;;41098:36:0;;;;;:72;;3929:10;;41149:4;;41155:7;;41164:5;;41098:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41098:72:0;;;;;;;;-1:-1:-1;;41098:72:0;;;;;;;;;;;;:::i;:::-;;;41094:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41332:13:0;;41328:235;;41378:40;;-1:-1:-1;;;41378:40:0;;;;;;;;;;;41328:235;41521:6;41515:13;41506:6;41502:2;41498:15;41491:38;41094:480;-1:-1:-1;;;;;;41217:55:0;-1:-1:-1;;;41217:55:0;;-1:-1:-1;41094:480:0;40914:667;;;;;;:::o;49043:97::-;49096:13;49125:9;49118:16;;;;;:::i;1411:723::-;1467:13;1688:10;1684:53;;-1:-1:-1;;1715:10:0;;;;;;;;;;;;-1:-1:-1;;;1715:10:0;;;;;1411:723::o;1684:53::-;1762:5;1747:12;1803:78;1810:9;;1803:78;;1836:8;;;;:::i;:::-;;-1:-1:-1;1859:10:0;;-1:-1:-1;1867:2:0;1859:10;;:::i;:::-;;;1803:78;;;1891:19;1923:6;1913:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1913:17:0;;1891:39;;1941:154;1948:10;;1941:154;;1975:11;1985:1;1975:11;;:::i;:::-;;-1:-1:-1;2044:10:0;2052:2;2044:5;:10;:::i;:::-;2031:24;;:2;:24;:::i;:::-;2018:39;;2001:6;2008;2001:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2001:56:0;;;;;;;;-1:-1:-1;2072:11:0;2081:2;2072:11;;:::i;:::-;;;1941:154;;32718:163;32841:32;32847:2;32851:8;32861:5;32868:4;33279:20;33302:13;-1:-1:-1;;;;;33330:16:0;;33326:48;;33355:19;;-1:-1:-1;;;33355:19:0;;;;;;;;;;;33326:48;33389:13;33385:44;;33411:18;;-1:-1:-1;;;33411:18:0;;;;;;;;;;;33385:44;-1:-1:-1;;;;;33780:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33839:49:0;;33780:44;;;;;;;;33839:49;;;;-1:-1:-1;;33780:44:0;;;;;;33839:49;;;;;;;;;;;;;;;;33905:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33955:66:0;;;;-1:-1:-1;;;34005:15:0;33955:66;;;;;;;;;;33905:25;34102:23;;;34146:4;:23;;;;-1:-1:-1;;;;;;34154:13:0;;5591:19;:23;;34154:15;34142:641;;;34190:314;34221:38;;34246:12;;-1:-1:-1;;;;;34221:38:0;;;34238:1;;34221:38;;34238:1;;34221:38;34287:69;34326:1;34330:2;34334:14;;;;;;34350:5;34287:30;:69::i;:::-;34282:174;;34392:40;;-1:-1:-1;;;34392:40:0;;;;;;;;;;;34282:174;34499:3;34483:12;:19;;34190:314;;34585:12;34568:13;;:29;34564:43;;34599:8;;;34564:43;34142:641;;;34648:120;34679:40;;34704:14;;;;;-1:-1:-1;;;;;34679:40:0;;;34696:1;;34679:40;;34696:1;;34679:40;34763:3;34747:12;:19;;34648:120;;34142:641;-1:-1:-1;34797:13:0;:28;34847:60;31432:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;11834:1;11827:14;;;11871:4;11858:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7699:488::-;-1:-1:-1;;;;;7968:15:1;;;7950:34;;8020:15;;8015:2;8000:18;;7993:43;8067:2;8052:18;;8045:34;;;8115:3;8110:2;8095:18;;8088:31;;;7893:4;;8136:45;;8161:19;;8153:6;8136:45;:::i;:::-;8128:53;7699:488;-1:-1:-1;;;;;;7699:488:1:o;8384:219::-;8533:2;8522:9;8515:21;8496:4;8553:44;8593:2;8582:9;8578:18;8570:6;8553:44;:::i;9015:356::-;9217:2;9199:21;;;9236:18;;;9229:30;9295:34;9290:2;9275:18;;9268:62;9362:2;9347:18;;9015:356::o;10144:343::-;10346:2;10328:21;;;10385:2;10365:18;;;10358:30;-1:-1:-1;;;10419:2:1;10404:18;;10397:49;10478:2;10463:18;;10144:343::o;11887:224::-;11926:3;11954:6;11987:2;11984:1;11980:10;12017:2;12014:1;12010:10;12048:3;12044:2;12040:12;12035:3;12032:21;12029:47;;;12056:18;;:::i;:::-;12092:13;;11887:224;-1:-1:-1;;;;11887:224:1:o;12116:128::-;12156:3;12187:1;12183:6;12180:1;12177:13;12174:39;;;12193:18;;:::i;:::-;-1:-1:-1;12229:9:1;;12116:128::o;12249:204::-;12287:3;12323:4;12320:1;12316:12;12355:4;12352:1;12348:12;12390:3;12384:4;12380:14;12375:3;12372:23;12369:49;;;12398:18;;:::i;:::-;12434:13;;12249:204;-1:-1:-1;;;12249:204:1:o;12458:120::-;12498:1;12524;12514:35;;12529:18;;:::i;:::-;-1:-1:-1;12563:9:1;;12458:120::o;12583:168::-;12623:7;12689:1;12685;12681:6;12677:14;12674:1;12671:21;12666:1;12659:9;12652:17;12648:45;12645:71;;;12696:18;;:::i;:::-;-1:-1:-1;12736:9:1;;12583:168::o;12756:125::-;12796:4;12824:1;12821;12818:8;12815:34;;;12829:18;;:::i;:::-;-1:-1:-1;12866:9:1;;12756:125::o;12886:195::-;12924:4;12961;12958:1;12954:12;12993:4;12990:1;12986:12;13018:3;13013;13010:12;13007:38;;;13025:18;;:::i;:::-;13062:13;;;12886:195;-1:-1:-1;;;12886:195:1:o;13086:258::-;13158:1;13168:113;13182:6;13179:1;13176:13;13168:113;;;13258:11;;;13252:18;13239:11;;;13232:39;13204:2;13197:10;13168:113;;;13299:6;13296:1;13293:13;13290:48;;;-1:-1:-1;;13334:1:1;13316:16;;13309:27;13086:258::o;13349:380::-;13428:1;13424:12;;;;13471;;;13492:61;;13546:4;13538:6;13534:17;13524:27;;13492:61;13599:2;13591:6;13588:14;13568:18;13565:38;13562:161;;;13645:10;13640:3;13636:20;13633:1;13626:31;13680:4;13677:1;13670:15;13708:4;13705:1;13698:15;13562:161;;13349:380;;;:::o;13734:135::-;13773:3;-1:-1:-1;;13794:17:1;;13791:43;;;13814:18;;:::i;:::-;-1:-1:-1;13861:1:1;13850:13;;13734:135::o;13874:112::-;13906:1;13932;13922:35;;13937:18;;:::i;:::-;-1:-1:-1;13971:9:1;;13874:112::o;13991:127::-;14052:10;14047:3;14043:20;14040:1;14033:31;14083:4;14080:1;14073:15;14107:4;14104:1;14097:15;14123:127;14184:10;14179:3;14175:20;14172:1;14165:31;14215:4;14212:1;14205:15;14239:4;14236:1;14229:15;14255:127;14316:10;14311:3;14307:20;14304:1;14297:31;14347:4;14344:1;14337:15;14371:4;14368:1;14361:15;14387:127;14448:10;14443:3;14439:20;14436:1;14429:31;14479:4;14476:1;14469:15;14503:4;14500:1;14493:15;14519:131;-1:-1:-1;;;;;;14593:32:1;;14583:43;;14573:71;;14640:1;14637;14630:12
Swarm Source
ipfs://b4870cc4a2a752c38ebd84d6cc0046afb003ec6644fa207c4bc58fd4d0ede26c
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.