ERC-721
Overview
Max Total Supply
37 W3P
Holders
36
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 W3PLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Web3Promoter
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-18 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT // 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/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/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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/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/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/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/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/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Web3Promoter.sol pragma solidity ^0.8.13; contract Web3Promoter is ERC721, Ownable { using Strings for uint256; string _baseTokenURI = "https://web3promoter.mypinata.cloud/ipfs/QmY7nLGZbjqJ4v4G7xrCKTLM4ZfTbQRap4JXPc1yvG5pNC/"; struct Promoter { // General records string twitter; // Rewards uint256 tier; uint256 total_rewards_unclaimed; uint256 total_rewards_claimed; } Promoter[] public promoters; // Total supply uint256 public totalSupply; // Max supply uint256 public maxSupply = 333; // Whitelist mapping(address => uint) public whitelist; // Whitelist Sale Time uint256[2] public whitelistSaleTime = [1650322800, 1650409200]; // Public Sale Time uint256[2] public publicSaleTime; // value of usd token to mint by tier uint[7] public mintValueByTier = [0.00 ether, 0.05 ether, 0.10 ether, 0.20 ether, 1.00 ether, 2.00 ether, 10.00 ether]; // Reward Porcentage by 1000x uint256 public rewardPorcentage = 10; // Maximum of Mint Per Tx uint256 public maxMintsPerTx = 1; constructor() ERC721("Web3Promoter", "W3P"){ // First token index 0 promoters.push(Promoter("web3promoter", 1, 0, 0)); // first 3 of owner promoters.push(Promoter("web3promoter", 1, 0, 0)); promoters.push(Promoter("web3promoter", 1, 0, 0)); promoters.push(Promoter("web3promoter", 1, 0, 0)); _mint(msg.sender, 1); _mint(msg.sender, 2); _mint(msg.sender, 3); totalSupply = 3; } function updateWhitelist(address[] memory _addresses, uint _amount) public onlyOwner{ for(uint256 i = 0; i < _addresses.length; i++){ whitelist[_addresses[i]] = _amount; } } function updateWhitelistSale(uint256 _startTime, uint256 _endTime) public onlyOwner{ whitelistSaleTime[0] = _startTime; whitelistSaleTime[1] = _endTime; } function updatePublicSale(uint256 _startTime, uint256 _endTime) public onlyOwner{ publicSaleTime[0] = _startTime; publicSaleTime[1] = _endTime; } // create a new Promoter function mint(uint256 _amount, string memory _twitter) public payable { // If is Whitelist sale if(whitelistSaleTime[0] <= block.timestamp && whitelistSaleTime[1] > block.timestamp){ require(whitelist[msg.sender] > 0, "You are not on whitelist."); require(whitelist[msg.sender] >= _amount, "You can not mint this amount."); whitelist[msg.sender] -= _amount; }else { require(publicSaleTime[0] <= block.timestamp && publicSaleTime[1] > block.timestamp, "Public sale not started!"); } require(maxMintsPerTx >= _amount, "Over maximum mints per TX!"); require(msg.value == (mintValueByTier[1] * _amount), "Invalid value sent!"); require(maxSupply >= (totalSupply + _amount), "Not enough token remaining!"); for(uint256 i = 0; i < _amount; i++){ // Create a new promoter promoters.push(Promoter(_twitter, 1, 0, 0)); // Mint _mint(msg.sender, totalSupply + 1 + i); } // Update supply totalSupply += _amount; } function upgradeTier(uint256 _tokenId, uint256 _newTier) public payable isOwner(_tokenId) { require(_newTier < mintValueByTier.length, "Tier not exists!"); uint256 _actualTier = promoters[_tokenId].tier; require(_actualTier < _newTier, "Old tier is lower or equal new tier!"); uint256 _upgradeValue = mintValueByTier[_newTier] - mintValueByTier[_actualTier]; require(msg.value == _upgradeValue, "Invalid value sent!"); promoters[_tokenId].tier = _newTier; emit Upgrade(_tokenId, _actualTier, _newTier); } function getPromoterDetails(uint256 _tokenId) public view returns (Promoter memory){ return promoters[_tokenId]; } function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256[] memory _tokenIds; uint256 count = 0; for(uint256 i = 0; i <= promoters.length; i++){ if(_owner == ownerOf(i)){ _tokenIds[count++] = i; } } return _tokenIds; } function setMintValueByTier(uint256 _tier, uint256 _value) public onlyOwner higherOrEqualZero(_value) { mintValueByTier[_tier] = _value; } function setMaxSupply(uint256 _value) public onlyOwner { maxSupply = _value; } function setPromoterTwitter(uint256 _tokenId, string memory _twitter) public { require(ownerOf(_tokenId) == msg.sender, "Only owner can set a new twitter"); promoters[_tokenId].twitter = _twitter; } // Reward Promoters function rewardPromoters(uint256[] memory tokenIds) public onlyOwner{ for(uint256 i = 0; i < tokenIds.length; i++){ promoters[tokenIds[i]].total_rewards_unclaimed += (mintValueByTier[promoters[tokenIds[i]].tier] * rewardPorcentage) / 1000; } emit RewardsReceived(tokenIds); } // Claim Rewards function claimRewards(uint256 _tokenId) public isOwner(_tokenId){ // Get rewards unclaimed uint256 _total_rewards_unclaimed = promoters[_tokenId].total_rewards_unclaimed; require(address(this).balance > _total_rewards_unclaimed, "Balance of contract not enoght!"); if(_total_rewards_unclaimed > 0){ //Update total rewards unclaimed promoters[_tokenId].total_rewards_unclaimed = 0; // Update total rewards claimed promoters[_tokenId].total_rewards_claimed += _total_rewards_unclaimed; payable(msg.sender).transfer(_total_rewards_unclaimed); emit ClaimRewards(_tokenId, _total_rewards_unclaimed); } } // Withdraw function withdraw(uint256 amount) public onlyOwner { require(amount <= address(this).balance, "Amount should be equal or lower of balance."); payable(msg.sender).transfer(amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), "_", promoters[tokenId].tier.toString())) : ""; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } /* * Events */ /* * Modifiers */ // Check owner of this token is the same of msg sender modifier isOwner(uint256 _tokenId) { require(msg.sender == ownerOf(_tokenId), "Must be the owner of this token."); _; } // check if number is higher or equal zero modifier higherOrEqualZero(uint256 _value) { require(_value >= 0, "Value need be higher or equal zero"); _; } /* * Event */ event ClaimRewards(uint256 _address, uint256 _value); event RewardsReceived(uint256[] _tokensIds); event Upgrade(uint256 _tokenId, uint256 _oldTier, uint256 _newTier); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_address","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"ClaimRewards","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":false,"internalType":"uint256[]","name":"_tokensIds","type":"uint256[]"}],"name":"RewardsReceived","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_oldTier","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newTier","type":"uint256"}],"name":"Upgrade","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getPromoterDetails","outputs":[{"components":[{"internalType":"string","name":"twitter","type":"string"},{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"uint256","name":"total_rewards_unclaimed","type":"uint256"},{"internalType":"uint256","name":"total_rewards_claimed","type":"uint256"}],"internalType":"struct Web3Promoter.Promoter","name":"","type":"tuple"}],"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":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_twitter","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintValueByTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"promoters","outputs":[{"internalType":"string","name":"twitter","type":"string"},{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"uint256","name":"total_rewards_unclaimed","type":"uint256"},{"internalType":"uint256","name":"total_rewards_claimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"publicSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPorcentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"rewardPromoters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tier","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMintValueByTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_twitter","type":"string"}],"name":"setPromoterTwitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"updatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"updateWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_newTier","type":"uint256"}],"name":"upgradeTier","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405260586080818152906200326860a03980516200002a91600791602090910190620005b5565b5061014d600a556040805180820190915263625ded70815263625f3ef060208201526200005c90600c90600262000644565b506040805160e0810182526000815266b1a2bc2ec50000602082015267016345785d8a0000918101919091526702c68af0bb1400006060820152670de0b6b3a76400006080820152671bc16d674ec8000060a0820152678ac7230489e8000060c0820152620000d09060109060076200067d565b50600a6017556001601855348015620000e857600080fd5b50604080518082018252600c81526b2bb2b119a83937b6b7ba32b960a11b60208083019182528351808501909452600384526205733560ec1b9084015281519192916200013891600091620005b5565b5080516200014e906001906020840190620005b5565b5050506200016b620001656200041360201b60201c565b62000417565b6040805160c081018252600c608082019081526b3bb2b119b83937b6b7ba32b960a11b60a08301528152600160208083018290526000938301849052606083018490526008805492830181559093528151805192936004909202600080516020620032c08339815191520192620001e69284920190620005b5565b506020828101516001808401919091556040808501516002850155606094850151600390940193909355825160c081018452600c608082019081526b3bb2b119b83937b6b7ba32b960a11b60a083015281528083018290526000938101849052938401839052600880549182018155909252825180516004909302600080516020620032c08339815191520192620002829284920190620005b5565b506020828101516001808401919091556040808501516002850155606094850151600390940193909355825160c081018452600c608082019081526b3bb2b119b83937b6b7ba32b960a11b60a083015281528083018290526000938101849052938401839052600880549182018155909252825180516004909302600080516020620032c083398151915201926200031e9284920190620005b5565b506020828101516001808401919091556040808501516002850155606094850151600390940193909355825160c081018452600c608082019081526b3bb2b119b83937b6b7ba32b960a11b60a083015281528083018290526000938101849052938401839052600880549182018155909252825180516004909302600080516020620032c08339815191520192620003ba9284920190620005b5565b506020820151816001015560408201518160020155606082015181600301555050620003ee3360016200046960201b60201c565b620003fb33600262000469565b6200040833600362000469565b600360095562000733565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004c55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b0316156200052c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620004bc565b6001600160a01b038216600090815260036020526040812080546001929062000557908490620006d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620005c390620006f7565b90600052602060002090601f016020900481019282620005e7576000855562000632565b82601f106200060257805160ff191683800117855562000632565b8280016001018555821562000632579182015b828111156200063257825182559160200191906001019062000615565b5062000640929150620006b9565b5090565b826002810192821562000632579160200282015b8281111562000632578251829063ffffffff1690559160200191906001019062000658565b826007810192821562000632579160200282015b828111156200063257825182906001600160401b031690559160200191906001019062000691565b5b80821115620006405760008155600101620006ba565b60008219821115620006f257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200070c57607f821691505b6020821081036200072d57634e487b7160e01b600052602260045260246000fd5b50919050565b612b2580620007436000396000f3fe6080604052600436106101c05760003560e01c806301ffc9a7146101c557806306fdde03146101fa5780630782eecc1461021c578063081812fc1461023e578063095ea7b3146102765780630962ef79146102965780630caad391146102b657806318160ddd146102e457806323b872dd146102fa5780632a44ccc21461031a5780632e1a7d4d146103305780633f0bee321461035057806342842e0e14610380578063438b6300146103a057806355f804b3146103cd57806360d77722146103ed5780636352211e146104005780636f8b44b01461042057806370a0823114610440578063715018a61461046057806377097fc8146104755780638da5cb5b146104885780638ee158531461049d57806395d89b41146104bd5780639669ae89146104d2578063971d4e2b146104f25780639b19251a14610512578063a22cb4651461053f578063b88d4fde1461055f578063b92907d01461057f578063c462c6591461059f578063c87b56dd146105cc578063cb4b202f146105ec578063d5abeb011461060c578063dc30158b14610622578063e985e9c514610638578063f0fa781214610658578063f2fde38b14610678578063f6a08e0014610698575b600080fd5b3480156101d157600080fd5b506101e56101e0366004612251565b6106b8565b60405190151581526020015b60405180910390f35b34801561020657600080fd5b5061020f61070a565b6040516101f191906122c6565b34801561022857600080fd5b5061023c6102373660046122d9565b61079c565b005b34801561024a57600080fd5b5061025e6102593660046122fb565b6107e4565b6040516001600160a01b0390911681526020016101f1565b34801561028257600080fd5b5061023c610291366004612330565b61086c565b3480156102a257600080fd5b5061023c6102b13660046122fb565b61097c565b3480156102c257600080fd5b506102d66102d13660046122fb565b610b03565b6040519081526020016101f1565b3480156102f057600080fd5b506102d660095481565b34801561030657600080fd5b5061023c61031536600461235a565b610b1a565b34801561032657600080fd5b506102d660175481565b34801561033c57600080fd5b5061023c61034b3660046122fb565b610b4b565b34801561035c57600080fd5b5061037061036b3660046122fb565b610c0f565b6040516101f19493929190612396565b34801561038c57600080fd5b5061023c61039b36600461235a565b610cd7565b3480156103ac57600080fd5b506103c06103bb3660046123c5565b610cf2565b6040516101f191906123e0565b3480156103d957600080fd5b5061023c6103e83660046124e1565b610d69565b61023c6103fb3660046122d9565b610dab565b34801561040c57600080fd5b5061025e61041b3660046122fb565b610f75565b34801561042c57600080fd5b5061023c61043b3660046122fb565b610fec565b34801561044c57600080fd5b506102d661045b3660046123c5565b611020565b34801561046c57600080fd5b5061023c6110a7565b61023c610483366004612515565b6110e2565b34801561049457600080fd5b5061025e6113f7565b3480156104a957600080fd5b5061023c6104b83660046122d9565b611406565b3480156104c957600080fd5b5061020f611451565b3480156104de57600080fd5b5061023c6104ed3660046122d9565b611460565b3480156104fe57600080fd5b5061023c61050d36600461257e565b61149d565b34801561051e57600080fd5b506102d661052d3660046123c5565b600b6020526000908152604090205481565b34801561054b57600080fd5b5061023c61055a366004612613565b6115e3565b34801561056b57600080fd5b5061023c61057a36600461264f565b6115ee565b34801561058b57600080fd5b506102d661059a3660046122fb565b611626565b3480156105ab57600080fd5b506105bf6105ba3660046122fb565b611636565b6040516101f191906126ca565b3480156105d857600080fd5b5061020f6105e73660046122fb565b611744565b3480156105f857600080fd5b5061023c610607366004612710565b61183d565b34801561061857600080fd5b506102d6600a5481565b34801561062e57600080fd5b506102d660185481565b34801561064457600080fd5b506101e56106533660046127ad565b6118ce565b34801561066457600080fd5b506102d66106733660046122fb565b6118fc565b34801561068457600080fd5b5061023c6106933660046123c5565b61190c565b3480156106a457600080fd5b5061023c6106b3366004612515565b6119ac565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610719906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906127e0565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b336107a56113f7565b6001600160a01b0316146107d45760405162461bcd60e51b81526004016107cb9061281a565b60405180910390fd5b600e828155819060015b01555050565b60006107ef82611a44565b6108505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b506000908152600460205260409020546001600160a01b031690565b600061087782610f75565b9050806001600160a01b0316836001600160a01b0316036108e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b336001600160a01b0382161480610900575061090081336118ce565b61096d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107cb565b6109778383611a61565b505050565b8061098681610f75565b6001600160a01b0316336001600160a01b0316146109b65760405162461bcd60e51b81526004016107cb90612865565b6000600883815481106109cb576109cb61284f565b9060005260206000209060040201600201549050804711610a2e5760405162461bcd60e51b815260206004820152601f60248201527f42616c616e6365206f6620636f6e7472616374206e6f7420656e6f676874210060448201526064016107cb565b801561097757600060088481548110610a4957610a4961284f565b9060005260206000209060040201600201819055508060088481548110610a7257610a7261284f565b90600052602060002090600402016003016000828254610a9291906128b0565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610ac4573d6000803e3d6000fd5b5060408051848152602081018390527f8b0944629ca33aba8dd5f33f7f8220efe77a2d5548a1651362c856c5ea586a65910160405180910390a1505050565b600c8160028110610b1357600080fd5b0154905081565b610b243382611acf565b610b405760405162461bcd60e51b81526004016107cb906128c8565b610977838383611b99565b33610b546113f7565b6001600160a01b031614610b7a5760405162461bcd60e51b81526004016107cb9061281a565b47811115610bde5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e742073686f756c6420626520657175616c206f72206c6f7765722060448201526a37b3103130b630b731b29760a91b60648201526084016107cb565b604051339082156108fc029083906000818181858888f19350505050158015610c0b573d6000803e3d6000fd5b5050565b60088181548110610c1f57600080fd5b9060005260206000209060040201600091509050806000018054610c42906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e906127e0565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b5050505050908060010154908060020154908060030154905084565b610977838383604051806020016040528060008152506115ee565b6060806000805b6008548111610d6057610d0b81610f75565b6001600160a01b0316856001600160a01b031603610d4e57808383610d2f81612919565b945081518110610d4157610d4161284f565b6020026020010181815250505b80610d5881612919565b915050610cf9565b50909392505050565b33610d726113f7565b6001600160a01b031614610d985760405162461bcd60e51b81526004016107cb9061281a565b8051610c0b9060079060208401906121a2565b81610db581610f75565b6001600160a01b0316336001600160a01b031614610de55760405162461bcd60e51b81526004016107cb90612865565b60078210610e285760405162461bcd60e51b815260206004820152601060248201526f54696572206e6f74206578697374732160801b60448201526064016107cb565b600060088481548110610e3d57610e3d61284f565b9060005260206000209060040201600101549050828110610eac5760405162461bcd60e51b8152602060048201526024808201527f4f6c642074696572206973206c6f776572206f7220657175616c206e657720746044820152636965722160e01b60648201526084016107cb565b600060108260078110610ec157610ec161284f565b015460108560078110610ed657610ed661284f565b0154610ee29190612932565b9050803414610f035760405162461bcd60e51b81526004016107cb90612949565b8360088681548110610f1757610f1761284f565b6000918252602091829020600160049092020101919091556040805187815291820184905281018590527fcd893c9768071a946e7cfbf126fee7bb123706941a9355f895f728f3d23650fc9060600160405180910390a15050505050565b6000818152600260205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b33610ff56113f7565b6001600160a01b03161461101b5760405162461bcd60e51b81526004016107cb9061281a565b600a55565b60006001600160a01b03821661108b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b336110b06113f7565b6001600160a01b0316146110d65760405162461bcd60e51b81526004016107cb9061281a565b6110e06000611d23565b565b600c5442108015906110f55750600d5442105b156111db57336000908152600b60205260409020546111525760405162461bcd60e51b81526020600482015260196024820152782cb7ba9030b932903737ba1037b7103bb434ba32b634b9ba1760391b60448201526064016107cb565b336000908152600b60205260409020548211156111b15760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e206e6f74206d696e74207468697320616d6f756e742e00000060448201526064016107cb565b336000908152600b6020526040812080548492906111d0908490612932565b909155506112359050565b600e5442108015906111ee5750600f5442105b6112355760405162461bcd60e51b81526020600482015260186024820152775075626c69632073616c65206e6f7420737461727465642160401b60448201526064016107cb565b8160185410156112845760405162461bcd60e51b815260206004820152601a6024820152794f766572206d6178696d756d206d696e7473207065722054582160301b60448201526064016107cb565b601154611292908390612976565b34146112b05760405162461bcd60e51b81526004016107cb90612949565b816009546112be91906128b0565b600a54101561130d5760405162461bcd60e51b815260206004820152601b60248201527a4e6f7420656e6f75676820746f6b656e2072656d61696e696e672160281b60448201526064016107cb565b60005b828110156113db57604080516080810182528381526001602080830182905260009383018490526060830184905260088054928301815590935281518051929360049092027ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3019261138592849201906121a2565b5060208201518160010155604082015181600201556060820151816003015550506113c9338260095460016113ba91906128b0565b6113c491906128b0565b611d75565b806113d381612919565b915050611310565b5081600960008282546113ee91906128b0565b90915550505050565b6006546001600160a01b031690565b3361140f6113f7565b6001600160a01b0316146114355760405162461bcd60e51b81526004016107cb9061281a565b80816010846007811061144a5761144a61284f565b0155505050565b606060018054610719906127e0565b336114696113f7565b6001600160a01b03161461148f5760405162461bcd60e51b81526004016107cb9061281a565b600c828155819060016107de565b336114a66113f7565b6001600160a01b0316146114cc5760405162461bcd60e51b81526004016107cb9061281a565b60005b81518110156115a8576103e8601754601060088585815181106114f4576114f461284f565b60200260200101518154811061150c5761150c61284f565b9060005260206000209060040201600101546007811061152e5761152e61284f565b015461153a9190612976565b61154491906129ab565b60088383815181106115585761155861284f565b6020026020010151815481106115705761157061284f565b9060005260206000209060040201600201600082825461159091906128b0565b909155508190506115a081612919565b9150506114cf565b507f91faf0912c5f63e29843f25a4738f1150b03edb6c70d1560cdc35652077e903e816040516115d891906123e0565b60405180910390a150565b610c0b338383611e95565b6115f83383611acf565b6116145760405162461bcd60e51b81526004016107cb906128c8565b61162084848484611f5f565b50505050565b60108160078110610b1357600080fd5b6116616040518060800160405280606081526020016000815260200160008152602001600081525090565b600882815481106116745761167461284f565b906000526020600020906004020160405180608001604052908160008201805461169d906127e0565b80601f01602080910402602001604051908101604052809291908181526020018280546116c9906127e0565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b5050505050815260200160018201548152602001600282015481526020016003820154815250509050919050565b606061174f82611a44565b6117b35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cb565b60006117bd611f92565b905060008151116117dd5760405180602001604052806000815250611836565b806117e784611fa1565b611814600886815481106117fd576117fd61284f565b906000526020600020906004020160010154611fa1565b604051602001611826939291906129bf565b6040516020818303038152906040525b9392505050565b336118466113f7565b6001600160a01b03161461186c5760405162461bcd60e51b81526004016107cb9061281a565b60005b82518110156109775781600b600085848151811061188f5761188f61284f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806118c690612919565b91505061186f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e8160028110610b1357600080fd5b336119156113f7565b6001600160a01b03161461193b5760405162461bcd60e51b81526004016107cb9061281a565b6001600160a01b0381166119a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6119a981611d23565b50565b336119b683610f75565b6001600160a01b031614611a0c5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e65722063616e207365742061206e6577207477697474657260448201526064016107cb565b8060088381548110611a2057611a2061284f565b906000526020600020906004020160000190805190602001906109779291906121a2565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9682610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ada82611a44565b611b3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b6000611b4683610f75565b9050806001600160a01b0316846001600160a01b03161480611b815750836001600160a01b0316611b76846107e4565b6001600160a01b0316145b80611b915750611b9181856118ce565b949350505050565b826001600160a01b0316611bac82610f75565b6001600160a01b031614611c105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107cb565b6001600160a01b038216611c725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b611c7d600082611a61565b6001600160a01b0383166000908152600360205260408120805460019290611ca6908490612932565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cd49084906128b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612ad083398151915291a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611dcb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b611dd481611a44565b15611e205760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107cb565b6001600160a01b0382166000908152600360205260408120805460019290611e499084906128b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612ad0833981519152908290a45050565b816001600160a01b0316836001600160a01b031603611ef25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107cb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f6a848484611b99565b611f76848484846120a1565b6116205760405162461bcd60e51b81526004016107cb90612a0f565b606060078054610719906127e0565b606081600003611fc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff25780611fdc81612919565b9150611feb9050600a836129ab565b9150611fcc565b6000816001600160401b0381111561200c5761200c612424565b6040519080825280601f01601f191660200182016040528015612036576020820181803683370190505b5090505b8415611b915761204b600183612932565b9150612058600a86612a61565b6120639060306128b0565b60f81b8183815181106120785761207861284f565b60200101906001600160f81b031916908160001a90535061209a600a866129ab565b945061203a565b60006001600160a01b0384163b1561219757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120e5903390899088908890600401612a75565b6020604051808303816000875af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612ab2565b60015b61217d573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516000036121755760405162461bcd60e51b81526004016107cb90612a0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b91565b506001949350505050565b8280546121ae906127e0565b90600052602060002090601f0160209004810192826121d05760008555612216565b82601f106121e957805160ff1916838001178555612216565b82800160010185558215612216579182015b828111156122165782518255916020019190600101906121fb565b50612222929150612226565b5090565b5b808211156122225760008155600101612227565b6001600160e01b0319811681146119a957600080fd5b60006020828403121561226357600080fd5b81356118368161223b565b60005b83811015612289578181015183820152602001612271565b838111156116205750506000910152565b600081518084526122b281602086016020860161226e565b601f01601f19169290920160200192915050565b602081526000611836602083018461229a565b600080604083850312156122ec57600080fd5b50508035926020909101359150565b60006020828403121561230d57600080fd5b5035919050565b80356001600160a01b038116811461232b57600080fd5b919050565b6000806040838503121561234357600080fd5b61234c83612314565b946020939093013593505050565b60008060006060848603121561236f57600080fd5b61237884612314565b925061238660208501612314565b9150604084013590509250925092565b6080815260006123a9608083018761229a565b6020830195909552506040810192909252606090910152919050565b6000602082840312156123d757600080fd5b61183682612314565b6020808252825182820181905260009190848201906040850190845b81811015612418578351835292840192918401916001016123fc565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561246257612462612424565b604052919050565b60006001600160401b0383111561248357612483612424565b612496601f8401601f191660200161243a565b90508281528383830111156124aa57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126124d257600080fd5b6118368383356020850161246a565b6000602082840312156124f357600080fd5b81356001600160401b0381111561250957600080fd5b611b91848285016124c1565b6000806040838503121561252857600080fd5b8235915060208301356001600160401b0381111561254557600080fd5b612551858286016124c1565b9150509250929050565b60006001600160401b0382111561257457612574612424565b5060051b60200190565b6000602080838503121561259157600080fd5b82356001600160401b038111156125a757600080fd5b8301601f810185136125b857600080fd5b80356125cb6125c68261255b565b61243a565b81815260059190911b820183019083810190878311156125ea57600080fd5b928401925b82841015612608578335825292840192908401906125ef565b979650505050505050565b6000806040838503121561262657600080fd5b61262f83612314565b91506020830135801515811461264457600080fd5b809150509250929050565b6000806000806080858703121561266557600080fd5b61266e85612314565b935061267c60208601612314565b92506040850135915060608501356001600160401b0381111561269e57600080fd5b8501601f810187136126af57600080fd5b6126be8782356020840161246a565b91505092959194509250565b6020815260008251608060208401526126e660a084018261229a565b90506020840151604084015260408401516060840152606084015160808401528091505092915050565b6000806040838503121561272357600080fd5b82356001600160401b0381111561273957600080fd5b8301601f8101851361274a57600080fd5b8035602061275a6125c68361255b565b82815260059290921b8301810191818101908884111561277957600080fd5b938201935b8385101561279e5761278f85612314565b8252938201939082019061277e565b98969091013596505050505050565b600080604083850312156127c057600080fd5b6127c983612314565b91506127d760208401612314565b90509250929050565b600181811c908216806127f457607f821691505b60208210810361281457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4d75737420626520746865206f776e6572206f66207468697320746f6b656e2e604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128c3576128c361289a565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006001820161292b5761292b61289a565b5060010190565b6000828210156129445761294461289a565b500390565b602080825260139082015272496e76616c69642076616c75652073656e742160681b604082015260600190565b60008160001904831182151516156129905761299061289a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129ba576129ba612995565b500490565b600084516129d181846020890161226e565b8451908301906129e581836020890161226e565b605f60f81b91019081528351612a0281600184016020880161226e565b0160010195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a7057612a70612995565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa89083018461229a565b9695505050505050565b600060208284031215612ac457600080fd5b81516118368161223b56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205c8687f0bd1ff4a28c3cb90a4ab8937dd3524b46a8440b38884ca5cb54cc75de64736f6c634300080d003368747470733a2f2f7765623370726f6d6f7465722e6d7970696e6174612e636c6f75642f697066732f516d59376e4c475a626a714a34763447377872434b544c4d345a66546251526170344a5850633179764735704e432ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3
Deployed Bytecode
0x6080604052600436106101c05760003560e01c806301ffc9a7146101c557806306fdde03146101fa5780630782eecc1461021c578063081812fc1461023e578063095ea7b3146102765780630962ef79146102965780630caad391146102b657806318160ddd146102e457806323b872dd146102fa5780632a44ccc21461031a5780632e1a7d4d146103305780633f0bee321461035057806342842e0e14610380578063438b6300146103a057806355f804b3146103cd57806360d77722146103ed5780636352211e146104005780636f8b44b01461042057806370a0823114610440578063715018a61461046057806377097fc8146104755780638da5cb5b146104885780638ee158531461049d57806395d89b41146104bd5780639669ae89146104d2578063971d4e2b146104f25780639b19251a14610512578063a22cb4651461053f578063b88d4fde1461055f578063b92907d01461057f578063c462c6591461059f578063c87b56dd146105cc578063cb4b202f146105ec578063d5abeb011461060c578063dc30158b14610622578063e985e9c514610638578063f0fa781214610658578063f2fde38b14610678578063f6a08e0014610698575b600080fd5b3480156101d157600080fd5b506101e56101e0366004612251565b6106b8565b60405190151581526020015b60405180910390f35b34801561020657600080fd5b5061020f61070a565b6040516101f191906122c6565b34801561022857600080fd5b5061023c6102373660046122d9565b61079c565b005b34801561024a57600080fd5b5061025e6102593660046122fb565b6107e4565b6040516001600160a01b0390911681526020016101f1565b34801561028257600080fd5b5061023c610291366004612330565b61086c565b3480156102a257600080fd5b5061023c6102b13660046122fb565b61097c565b3480156102c257600080fd5b506102d66102d13660046122fb565b610b03565b6040519081526020016101f1565b3480156102f057600080fd5b506102d660095481565b34801561030657600080fd5b5061023c61031536600461235a565b610b1a565b34801561032657600080fd5b506102d660175481565b34801561033c57600080fd5b5061023c61034b3660046122fb565b610b4b565b34801561035c57600080fd5b5061037061036b3660046122fb565b610c0f565b6040516101f19493929190612396565b34801561038c57600080fd5b5061023c61039b36600461235a565b610cd7565b3480156103ac57600080fd5b506103c06103bb3660046123c5565b610cf2565b6040516101f191906123e0565b3480156103d957600080fd5b5061023c6103e83660046124e1565b610d69565b61023c6103fb3660046122d9565b610dab565b34801561040c57600080fd5b5061025e61041b3660046122fb565b610f75565b34801561042c57600080fd5b5061023c61043b3660046122fb565b610fec565b34801561044c57600080fd5b506102d661045b3660046123c5565b611020565b34801561046c57600080fd5b5061023c6110a7565b61023c610483366004612515565b6110e2565b34801561049457600080fd5b5061025e6113f7565b3480156104a957600080fd5b5061023c6104b83660046122d9565b611406565b3480156104c957600080fd5b5061020f611451565b3480156104de57600080fd5b5061023c6104ed3660046122d9565b611460565b3480156104fe57600080fd5b5061023c61050d36600461257e565b61149d565b34801561051e57600080fd5b506102d661052d3660046123c5565b600b6020526000908152604090205481565b34801561054b57600080fd5b5061023c61055a366004612613565b6115e3565b34801561056b57600080fd5b5061023c61057a36600461264f565b6115ee565b34801561058b57600080fd5b506102d661059a3660046122fb565b611626565b3480156105ab57600080fd5b506105bf6105ba3660046122fb565b611636565b6040516101f191906126ca565b3480156105d857600080fd5b5061020f6105e73660046122fb565b611744565b3480156105f857600080fd5b5061023c610607366004612710565b61183d565b34801561061857600080fd5b506102d6600a5481565b34801561062e57600080fd5b506102d660185481565b34801561064457600080fd5b506101e56106533660046127ad565b6118ce565b34801561066457600080fd5b506102d66106733660046122fb565b6118fc565b34801561068457600080fd5b5061023c6106933660046123c5565b61190c565b3480156106a457600080fd5b5061023c6106b3366004612515565b6119ac565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610719906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906127e0565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b336107a56113f7565b6001600160a01b0316146107d45760405162461bcd60e51b81526004016107cb9061281a565b60405180910390fd5b600e828155819060015b01555050565b60006107ef82611a44565b6108505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b506000908152600460205260409020546001600160a01b031690565b600061087782610f75565b9050806001600160a01b0316836001600160a01b0316036108e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b336001600160a01b0382161480610900575061090081336118ce565b61096d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107cb565b6109778383611a61565b505050565b8061098681610f75565b6001600160a01b0316336001600160a01b0316146109b65760405162461bcd60e51b81526004016107cb90612865565b6000600883815481106109cb576109cb61284f565b9060005260206000209060040201600201549050804711610a2e5760405162461bcd60e51b815260206004820152601f60248201527f42616c616e6365206f6620636f6e7472616374206e6f7420656e6f676874210060448201526064016107cb565b801561097757600060088481548110610a4957610a4961284f565b9060005260206000209060040201600201819055508060088481548110610a7257610a7261284f565b90600052602060002090600402016003016000828254610a9291906128b0565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610ac4573d6000803e3d6000fd5b5060408051848152602081018390527f8b0944629ca33aba8dd5f33f7f8220efe77a2d5548a1651362c856c5ea586a65910160405180910390a1505050565b600c8160028110610b1357600080fd5b0154905081565b610b243382611acf565b610b405760405162461bcd60e51b81526004016107cb906128c8565b610977838383611b99565b33610b546113f7565b6001600160a01b031614610b7a5760405162461bcd60e51b81526004016107cb9061281a565b47811115610bde5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e742073686f756c6420626520657175616c206f72206c6f7765722060448201526a37b3103130b630b731b29760a91b60648201526084016107cb565b604051339082156108fc029083906000818181858888f19350505050158015610c0b573d6000803e3d6000fd5b5050565b60088181548110610c1f57600080fd5b9060005260206000209060040201600091509050806000018054610c42906127e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e906127e0565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b5050505050908060010154908060020154908060030154905084565b610977838383604051806020016040528060008152506115ee565b6060806000805b6008548111610d6057610d0b81610f75565b6001600160a01b0316856001600160a01b031603610d4e57808383610d2f81612919565b945081518110610d4157610d4161284f565b6020026020010181815250505b80610d5881612919565b915050610cf9565b50909392505050565b33610d726113f7565b6001600160a01b031614610d985760405162461bcd60e51b81526004016107cb9061281a565b8051610c0b9060079060208401906121a2565b81610db581610f75565b6001600160a01b0316336001600160a01b031614610de55760405162461bcd60e51b81526004016107cb90612865565b60078210610e285760405162461bcd60e51b815260206004820152601060248201526f54696572206e6f74206578697374732160801b60448201526064016107cb565b600060088481548110610e3d57610e3d61284f565b9060005260206000209060040201600101549050828110610eac5760405162461bcd60e51b8152602060048201526024808201527f4f6c642074696572206973206c6f776572206f7220657175616c206e657720746044820152636965722160e01b60648201526084016107cb565b600060108260078110610ec157610ec161284f565b015460108560078110610ed657610ed661284f565b0154610ee29190612932565b9050803414610f035760405162461bcd60e51b81526004016107cb90612949565b8360088681548110610f1757610f1761284f565b6000918252602091829020600160049092020101919091556040805187815291820184905281018590527fcd893c9768071a946e7cfbf126fee7bb123706941a9355f895f728f3d23650fc9060600160405180910390a15050505050565b6000818152600260205260408120546001600160a01b0316806107045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b33610ff56113f7565b6001600160a01b03161461101b5760405162461bcd60e51b81526004016107cb9061281a565b600a55565b60006001600160a01b03821661108b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b336110b06113f7565b6001600160a01b0316146110d65760405162461bcd60e51b81526004016107cb9061281a565b6110e06000611d23565b565b600c5442108015906110f55750600d5442105b156111db57336000908152600b60205260409020546111525760405162461bcd60e51b81526020600482015260196024820152782cb7ba9030b932903737ba1037b7103bb434ba32b634b9ba1760391b60448201526064016107cb565b336000908152600b60205260409020548211156111b15760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e206e6f74206d696e74207468697320616d6f756e742e00000060448201526064016107cb565b336000908152600b6020526040812080548492906111d0908490612932565b909155506112359050565b600e5442108015906111ee5750600f5442105b6112355760405162461bcd60e51b81526020600482015260186024820152775075626c69632073616c65206e6f7420737461727465642160401b60448201526064016107cb565b8160185410156112845760405162461bcd60e51b815260206004820152601a6024820152794f766572206d6178696d756d206d696e7473207065722054582160301b60448201526064016107cb565b601154611292908390612976565b34146112b05760405162461bcd60e51b81526004016107cb90612949565b816009546112be91906128b0565b600a54101561130d5760405162461bcd60e51b815260206004820152601b60248201527a4e6f7420656e6f75676820746f6b656e2072656d61696e696e672160281b60448201526064016107cb565b60005b828110156113db57604080516080810182528381526001602080830182905260009383018490526060830184905260088054928301815590935281518051929360049092027ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3019261138592849201906121a2565b5060208201518160010155604082015181600201556060820151816003015550506113c9338260095460016113ba91906128b0565b6113c491906128b0565b611d75565b806113d381612919565b915050611310565b5081600960008282546113ee91906128b0565b90915550505050565b6006546001600160a01b031690565b3361140f6113f7565b6001600160a01b0316146114355760405162461bcd60e51b81526004016107cb9061281a565b80816010846007811061144a5761144a61284f565b0155505050565b606060018054610719906127e0565b336114696113f7565b6001600160a01b03161461148f5760405162461bcd60e51b81526004016107cb9061281a565b600c828155819060016107de565b336114a66113f7565b6001600160a01b0316146114cc5760405162461bcd60e51b81526004016107cb9061281a565b60005b81518110156115a8576103e8601754601060088585815181106114f4576114f461284f565b60200260200101518154811061150c5761150c61284f565b9060005260206000209060040201600101546007811061152e5761152e61284f565b015461153a9190612976565b61154491906129ab565b60088383815181106115585761155861284f565b6020026020010151815481106115705761157061284f565b9060005260206000209060040201600201600082825461159091906128b0565b909155508190506115a081612919565b9150506114cf565b507f91faf0912c5f63e29843f25a4738f1150b03edb6c70d1560cdc35652077e903e816040516115d891906123e0565b60405180910390a150565b610c0b338383611e95565b6115f83383611acf565b6116145760405162461bcd60e51b81526004016107cb906128c8565b61162084848484611f5f565b50505050565b60108160078110610b1357600080fd5b6116616040518060800160405280606081526020016000815260200160008152602001600081525090565b600882815481106116745761167461284f565b906000526020600020906004020160405180608001604052908160008201805461169d906127e0565b80601f01602080910402602001604051908101604052809291908181526020018280546116c9906127e0565b80156117165780601f106116eb57610100808354040283529160200191611716565b820191906000526020600020905b8154815290600101906020018083116116f957829003601f168201915b5050505050815260200160018201548152602001600282015481526020016003820154815250509050919050565b606061174f82611a44565b6117b35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107cb565b60006117bd611f92565b905060008151116117dd5760405180602001604052806000815250611836565b806117e784611fa1565b611814600886815481106117fd576117fd61284f565b906000526020600020906004020160010154611fa1565b604051602001611826939291906129bf565b6040516020818303038152906040525b9392505050565b336118466113f7565b6001600160a01b03161461186c5760405162461bcd60e51b81526004016107cb9061281a565b60005b82518110156109775781600b600085848151811061188f5761188f61284f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806118c690612919565b91505061186f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600e8160028110610b1357600080fd5b336119156113f7565b6001600160a01b03161461193b5760405162461bcd60e51b81526004016107cb9061281a565b6001600160a01b0381166119a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6119a981611d23565b50565b336119b683610f75565b6001600160a01b031614611a0c5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e65722063616e207365742061206e6577207477697474657260448201526064016107cb565b8060088381548110611a2057611a2061284f565b906000526020600020906004020160000190805190602001906109779291906121a2565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a9682610f75565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ada82611a44565b611b3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b6000611b4683610f75565b9050806001600160a01b0316846001600160a01b03161480611b815750836001600160a01b0316611b76846107e4565b6001600160a01b0316145b80611b915750611b9181856118ce565b949350505050565b826001600160a01b0316611bac82610f75565b6001600160a01b031614611c105760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107cb565b6001600160a01b038216611c725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b611c7d600082611a61565b6001600160a01b0383166000908152600360205260408120805460019290611ca6908490612932565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cd49084906128b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612ad083398151915291a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611dcb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b611dd481611a44565b15611e205760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107cb565b6001600160a01b0382166000908152600360205260408120805460019290611e499084906128b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612ad0833981519152908290a45050565b816001600160a01b0316836001600160a01b031603611ef25760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107cb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f6a848484611b99565b611f76848484846120a1565b6116205760405162461bcd60e51b81526004016107cb90612a0f565b606060078054610719906127e0565b606081600003611fc85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ff25780611fdc81612919565b9150611feb9050600a836129ab565b9150611fcc565b6000816001600160401b0381111561200c5761200c612424565b6040519080825280601f01601f191660200182016040528015612036576020820181803683370190505b5090505b8415611b915761204b600183612932565b9150612058600a86612a61565b6120639060306128b0565b60f81b8183815181106120785761207861284f565b60200101906001600160f81b031916908160001a90535061209a600a866129ab565b945061203a565b60006001600160a01b0384163b1561219757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120e5903390899088908890600401612a75565b6020604051808303816000875af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612ab2565b60015b61217d573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516000036121755760405162461bcd60e51b81526004016107cb90612a0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b91565b506001949350505050565b8280546121ae906127e0565b90600052602060002090601f0160209004810192826121d05760008555612216565b82601f106121e957805160ff1916838001178555612216565b82800160010185558215612216579182015b828111156122165782518255916020019190600101906121fb565b50612222929150612226565b5090565b5b808211156122225760008155600101612227565b6001600160e01b0319811681146119a957600080fd5b60006020828403121561226357600080fd5b81356118368161223b565b60005b83811015612289578181015183820152602001612271565b838111156116205750506000910152565b600081518084526122b281602086016020860161226e565b601f01601f19169290920160200192915050565b602081526000611836602083018461229a565b600080604083850312156122ec57600080fd5b50508035926020909101359150565b60006020828403121561230d57600080fd5b5035919050565b80356001600160a01b038116811461232b57600080fd5b919050565b6000806040838503121561234357600080fd5b61234c83612314565b946020939093013593505050565b60008060006060848603121561236f57600080fd5b61237884612314565b925061238660208501612314565b9150604084013590509250925092565b6080815260006123a9608083018761229a565b6020830195909552506040810192909252606090910152919050565b6000602082840312156123d757600080fd5b61183682612314565b6020808252825182820181905260009190848201906040850190845b81811015612418578351835292840192918401916001016123fc565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561246257612462612424565b604052919050565b60006001600160401b0383111561248357612483612424565b612496601f8401601f191660200161243a565b90508281528383830111156124aa57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126124d257600080fd5b6118368383356020850161246a565b6000602082840312156124f357600080fd5b81356001600160401b0381111561250957600080fd5b611b91848285016124c1565b6000806040838503121561252857600080fd5b8235915060208301356001600160401b0381111561254557600080fd5b612551858286016124c1565b9150509250929050565b60006001600160401b0382111561257457612574612424565b5060051b60200190565b6000602080838503121561259157600080fd5b82356001600160401b038111156125a757600080fd5b8301601f810185136125b857600080fd5b80356125cb6125c68261255b565b61243a565b81815260059190911b820183019083810190878311156125ea57600080fd5b928401925b82841015612608578335825292840192908401906125ef565b979650505050505050565b6000806040838503121561262657600080fd5b61262f83612314565b91506020830135801515811461264457600080fd5b809150509250929050565b6000806000806080858703121561266557600080fd5b61266e85612314565b935061267c60208601612314565b92506040850135915060608501356001600160401b0381111561269e57600080fd5b8501601f810187136126af57600080fd5b6126be8782356020840161246a565b91505092959194509250565b6020815260008251608060208401526126e660a084018261229a565b90506020840151604084015260408401516060840152606084015160808401528091505092915050565b6000806040838503121561272357600080fd5b82356001600160401b0381111561273957600080fd5b8301601f8101851361274a57600080fd5b8035602061275a6125c68361255b565b82815260059290921b8301810191818101908884111561277957600080fd5b938201935b8385101561279e5761278f85612314565b8252938201939082019061277e565b98969091013596505050505050565b600080604083850312156127c057600080fd5b6127c983612314565b91506127d760208401612314565b90509250929050565b600181811c908216806127f457607f821691505b60208210810361281457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4d75737420626520746865206f776e6572206f66207468697320746f6b656e2e604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128c3576128c361289a565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006001820161292b5761292b61289a565b5060010190565b6000828210156129445761294461289a565b500390565b602080825260139082015272496e76616c69642076616c75652073656e742160681b604082015260600190565b60008160001904831182151516156129905761299061289a565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826129ba576129ba612995565b500490565b600084516129d181846020890161226e565b8451908301906129e581836020890161226e565b605f60f81b91019081528351612a0281600184016020880161226e565b0160010195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612a7057612a70612995565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa89083018461229a565b9695505050505050565b600060208284031215612ac457600080fd5b81516118368161223b56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205c8687f0bd1ff4a28c3cb90a4ab8937dd3524b46a8440b38884ca5cb54cc75de64736f6c634300080d0033
Deployed Bytecode Sourcemap
37295:6957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21586:305;;;;;;;;;;-1:-1:-1;21586:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21586:305:0;;;;;;;;22531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39151:158::-;;;;;;;;;;-1:-1:-1;39151:158:0;;;;;:::i;:::-;;:::i;:::-;;24090:221;;;;;;;;;;-1:-1:-1;24090:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1945:32:1;;;1927:51;;1915:2;1900:18;24090:221:0;1781:203:1;23613:411:0;;;;;;;;;;-1:-1:-1;23613:411:0;;;;;:::i;:::-;;:::i;42151:676::-;;;;;;;;;;-1:-1:-1;42151:676:0;;;;;:::i;:::-;;:::i;37897:62::-;;;;;;;;;;-1:-1:-1;37897:62:0;;;;;:::i;:::-;;:::i;:::-;;;2572:25:1;;;2560:2;2545:18;37897:62:0;2426:177:1;37720:26:0;;;;;;;;;;;;;;;;24840:339;;;;;;;;;;-1:-1:-1;24840:339:0;;;;;:::i;:::-;;:::i;38225:36::-;;;;;;;;;;;;;;;;42847:194;;;;;;;;;;-1:-1:-1;42847:194:0;;;;;:::i;:::-;;:::i;37667:27::-;;;;;;;;;;-1:-1:-1;37667:27:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;25250:185::-;;;;;;;;;;-1:-1:-1;25250:185:0;;;;;:::i;:::-;;:::i;41062:284::-;;;;;;;;;;-1:-1:-1;41062:284:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43523:94::-;;;;;;;;;;-1:-1:-1;43523:94:0;;;;;:::i;:::-;;:::i;40379:550::-;;;;;;:::i;:::-;;:::i;22225:239::-;;;;;;;;;;-1:-1:-1;22225:239:0;;;;;:::i;:::-;;:::i;41504:86::-;;;;;;;;;;-1:-1:-1;41504:86:0;;;;;:::i;:::-;;:::i;21955:208::-;;;;;;;;;;-1:-1:-1;21955:208:0;;;;;:::i;:::-;;:::i;36409:103::-;;;;;;;;;;;;;:::i;39343:1030::-;;;;;;:::i;:::-;;:::i;35758:87::-;;;;;;;;;;;;;:::i;41352:146::-;;;;;;;;;;-1:-1:-1;41352:146:0;;;;;:::i;:::-;;:::i;22700:104::-;;;;;;;;;;;;;:::i;38978:167::-;;;;;;;;;;-1:-1:-1;38978:167:0;;;;;:::i;:::-;;:::i;41834:292::-;;;;;;;;;;-1:-1:-1;41834:292:0;;;;;:::i;:::-;;:::i;37823:41::-;;;;;;;;;;-1:-1:-1;37823:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;24383:155;;;;;;;;;;-1:-1:-1;24383:155:0;;;;;:::i;:::-;;:::i;25506:328::-;;;;;;;;;;-1:-1:-1;25506:328:0;;;;;:::i;:::-;;:::i;38069:118::-;;;;;;;;;;-1:-1:-1;38069:118:0;;;;;:::i;:::-;;:::i;40935:122::-;;;;;;;;;;-1:-1:-1;40935:122:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43047:361::-;;;;;;;;;;-1:-1:-1;43047:361:0;;;;;:::i;:::-;;:::i;38773:199::-;;;;;;;;;;-1:-1:-1;38773:199:0;;;;;:::i;:::-;;:::i;37770:30::-;;;;;;;;;;;;;;;;38297:32;;;;;;;;;;;;;;;;24609:164;;;;;;;;;;-1:-1:-1;24609:164:0;;;;;:::i;:::-;;:::i;37989:32::-;;;;;;;;;;-1:-1:-1;37989:32:0;;;;;:::i;:::-;;:::i;36667:201::-;;;;;;;;;;-1:-1:-1;36667:201:0;;;;;:::i;:::-;;:::i;41596:211::-;;;;;;;;;;-1:-1:-1;41596:211:0;;;;;:::i;:::-;;:::i;21586:305::-;21688:4;-1:-1:-1;;;;;;21725:40:0;;-1:-1:-1;;;21725:40:0;;:105;;-1:-1:-1;;;;;;;21782:48:0;;-1:-1:-1;;;21782:48:0;21725:105;:158;;;-1:-1:-1;;;;;;;;;;20128:40:0;;;21847:36;21705:178;21586:305;-1:-1:-1;;21586:305:0:o;22531:100::-;22585:13;22618:5;22611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22531:100;:::o;39151:158::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;;;;;;;;;39238:14:::1;:30:::0;;;39295:8;;39290:1:::1;39275:17;;:28:::0;-1:-1:-1;;39151:158:0:o;24090:221::-;24166:7;24194:16;24202:7;24194;:16::i;:::-;24186:73;;;;-1:-1:-1;;;24186:73:0;;10962:2:1;24186:73:0;;;10944:21:1;11001:2;10981:18;;;10974:30;11040:34;11020:18;;;11013:62;-1:-1:-1;;;11091:18:1;;;11084:42;11143:19;;24186:73:0;10760:408:1;24186:73:0;-1:-1:-1;24279:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24279:24:0;;24090:221::o;23613:411::-;23694:13;23710:23;23725:7;23710:14;:23::i;:::-;23694:39;;23758:5;-1:-1:-1;;;;;23752:11:0;:2;-1:-1:-1;;;;;23752:11:0;;23744:57;;;;-1:-1:-1;;;23744:57:0;;11375:2:1;23744:57:0;;;11357:21:1;11414:2;11394:18;;;11387:30;11453:34;11433:18;;;11426:62;-1:-1:-1;;;11504:18:1;;;11497:31;11545:19;;23744:57:0;11173:397:1;23744:57:0;16902:10;-1:-1:-1;;;;;23836:21:0;;;;:62;;-1:-1:-1;23861:37:0;23878:5;16902:10;24609:164;:::i;23861:37::-;23814:168;;;;-1:-1:-1;;;23814:168:0;;11777:2:1;23814:168:0;;;11759:21:1;11816:2;11796:18;;;11789:30;11855:34;11835:18;;;11828:62;-1:-1:-1;;;11906:18:1;;;11899:54;11970:19;;23814:168:0;11575:420:1;23814:168:0;23995:21;24004:2;24008:7;23995:8;:21::i;:::-;23683:341;23613:411;;:::o;42151:676::-;42206:8;43804:17;43812:8;43804:7;:17::i;:::-;-1:-1:-1;;;;;43790:31:0;:10;-1:-1:-1;;;;;43790:31:0;;43782:76;;;;-1:-1:-1;;;43782:76:0;;;;;;;:::i;:::-;42252:32:::1;42287:9;42297:8;42287:19;;;;;;;;:::i;:::-;;;;;;;;;;;:43;;;42252:78;;42371:24;42347:21;:48;42339:92;;;::::0;-1:-1:-1;;;42339:92:0;;12563:2:1;42339:92:0::1;::::0;::::1;12545:21:1::0;12602:2;12582:18;;;12575:30;12641:33;12621:18;;;12614:61;12692:18;;42339:92:0::1;12361:355:1::0;42339:92:0::1;42443:28:::0;;42440:382:::1;;42567:1;42521:9;42531:8;42521:19;;;;;;;;:::i;:::-;;;;;;;;;;;:43;;:47;;;;42663:24;42618:9;42628:8;42618:19;;;;;;;;:::i;:::-;;;;;;;;;;;:41;;;:69;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;42698:54:0::1;::::0;42706:10:::1;::::0;42698:54;::::1;;;::::0;42727:24;;42698:54:::1;::::0;;;42727:24;42706:10;42698:54;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42766:48:0::1;::::0;;13160:25:1;;;13216:2;13201:18;;13194:34;;;42766:48:0::1;::::0;13133:18:1;42766:48:0::1;;;;;;;42215:612;42151:676:::0;;:::o;37897:62::-;;;;;;;;;;;;;;;-1:-1:-1;37897:62:0;:::o;24840:339::-;25035:41;16902:10;25068:7;25035:18;:41::i;:::-;25027:103;;;;-1:-1:-1;;;25027:103:0;;;;;;;:::i;:::-;25143:28;25153:4;25159:2;25163:7;25143:9;:28::i;42847:194::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;42923:21:::1;42913:6;:31;;42905:87;;;::::0;-1:-1:-1;;;42905:87:0;;13859:2:1;42905:87:0::1;::::0;::::1;13841:21:1::0;13898:2;13878:18;;;13871:30;13937:34;13917:18;;;13910:62;-1:-1:-1;;;13988:18:1;;;13981:41;14039:19;;42905:87:0::1;13657:407:1::0;42905:87:0::1;42999:36;::::0;43007:10:::1;::::0;42999:36;::::1;;;::::0;43028:6;;42999:36:::1;::::0;;;43028:6;43007:10;42999:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42847:194:::0;:::o;37667:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25250:185::-;25388:39;25405:4;25411:2;25415:7;25388:39;;;;;;;;;;;;:16;:39::i;41062:284::-;41121:16;41144:26;41177:13;41205:9;41201:118;41225:9;:16;41220:21;;41201:118;;41266:10;41274:1;41266:7;:10::i;:::-;-1:-1:-1;;;;;41256:20:0;:6;-1:-1:-1;;;;;41256:20:0;;41253:61;;41305:1;41284:9;41294:7;;;;:::i;:::-;;;41284:18;;;;;;;;:::i;:::-;;;;;;:22;;;;;41253:61;41243:3;;;;:::i;:::-;;;;41201:118;;;-1:-1:-1;41332:9:0;;41062:284;-1:-1:-1;;;41062:284:0:o;43523:94::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;43589:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;40379:550::-:0;40459:8;43804:17;43812:8;43804:7;:17::i;:::-;-1:-1:-1;;;;;43790:31:0;:10;-1:-1:-1;;;;;43790:31:0;;43782:76;;;;-1:-1:-1;;;43782:76:0;;;;;;;:::i;:::-;40495:22:::1;40484:8;:33;40476:62;;;::::0;-1:-1:-1;;;40476:62:0;;14411:2:1;40476:62:0::1;::::0;::::1;14393:21:1::0;14450:2;14430:18;;;14423:30;-1:-1:-1;;;14469:18:1;;;14462:46;14525:18;;40476:62:0::1;14209:340:1::0;40476:62:0::1;40547:19;40569:9;40579:8;40569:19;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;40547:46;;40622:8;40608:11;:22;40600:71;;;::::0;-1:-1:-1;;;40600:71:0;;14756:2:1;40600:71:0::1;::::0;::::1;14738:21:1::0;14795:2;14775:18;;;14768:30;14834:34;14814:18;;;14807:62;-1:-1:-1;;;14885:18:1;;;14878:34;14929:19;;40600:71:0::1;14554:400:1::0;40600:71:0::1;40680:21;40732:15;40748:11;40732:28;;;;;;;:::i;:::-;;;40704:15;40720:8;40704:25;;;;;;;:::i;:::-;;;:56;;;;:::i;:::-;40680:80;;40788:13;40775:9;:26;40767:58;;;;-1:-1:-1::0;;;40767:58:0::1;;;;;;;:::i;:::-;40861:8;40834:9;40844:8;40834:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;:24:::1;:19;::::0;;::::1;;:24;:35:::0;;;;40883:40:::1;::::0;;15639:25:1;;;15680:18;;;15673:34;;;15723:18;;15716:34;;;40883:40:0::1;::::0;15627:2:1;15612:18;40883:40:0::1;;;;;;;40469:460;;40379:550:::0;;;:::o;22225:239::-;22297:7;22333:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22333:16:0;;22360:73;;;;-1:-1:-1;;;22360:73:0;;15963:2:1;22360:73:0;;;15945:21:1;16002:2;15982:18;;;15975:30;16041:34;16021:18;;;16014:62;-1:-1:-1;;;16092:18:1;;;16085:39;16141:19;;22360:73:0;15761:405:1;41504:86:0;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;41566:9:::1;:18:::0;41504:86::o;21955:208::-;22027:7;-1:-1:-1;;;;;22055:19:0;;22047:74;;;;-1:-1:-1;;;22047:74:0;;16373:2:1;22047:74:0;;;16355:21:1;16412:2;16392:18;;;16385:30;16451:34;16431:18;;;16424:62;-1:-1:-1;;;16502:18:1;;;16495:40;16552:19;;22047:74:0;16171:406:1;22047:74:0;-1:-1:-1;;;;;;22139:16:0;;;;;:9;:16;;;;;;;21955:208::o;36409:103::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;36474:30:::1;36501:1;36474:18;:30::i;:::-;36409:103::o:0;39343:1030::-;39452:17;:20;39476:15;-1:-1:-1;39452:39:0;;;:81;;-1:-1:-1;39495:20:0;;39518:15;-1:-1:-1;39452:81:0;39449:425;;;39561:10;39575:1;39551:21;;;:9;:21;;;;;;39543:63;;;;-1:-1:-1;;;39543:63:0;;16784:2:1;39543:63:0;;;16766:21:1;16823:2;16803:18;;;16796:30;-1:-1:-1;;;16842:18:1;;;16835:55;16907:18;;39543:63:0;16582:349:1;39543:63:0;39633:10;39623:21;;;;:9;:21;;;;;;:32;-1:-1:-1;39623:32:0;39615:74;;;;-1:-1:-1;;;39615:74:0;;17138:2:1;39615:74:0;;;17120:21:1;17177:2;17157:18;;;17150:30;17216:31;17196:18;;;17189:59;17265:18;;39615:74:0;16936:353:1;39615:74:0;39710:10;39700:21;;;;:9;:21;;;;;:32;;39725:7;;39700:21;:32;;39725:7;;39700:32;:::i;:::-;;;;-1:-1:-1;39449:425:0;;-1:-1:-1;39449:425:0;;39762:14;:17;39783:15;-1:-1:-1;39762:36:0;;;:75;;-1:-1:-1;39802:17:0;;39822:15;-1:-1:-1;39762:75:0;39754:112;;;;-1:-1:-1;;;39754:112:0;;17496:2:1;39754:112:0;;;17478:21:1;17535:2;17515:18;;;17508:30;-1:-1:-1;;;17554:18:1;;;17547:54;17618:18;;39754:112:0;17294:348:1;39754:112:0;39907:7;39890:13;;:24;;39882:63;;;;-1:-1:-1;;;39882:63:0;;17849:2:1;39882:63:0;;;17831:21:1;17888:2;17868:18;;;17861:30;-1:-1:-1;;;17907:18:1;;;17900:56;17973:18;;39882:63:0;17647:350:1;39882:63:0;39976:18;;:28;;39997:7;;39976:28;:::i;:::-;39962:9;:43;39954:75;;;;-1:-1:-1;;;39954:75:0;;;;;;;:::i;:::-;40074:7;40060:11;;:21;;;;:::i;:::-;40046:9;;:36;;40038:76;;;;-1:-1:-1;;;40038:76:0;;18377:2:1;40038:76:0;;;18359:21:1;18416:2;18396:18;;;18389:30;-1:-1:-1;;;18435:18:1;;;18428:57;18502:18;;40038:76:0;18175:351:1;40038:76:0;40127:9;40123:192;40146:7;40142:1;:11;40123:192;;;40215:27;;;;;;;;;;;40234:1;40215:27;;;;;;;-1:-1:-1;40215:27:0;;;;;;;;;;;;40200:9;:43;;;;;;;;;;;;;;40215:27;;40200:43;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;40269:38;40275:10;40305:1;40287:11;;40301:1;40287:15;;;;:::i;:::-;:19;;;;:::i;:::-;40269:5;:38::i;:::-;40155:3;;;;:::i;:::-;;;;40123:192;;;;40360:7;40345:11;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;39343:1030:0:o;35758:87::-;35831:6;;-1:-1:-1;;;;;35831:6:0;;35758:87::o;41352:146::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;41446:6;41486::::2;41461:15;41477:5;41461:22;;;;;;;:::i;:::-;;:31:::0;-1:-1:-1;;;41352:146:0:o;22700:104::-;22756:13;22789:7;22782:14;;;;;:::i;38978:167::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;39068:17:::1;:33:::0;;;39131:8;;39126:1:::1;39108:20;::::0;41834:292;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;41911:9:::1;41907:178;41930:8;:15;41926:1;:19;41907:178;;;42075:4;42055:16;;42008:15;42024:9;42034:8;42043:1;42034:11;;;;;;;;:::i;:::-;;;;;;;42024:22;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;42008:44;;;;;;;:::i;:::-;;;:63;;;;:::i;:::-;42007:72;;;;:::i;:::-;41957:9;41967:8;41976:1;41967:11;;;;;;;;:::i;:::-;;;;;;;41957:22;;;;;;;;:::i;:::-;;;;;;;;;;;:46;;;:122;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;41947:3:0;;-1:-1:-1;41947:3:0::1;::::0;::::1;:::i;:::-;;;;41907:178;;;;42096:25;42112:8;42096:25;;;;;;:::i;:::-;;;;;;;;41834:292:::0;:::o;24383:155::-;24478:52;16902:10;24511:8;24521;24478:18;:52::i;25506:328::-;25681:41;16902:10;25714:7;25681:18;:41::i;:::-;25673:103;;;;-1:-1:-1;;;25673:103:0;;;;;;;:::i;:::-;25787:39;25801:4;25807:2;25811:7;25820:5;25787:13;:39::i;:::-;25506:328;;;;:::o;38069:118::-;;;;;;;;;;;40935:122;41002:15;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41002:15:0;41032:9;41042:8;41032:19;;;;;;;;:::i;:::-;;;;;;;;;;;41025:26;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40935:122;;;:::o;43047:361::-;43120:13;43150:16;43158:7;43150;:16::i;:::-;43142:76;;;;-1:-1:-1;;;43142:76:0;;19393:2:1;43142:76:0;;;19375:21:1;19432:2;19412:18;;;19405:30;19471:34;19451:18;;;19444:62;-1:-1:-1;;;19522:18:1;;;19515:45;19577:19;;43142:76:0;19191:411:1;43142:76:0;43227:21;43251:10;:8;:10::i;:::-;43227:34;;43299:1;43281:7;43275:21;:25;:127;;;;;;;;;;;;;;;;;43327:7;43336:18;:7;:16;:18::i;:::-;43361:34;:9;43371:7;43361:18;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;:32;:34::i;:::-;43310:86;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43275:127;43268:134;43047:361;-1:-1:-1;;;43047:361:0:o;38773:199::-;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;38870:9:::1;38866:101;38889:10;:17;38885:1;:21;38866:101;;;38950:7;38923:9;:24;38933:10;38944:1;38933:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;38923:24:0::1;-1:-1:-1::0;;;;;38923:24:0::1;;;;;;;;;;;;:34;;;;38908:3;;;;;:::i;:::-;;;;38866:101;;24609:164:::0;-1:-1:-1;;;;;24730:25:0;;;24706:4;24730:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24609:164::o;37989:32::-;;;;;;;;;;;36667:201;16902:10;35978:7;:5;:7::i;:::-;-1:-1:-1;;;;;35978:23:0;;35970:68;;;;-1:-1:-1;;;35970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36756:22:0;::::1;36748:73;;;::::0;-1:-1:-1;;;36748:73:0;;20622:2:1;36748:73:0::1;::::0;::::1;20604:21:1::0;20661:2;20641:18;;;20634:30;20700:34;20680:18;;;20673:62;-1:-1:-1;;;20751:18:1;;;20744:36;20797:19;;36748:73:0::1;20420:402:1::0;36748:73:0::1;36832:28;36851:8;36832:18;:28::i;:::-;36667:201:::0;:::o;41596:211::-;41708:10;41687:17;41695:8;41687:7;:17::i;:::-;-1:-1:-1;;;;;41687:31:0;;41679:76;;;;-1:-1:-1;;;41679:76:0;;21029:2:1;41679:76:0;;;21011:21:1;;;21048:18;;;21041:30;21107:34;21087:18;;;21080:62;21159:18;;41679:76:0;20827:356:1;41679:76:0;41793:8;41763:9;41773:8;41763:19;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;:38;;;;;;;;;;;;:::i;27344:127::-;27409:4;27433:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27433:16:0;:30;;;27344:127::o;31490:174::-;31565:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31565:29:0;-1:-1:-1;;;;;31565:29:0;;;;;;;;:24;;31619:23;31565:24;31619:14;:23::i;:::-;-1:-1:-1;;;;;31610:46:0;;;;;;;;;;;31490:174;;:::o;27638:348::-;27731:4;27756:16;27764:7;27756;:16::i;:::-;27748:73;;;;-1:-1:-1;;;27748:73:0;;21390:2:1;27748:73:0;;;21372:21:1;21429:2;21409:18;;;21402:30;21468:34;21448:18;;;21441:62;-1:-1:-1;;;21519:18:1;;;21512:42;21571:19;;27748:73:0;21188:408:1;27748:73:0;27832:13;27848:23;27863:7;27848:14;:23::i;:::-;27832:39;;27901:5;-1:-1:-1;;;;;27890:16:0;:7;-1:-1:-1;;;;;27890:16:0;;:51;;;;27934:7;-1:-1:-1;;;;;27910:31:0;:20;27922:7;27910:11;:20::i;:::-;-1:-1:-1;;;;;27910:31:0;;27890:51;:87;;;;27945:32;27962:5;27969:7;27945:16;:32::i;:::-;27882:96;27638:348;-1:-1:-1;;;;27638:348:0:o;30747:625::-;30906:4;-1:-1:-1;;;;;30879:31:0;:23;30894:7;30879:14;:23::i;:::-;-1:-1:-1;;;;;30879:31:0;;30871:81;;;;-1:-1:-1;;;30871:81:0;;21803:2:1;30871:81:0;;;21785:21:1;21842:2;21822:18;;;21815:30;21881:34;21861:18;;;21854:62;-1:-1:-1;;;21932:18:1;;;21925:35;21977:19;;30871:81:0;21601:401:1;30871:81:0;-1:-1:-1;;;;;30971:16:0;;30963:65;;;;-1:-1:-1;;;30963:65:0;;22209:2:1;30963:65:0;;;22191:21:1;22248:2;22228:18;;;22221:30;22287:34;22267:18;;;22260:62;-1:-1:-1;;;22338:18:1;;;22331:34;22382:19;;30963:65:0;22007:400:1;30963:65:0;31145:29;31162:1;31166:7;31145:8;:29::i;:::-;-1:-1:-1;;;;;31187:15:0;;;;;;:9;:15;;;;;:20;;31206:1;;31187:15;:20;;31206:1;;31187:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31218:13:0;;;;;;:9;:13;;;;;:18;;31235:1;;31218:13;:18;;31235:1;;31218:18;:::i;:::-;;;;-1:-1:-1;;31247:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31247:21:0;-1:-1:-1;;;;;31247:21:0;;;;;;;;;31286:27;;31247:16;;31286:27;;;;-1:-1:-1;;;;;;;;;;;31286:27:0;;23683:341;23613:411;;:::o;37028:191::-;37121:6;;;-1:-1:-1;;;;;37138:17:0;;;-1:-1:-1;;;;;;37138:17:0;;;;;;;37171:40;;37121:6;;;37138:17;37121:6;;37171:40;;37102:16;;37171:40;37091:128;37028:191;:::o;29322:439::-;-1:-1:-1;;;;;29402:16:0;;29394:61;;;;-1:-1:-1;;;29394:61:0;;22614:2:1;29394:61:0;;;22596:21:1;;;22633:18;;;22626:30;22692:34;22672:18;;;22665:62;22744:18;;29394:61:0;22412:356:1;29394:61:0;29475:16;29483:7;29475;:16::i;:::-;29474:17;29466:58;;;;-1:-1:-1;;;29466:58:0;;22975:2:1;29466:58:0;;;22957:21:1;23014:2;22994:18;;;22987:30;-1:-1:-1;;;23033:18:1;;;23026:58;23101:18;;29466:58:0;22773:352:1;29466:58:0;-1:-1:-1;;;;;29595:13:0;;;;;;:9;:13;;;;;:18;;29612:1;;29595:13;:18;;29612:1;;29595:18;:::i;:::-;;;;-1:-1:-1;;29624:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29624:21:0;-1:-1:-1;;;;;29624:21:0;;;;;;;;29663:33;;29624:16;;;-1:-1:-1;;;;;;;;;;;29663:33:0;29624:16;;29663:33;42999:36:::1;42847:194:::0;:::o;31806:315::-;31961:8;-1:-1:-1;;;;;31952:17:0;:5;-1:-1:-1;;;;;31952:17:0;;31944:55;;;;-1:-1:-1;;;31944:55:0;;23332:2:1;31944:55:0;;;23314:21:1;23371:2;23351:18;;;23344:30;-1:-1:-1;;;23390:18:1;;;23383:55;23455:18;;31944:55:0;23130:349:1;31944:55:0;-1:-1:-1;;;;;32010:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32010:46:0;;;;;;;;;;32072:41;;540::1;;;32072::0;;513:18:1;32072:41:0;;;;;;;31806:315;;;:::o;26716:::-;26873:28;26883:4;26889:2;26893:7;26873:9;:28::i;:::-;26920:48;26943:4;26949:2;26953:7;26962:5;26920:22;:48::i;:::-;26912:111;;;;-1:-1:-1;;;26912:111:0;;;;;;;:::i;43413:105::-;43473:13;43500;43493:20;;;;;:::i;17399:723::-;17455:13;17676:5;17685:1;17676:10;17672:53;;-1:-1:-1;;17703:10:0;;;;;;;;;;;;-1:-1:-1;;;17703:10:0;;;;;17399:723::o;17672:53::-;17750:5;17735:12;17791:78;17798:9;;17791:78;;17824:8;;;;:::i;:::-;;-1:-1:-1;17847:10:0;;-1:-1:-1;17855:2:0;17847:10;;:::i;:::-;;;17791:78;;;17879:19;17911:6;-1:-1:-1;;;;;17901:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17901:17:0;;17879:39;;17929:154;17936:10;;17929:154;;17963:11;17973:1;17963:11;;:::i;:::-;;-1:-1:-1;18032:10:0;18040:2;18032:5;:10;:::i;:::-;18019:24;;:2;:24;:::i;:::-;18006:39;;17989:6;17996;17989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17989:56:0;;;;;;;;-1:-1:-1;18060:11:0;18069:2;18060:11;;:::i;:::-;;;17929:154;;32686:799;32841:4;-1:-1:-1;;;;;32862:13:0;;9170:19;:23;32858:620;;32898:72;;-1:-1:-1;;;32898:72:0;;-1:-1:-1;;;;;32898:36:0;;;;;:72;;16902:10;;32949:4;;32955:7;;32964:5;;32898:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32898:72:0;;;;;;;;-1:-1:-1;;32898:72:0;;;;;;;;;;;;:::i;:::-;;;32894:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33140:6;:13;33157:1;33140:18;33136:272;;33183:60;;-1:-1:-1;;;33183:60:0;;;;;;;:::i;33136:272::-;33358:6;33352:13;33343:6;33339:2;33335:15;33328:38;32894:529;-1:-1:-1;;;;;;33021:51:0;-1:-1:-1;;;33021:51:0;;-1:-1:-1;33014:58:0;;32858:620;-1:-1:-1;33462:4:0;32686:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:248::-;1411:6;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;-1:-1:-1;;1511:23:1;;;1581:2;1566:18;;;1553:32;;-1:-1:-1;1343:248:1:o;1596:180::-;1655:6;1708:2;1696:9;1687:7;1683:23;1679:32;1676:52;;;1724:1;1721;1714:12;1676:52;-1:-1:-1;1747:23:1;;1596:180;-1:-1:-1;1596:180:1:o;1989:173::-;2057:20;;-1:-1:-1;;;;;2106:31:1;;2096:42;;2086:70;;2152:1;2149;2142:12;2086:70;1989:173;;;:::o;2167:254::-;2235:6;2243;2296:2;2284:9;2275:7;2271:23;2267:32;2264:52;;;2312:1;2309;2302:12;2264:52;2335:29;2354:9;2335:29;:::i;:::-;2325:39;2411:2;2396:18;;;;2383:32;;-1:-1:-1;;;2167:254:1:o;2608:328::-;2685:6;2693;2701;2754:2;2742:9;2733:7;2729:23;2725:32;2722:52;;;2770:1;2767;2760:12;2722:52;2793:29;2812:9;2793:29;:::i;:::-;2783:39;;2841:38;2875:2;2864:9;2860:18;2841:38;:::i;:::-;2831:48;;2926:2;2915:9;2911:18;2898:32;2888:42;;2608:328;;;;;:::o;2941:435::-;3174:3;3163:9;3156:22;3137:4;3195:46;3236:3;3225:9;3221:19;3213:6;3195:46;:::i;:::-;3272:2;3257:18;;3250:34;;;;-1:-1:-1;3315:2:1;3300:18;;3293:34;;;;3358:2;3343:18;;;3336:34;3187:54;2941:435;-1:-1:-1;2941:435:1:o;3381:186::-;3440:6;3493:2;3481:9;3472:7;3468:23;3464:32;3461:52;;;3509:1;3506;3499:12;3461:52;3532:29;3551:9;3532:29;:::i;3572:632::-;3743:2;3795:21;;;3865:13;;3768:18;;;3887:22;;;3714:4;;3743:2;3966:15;;;;3940:2;3925:18;;;3714:4;4009:169;4023:6;4020:1;4017:13;4009:169;;;4084:13;;4072:26;;4153:15;;;;4118:12;;;;4045:1;4038:9;4009:169;;;-1:-1:-1;4195:3:1;;3572:632;-1:-1:-1;;;;;;3572:632:1:o;4209:127::-;4270:10;4265:3;4261:20;4258:1;4251:31;4301:4;4298:1;4291:15;4325:4;4322:1;4315:15;4341:275;4412:2;4406:9;4477:2;4458:13;;-1:-1:-1;;4454:27:1;4442:40;;-1:-1:-1;;;;;4497:34:1;;4533:22;;;4494:62;4491:88;;;4559:18;;:::i;:::-;4595:2;4588:22;4341:275;;-1:-1:-1;4341:275:1:o;4621:407::-;4686:5;-1:-1:-1;;;;;4709:30:1;;4706:56;;;4742:18;;:::i;:::-;4780:57;4825:2;4804:15;;-1:-1:-1;;4800:29:1;4831:4;4796:40;4780:57;:::i;:::-;4771:66;;4860:6;4853:5;4846:21;4900:3;4891:6;4886:3;4882:16;4879:25;4876:45;;;4917:1;4914;4907:12;4876:45;4966:6;4961:3;4954:4;4947:5;4943:16;4930:43;5020:1;5013:4;5004:6;4997:5;4993:18;4989:29;4982:40;4621:407;;;;;:::o;5033:222::-;5076:5;5129:3;5122:4;5114:6;5110:17;5106:27;5096:55;;5147:1;5144;5137:12;5096:55;5169:80;5245:3;5236:6;5223:20;5216:4;5208:6;5204:17;5169:80;:::i;5260:322::-;5329:6;5382:2;5370:9;5361:7;5357:23;5353:32;5350:52;;;5398:1;5395;5388:12;5350:52;5425:23;;-1:-1:-1;;;;;5460:30:1;;5457:50;;;5503:1;5500;5493:12;5457:50;5526;5568:7;5559:6;5548:9;5544:22;5526:50;:::i;5587:390::-;5665:6;5673;5726:2;5714:9;5705:7;5701:23;5697:32;5694:52;;;5742:1;5739;5732:12;5694:52;5765:23;;;-1:-1:-1;5839:2:1;5824:18;;5811:32;-1:-1:-1;;;;;5855:30:1;;5852:50;;;5898:1;5895;5888:12;5852:50;5921;5963:7;5954:6;5943:9;5939:22;5921:50;:::i;:::-;5911:60;;;5587:390;;;;;:::o;5982:183::-;6042:4;-1:-1:-1;;;;;6064:30:1;;6061:56;;;6097:18;;:::i;:::-;-1:-1:-1;6142:1:1;6138:14;6154:4;6134:25;;5982:183::o;6170:891::-;6254:6;6285:2;6328;6316:9;6307:7;6303:23;6299:32;6296:52;;;6344:1;6341;6334:12;6296:52;6371:23;;-1:-1:-1;;;;;6406:30:1;;6403:50;;;6449:1;6446;6439:12;6403:50;6472:22;;6525:4;6517:13;;6513:27;-1:-1:-1;6503:55:1;;6554:1;6551;6544:12;6503:55;6590:2;6577:16;6613:60;6629:43;6669:2;6629:43;:::i;:::-;6613:60;:::i;:::-;6707:15;;;6789:1;6785:10;;;;6777:19;;6773:28;;;6738:12;;;;6813:19;;;6810:39;;;6845:1;6842;6835:12;6810:39;6869:11;;;;6889:142;6905:6;6900:3;6897:15;6889:142;;;6971:17;;6959:30;;6922:12;;;;7009;;;;6889:142;;;7050:5;6170:891;-1:-1:-1;;;;;;;6170:891:1:o;7066:347::-;7131:6;7139;7192:2;7180:9;7171:7;7167:23;7163:32;7160:52;;;7208:1;7205;7198:12;7160:52;7231:29;7250:9;7231:29;:::i;:::-;7221:39;;7310:2;7299:9;7295:18;7282:32;7357:5;7350:13;7343:21;7336:5;7333:32;7323:60;;7379:1;7376;7369:12;7323:60;7402:5;7392:15;;;7066:347;;;;;:::o;7418:667::-;7513:6;7521;7529;7537;7590:3;7578:9;7569:7;7565:23;7561:33;7558:53;;;7607:1;7604;7597:12;7558:53;7630:29;7649:9;7630:29;:::i;:::-;7620:39;;7678:38;7712:2;7701:9;7697:18;7678:38;:::i;:::-;7668:48;-1:-1:-1;7763:2:1;7748:18;;7735:32;;-1:-1:-1;7818:2:1;7803:18;;7790:32;-1:-1:-1;;;;;7834:30:1;;7831:50;;;7877:1;7874;7867:12;7831:50;7900:22;;7953:4;7945:13;;7941:27;-1:-1:-1;7931:55:1;;7982:1;7979;7972:12;7931:55;8005:74;8071:7;8066:2;8053:16;8048:2;8044;8040:11;8005:74;:::i;:::-;7995:84;;;7418:667;;;;;;;:::o;8090:550::-;8271:2;8260:9;8253:21;8234:4;8309:6;8303:13;8352:4;8347:2;8336:9;8332:18;8325:32;8380:52;8427:3;8416:9;8412:19;8398:12;8380:52;:::i;:::-;8366:66;;8486:2;8478:6;8474:15;8468:22;8463:2;8452:9;8448:18;8441:50;8545:2;8537:6;8533:15;8527:22;8522:2;8511:9;8507:18;8500:50;8606:2;8598:6;8594:15;8588:22;8581:4;8570:9;8566:20;8559:52;8628:6;8620:14;;;8090:550;;;;:::o;8645:967::-;8738:6;8746;8799:2;8787:9;8778:7;8774:23;8770:32;8767:52;;;8815:1;8812;8805:12;8767:52;8842:23;;-1:-1:-1;;;;;8877:30:1;;8874:50;;;8920:1;8917;8910:12;8874:50;8943:22;;8996:4;8988:13;;8984:27;-1:-1:-1;8974:55:1;;9025:1;9022;9015:12;8974:55;9061:2;9048:16;9083:4;9107:60;9123:43;9163:2;9123:43;:::i;9107:60::-;9201:15;;;9283:1;9279:10;;;;9271:19;;9267:28;;;9232:12;;;;9307:19;;;9304:39;;;9339:1;9336;9329:12;9304:39;9363:11;;;;9383:148;9399:6;9394:3;9391:15;9383:148;;;9465:23;9484:3;9465:23;:::i;:::-;9453:36;;9416:12;;;;9509;;;;9383:148;;;9550:5;9587:18;;;;9574:32;;-1:-1:-1;;;;;;8645:967:1:o;9617:260::-;9685:6;9693;9746:2;9734:9;9725:7;9721:23;9717:32;9714:52;;;9762:1;9759;9752:12;9714:52;9785:29;9804:9;9785:29;:::i;:::-;9775:39;;9833:38;9867:2;9856:9;9852:18;9833:38;:::i;:::-;9823:48;;9617:260;;;;;:::o;9882:380::-;9961:1;9957:12;;;;10004;;;10025:61;;10079:4;10071:6;10067:17;10057:27;;10025:61;10132:2;10124:6;10121:14;10101:18;10098:38;10095:161;;10178:10;10173:3;10169:20;10166:1;10159:31;10213:4;10210:1;10203:15;10241:4;10238:1;10231:15;10095:161;;9882:380;;;:::o;10267:356::-;10469:2;10451:21;;;10488:18;;;10481:30;10547:34;10542:2;10527:18;;10520:62;10614:2;10599:18;;10267:356::o;10628:127::-;10689:10;10684:3;10680:20;10677:1;10670:31;10720:4;10717:1;10710:15;10744:4;10741:1;10734:15;12000:356;12202:2;12184:21;;;12221:18;;;12214:30;12280:34;12275:2;12260:18;;12253:62;12347:2;12332:18;;12000:356::o;12721:127::-;12782:10;12777:3;12773:20;12770:1;12763:31;12813:4;12810:1;12803:15;12837:4;12834:1;12827:15;12853:128;12893:3;12924:1;12920:6;12917:1;12914:13;12911:39;;;12930:18;;:::i;:::-;-1:-1:-1;12966:9:1;;12853:128::o;13239:413::-;13441:2;13423:21;;;13480:2;13460:18;;;13453:30;13519:34;13514:2;13499:18;;13492:62;-1:-1:-1;;;13585:2:1;13570:18;;13563:47;13642:3;13627:19;;13239:413::o;14069:135::-;14108:3;14129:17;;;14126:43;;14149:18;;:::i;:::-;-1:-1:-1;14196:1:1;14185:13;;14069:135::o;14959:125::-;14999:4;15027:1;15024;15021:8;15018:34;;;15032:18;;:::i;:::-;-1:-1:-1;15069:9:1;;14959:125::o;15089:343::-;15291:2;15273:21;;;15330:2;15310:18;;;15303:30;-1:-1:-1;;;15364:2:1;15349:18;;15342:49;15423:2;15408:18;;15089:343::o;18002:168::-;18042:7;18108:1;18104;18100:6;18096:14;18093:1;18090:21;18085:1;18078:9;18071:17;18067:45;18064:71;;;18115:18;;:::i;:::-;-1:-1:-1;18155:9:1;;18002:168::o;18934:127::-;18995:10;18990:3;18986:20;18983:1;18976:31;19026:4;19023:1;19016:15;19050:4;19047:1;19040:15;19066:120;19106:1;19132;19122:35;;19137:18;;:::i;:::-;-1:-1:-1;19171:9:1;;19066:120::o;19607:808::-;19935:3;19973:6;19967:13;19989:53;20035:6;20030:3;20023:4;20015:6;20011:17;19989:53;:::i;:::-;20105:13;;20064:16;;;;20127:57;20105:13;20064:16;20161:4;20149:17;;20127:57;:::i;:::-;-1:-1:-1;;;20206:20:1;;20235:18;;;20278:13;;20300:65;20278:13;20352:1;20341:13;;20334:4;20322:17;;20300:65;:::i;:::-;20385:20;20407:1;20381:28;;19607:808;-1:-1:-1;;;;;19607:808:1:o;23484:414::-;23686:2;23668:21;;;23725:2;23705:18;;;23698:30;23764:34;23759:2;23744:18;;23737:62;-1:-1:-1;;;23830:2:1;23815:18;;23808:48;23888:3;23873:19;;23484:414::o;23903:112::-;23935:1;23961;23951:35;;23966:18;;:::i;:::-;-1:-1:-1;24000:9:1;;23903:112::o;24020:489::-;-1:-1:-1;;;;;24289:15:1;;;24271:34;;24341:15;;24336:2;24321:18;;24314:43;24388:2;24373:18;;24366:34;;;24436:3;24431:2;24416:18;;24409:31;;;24214:4;;24457:46;;24483:19;;24475:6;24457:46;:::i;:::-;24449:54;24020:489;-1:-1:-1;;;;;;24020:489:1:o;24514:249::-;24583:6;24636:2;24624:9;24615:7;24611:23;24607:32;24604:52;;;24652:1;24649;24642:12;24604:52;24684:9;24678:16;24703:30;24727:5;24703:30;:::i
Swarm Source
ipfs://5c8687f0bd1ff4a28c3cb90a4ab8937dd3524b46a8440b38884ca5cb54cc75de
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.