ERC-721
Overview
Max Total Supply
12 SOG
Holders
6
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SOGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Burnable.sol"; import "./SafeMath.sol"; import "./IERC721.sol"; /** * @title NFT Contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract NFT is ERC721Burnable { using SafeMath for uint256; uint16 private mintedCount; string public baseTokenURI; uint16 public MAX_SUPPLY; uint16 private reserved = 1000; uint8 public minByMint; uint256 public mintPrice; address private fund1; address private fund2 = 0x7DEb1573a405f1DB2a7de1F630e07634B9983776; mapping(address => bool) public freeMintedFromAddress; mapping(address => bool) public whitelistAddress; constructor() ERC721("Son of A Gun", "SOG") { MAX_SUPPLY = 10000; mintPrice = 0.02 ether; minByMint = 6; fund1 = owner(); } function mintFree() external { require(tx.origin == msg.sender, "Only EOA"); require( !freeMintedFromAddress[msg.sender], "Already minted from this address" ); require(totalSupply() < MAX_SUPPLY - reserved, "Max Limit To Presale"); uint256 supply = totalSupply(); for (uint8 i = 0; i < 2; i += 1) { _safeMint(msg.sender, supply + i); } mintedCount = mintedCount + 2; freeMintedFromAddress[msg.sender] = true; } function mintNFTPayable() external payable { require(tx.origin == msg.sender, "Only EOA"); require(mintPrice <= msg.value, "Low Price To Mint"); uint8 mintNumber = uint8((msg.value / mintPrice) * minByMint); require( totalSupply() + mintNumber <= MAX_SUPPLY - reserved, "Max Limit To Presale" ); uint256 supply = totalSupply(); for (uint8 i = 0; i < mintNumber; i += 1) { _safeMint(msg.sender, supply + i); } mintedCount = mintedCount + mintNumber; } function mintFreeFromWL(uint8 _amount) external { require(tx.origin == msg.sender, "Only EOA"); require(whitelistAddress[msg.sender], "Not Whitelist"); require(_amount <= 25, "Limit To Presale"); require( totalSupply() + _amount < MAX_SUPPLY - reserved, "Max Limit To Presale" ); require(_amount <= reserved, "Exceeds reserved Cat supply"); uint256 supply = totalSupply(); for (uint256 i; i < _amount; i++) { _safeMint(msg.sender, supply + i); } mintedCount = mintedCount + _amount; freeMintedFromAddress[msg.sender] = false; } function giveAway(address _to, uint16 _amount) external onlyOwner { require(_amount <= reserved, "Exceeds reserved Cat supply"); uint256 supply = totalSupply(); for (uint256 i; i < _amount; i++) { _safeMint(_to, supply + i); } mintedCount = mintedCount + _amount; reserved -= _amount; } function setBaseURI(string memory baseURI) external onlyOwner { baseTokenURI = baseURI; } function setMintPrice(uint256 newMintPrice) external onlyOwner { mintPrice = newMintPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } function totalSupply() public view virtual returns (uint16) { return mintedCount; } function setWhitelist(address[] memory addresses) external onlyOwner { require(addresses.length > 0, "No Empty"); for (uint256 i; i < addresses.length; i++) { whitelistAddress[addresses[i]] = true; } } function withdraw() public onlyOwner { uint256 amount = address(this).balance; uint256 amount1 = (amount * 8) / 10; payable(msg.sender).transfer(amount1); payable(msg.sender).transfer(amount - amount1); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @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 // CUSTOM: Visible for child contract so it's possible to emulate methods of ERC721's enumerable extension mapping(uint256 => address) internal _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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./Ownable.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Ownable, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _msgSender() == owner() || _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedFromAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"minByMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"mintFreeFromWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintNFTPayable","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelist","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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600980546303e8000063ffff000019909116179055600c80546001600160a01b031916737deb1573a405f1db2a7de1f630e07634b99837761790553480156200004c57600080fd5b506040518060400160405280600c81526020016b29b7b71037b310209023bab760a11b81525060405180604001604052806003815260200162534f4760e81b8152506000620000a06200017160201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000ff90600190602085019062000175565b5080516200011590600290602084019062000175565b50506009805466470de4df820000600a5564ff0000ffff1916640600002710179055506200014b6000546001600160a01b031690565b600b80546001600160a01b0319166001600160a01b039290921691909117905562000258565b3390565b82805462000183906200021b565b90600052602060002090601f016020900481019282620001a75760008555620001f2565b82601f10620001c257805160ff1916838001178555620001f2565b82800160010185558215620001f2579182015b82811115620001f2578251825591602001919060010190620001d5565b506200020092915062000204565b5090565b5b8082111562000200576000815560010162000205565b600181811c908216806200023057607f821691505b602082108114156200025257634e487b7160e01b600052602260045260246000fd5b50919050565b61263480620002686000396000f3fe6080604052600436106101ee5760003560e01c80636817c76c1161010d578063b88d4fde116100a0578063e352c4251161006f578063e352c4251461057a578063e985e9c5146105ae578063f2fde38b146105f7578063f421764814610617578063f4a0a5281461063757600080fd5b8063b88d4fde14610505578063c87b56dd14610525578063d547cfb714610545578063e3258aae1461055a57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048257806395d89b41146104a0578063a22cb465146104b5578063ac4ff476146104d557600080fd5b80636817c76c1461041457806370a0823114610438578063715018a6146104585780638ab534471461046d57600080fd5b80633ccfd60b1161018557806348a6ab7e1161015457806348a6ab7e146103945780634f558e79146103b457806355f804b3146103d45780636352211e146103f457600080fd5b80633ccfd60b1461030f578063415665851461032457806342842e0e1461035457806342966c681461037457600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102cc578063261709db146102ec57806332cb6b0c146102f457600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612170565b610657565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106a9565b60405161021f91906122c7565b34801561025657600080fd5b5061026a6102653660046121f3565b61073b565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612092565b6107d5565b005b3480156102b057600080fd5b5060075461ffff165b60405161ffff909116815260200161021f565b3480156102d857600080fd5b506102a26102e7366004611f6b565b6108eb565b6102a261091d565b34801561030057600080fd5b506009546102b99061ffff1681565b34801561031b57600080fd5b506102a2610a86565b34801561033057600080fd5b5061021361033f366004611f1d565b600e6020526000908152604090205460ff1681565b34801561036057600080fd5b506102a261036f366004611f6b565b610b31565b34801561038057600080fd5b506102a261038f3660046121f3565b610b4c565b3480156103a057600080fd5b506102a26103af36600461205f565b610bda565b3480156103c057600080fd5b506102136103cf3660046121f3565b610d07565b3480156103e057600080fd5b506102a26103ef3660046121aa565b610d26565b34801561040057600080fd5b5061026a61040f3660046121f3565b610d67565b34801561042057600080fd5b5061042a600a5481565b60405190815260200161021f565b34801561044457600080fd5b5061042a610453366004611f1d565b610dde565b34801561046457600080fd5b506102a2610e65565b34801561047957600080fd5b506102a2610ed9565b34801561048e57600080fd5b506000546001600160a01b031661026a565b3480156104ac57600080fd5b5061023d611030565b3480156104c157600080fd5b506102a26104d0366004612023565b61103f565b3480156104e157600080fd5b506102136104f0366004611f1d565b600d6020526000908152604090205460ff1681565b34801561051157600080fd5b506102a2610520366004611fa7565b61104a565b34801561053157600080fd5b5061023d6105403660046121f3565b611082565b34801561055157600080fd5b5061023d61115d565b34801561056657600080fd5b506102a261057536600461220c565b6111eb565b34801561058657600080fd5b5060095461059c90640100000000900460ff1681565b60405160ff909116815260200161021f565b3480156105ba57600080fd5b506102136105c9366004611f38565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b506102a2610612366004611f1d565b6113e2565b34801561062357600080fd5b506102a26106323660046120bc565b6114cc565b34801561064357600080fd5b506102a26106523660046121f3565b61159a565b60006001600160e01b031982166380ac58cd60e01b148061068857506001600160e01b03198216635b5e139f60e01b145b806106a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106b890612526565b80601f01602080910402602001604051908101604052809291908181526020018280546106e490612526565b80156107315780601f1061070657610100808354040283529160200191610731565b820191906000526020600020905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107e082610d67565b9050806001600160a01b0316836001600160a01b0316141561084e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b0565b336001600160a01b038216148061086a575061086a81336105c9565b6108dc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b0565b6108e683836115c9565b505050565b6108f6335b82611637565b6109125760405162461bcd60e51b81526004016107b090612383565b6108e683838361172e565b32331461093c5760405162461bcd60e51b81526004016107b09061232c565b34600a5411156109825760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b60448201526064016107b0565b600954600a54600091640100000000900460ff16906109a1903461248d565b6109ab91906124a1565b6009549091506109c79061ffff620100008204811691166124c0565b61ffff168160ff166109dc60075461ffff1690565b6109e69190612433565b61ffff161115610a085760405162461bcd60e51b81526004016107b0906123d4565b6000610a1760075461ffff1690565b61ffff16905060005b8260ff168160ff161015610a5657610a4433610a3f60ff841685612450565b6118ca565b610a4f600182612468565b9050610a20565b50600754610a6c9060ff84169061ffff16612433565b6007805461ffff191661ffff929092169190911790555050565b6000546001600160a01b03163314610ab05760405162461bcd60e51b81526004016107b09061234e565b476000600a610ac08360086124a1565b610aca919061248d565b604051909150339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b50336108fc610b0983856124e3565b6040518115909202916000818181858888f193505050501580156108e6573d6000803e3d6000fd5b6108e68383836040518060200160405280600081525061104a565b6000546001600160a01b0316331480610b695750610b69336108f0565b610bce5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107b0565b610bd7816118e4565b50565b6000546001600160a01b03163314610c045760405162461bcd60e51b81526004016107b09061234e565b60095461ffff6201000090910481169082161115610c645760405162461bcd60e51b815260206004820152601b60248201527f457863656564732072657365727665642043617420737570706c79000000000060448201526064016107b0565b6000610c7360075461ffff1690565b61ffff16905060005b8261ffff16811015610ca857610c9684610a3f8385612450565b80610ca081612561565b915050610c7c565b50600754610cbb90839061ffff16612433565b6007805461ffff191661ffff928316179055600980548492600291610ce8918591620100009004166124c0565b92506101000a81548161ffff021916908361ffff160217905550505050565b6000818152600360205260408120546001600160a01b031615156106a3565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016107b09061234e565b8051610d63906008906020840190611e10565b5050565b6000818152600360205260408120546001600160a01b0316806106a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b0565b60006001600160a01b038216610e495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b81526004016107b09061234e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b323314610ef85760405162461bcd60e51b81526004016107b09061232c565b336000908152600d602052604090205460ff1615610f585760405162461bcd60e51b815260206004820181905260248201527f416c7265616479206d696e7465642066726f6d2074686973206164647265737360448201526064016107b0565b600954610f719061ffff620100008204811691166124c0565b61ffff16610f8260075461ffff1690565b61ffff1610610fa35760405162461bcd60e51b81526004016107b0906123d4565b6000610fb260075461ffff1690565b61ffff16905060005b60028160ff161015610fea57610fd833610a3f60ff841685612450565b610fe3600182612468565b9050610fbb565b50600754610ffd9061ffff166002612433565b6007805461ffff191661ffff9290921691909117905550336000908152600d60205260409020805460ff19166001179055565b6060600280546106b890612526565b610d6333838361197f565b6110543383611637565b6110705760405162461bcd60e51b81526004016107b090612383565b61107c84848484611a4e565b50505050565b6000818152600360205260409020546060906001600160a01b03166111015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b0565b600061110b611a81565b9050600081511161112b5760405180602001604052806000815250611156565b8061113584611a90565b60405160200161114692919061225b565b6040516020818303038152906040525b9392505050565b6008805461116a90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461119690612526565b80156111e35780601f106111b8576101008083540402835291602001916111e3565b820191906000526020600020905b8154815290600101906020018083116111c657829003601f168201915b505050505081565b32331461120a5760405162461bcd60e51b81526004016107b09061232c565b336000908152600e602052604090205460ff166112595760405162461bcd60e51b815260206004820152600d60248201526c139bdd0815da1a5d195b1a5cdd609a1b60448201526064016107b0565b60198160ff1611156112a05760405162461bcd60e51b815260206004820152601060248201526f4c696d697420546f2050726573616c6560801b60448201526064016107b0565b6009546112b99061ffff620100008204811691166124c0565b61ffff168160ff166112ce60075461ffff1690565b6112d89190612433565b61ffff16106112f95760405162461bcd60e51b81526004016107b0906123d4565b60095462010000900461ffff1660ff821611156113585760405162461bcd60e51b815260206004820152601b60248201527f457863656564732072657365727665642043617420737570706c79000000000060448201526064016107b0565b600061136760075461ffff1690565b61ffff16905060005b8260ff1681101561139b5761138933610a3f8385612450565b8061139381612561565b915050611370565b506007546113b19060ff84169061ffff16612433565b6007805461ffff191661ffff929092169190911790555050336000908152600d60205260409020805460ff19169055565b6000546001600160a01b0316331461140c5760405162461bcd60e51b81526004016107b09061234e565b6001600160a01b0381166114715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114f65760405162461bcd60e51b81526004016107b09061234e565b60008151116115325760405162461bcd60e51b81526020600482015260086024820152674e6f20456d70747960c01b60448201526064016107b0565b60005b8151811015610d63576001600e6000848481518110611556576115566125bc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061159281612561565b915050611535565b6000546001600160a01b031633146115c45760405162461bcd60e51b81526004016107b09061234e565b600a55565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115fe82610d67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b0565b60006116bb83610d67565b9050806001600160a01b0316846001600160a01b031614806116f65750836001600160a01b03166116eb8461073b565b6001600160a01b0316145b8061172657506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174182610d67565b6001600160a01b0316146117a55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107b0565b6001600160a01b0382166118075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b0565b6118126000826115c9565b6001600160a01b038316600090815260046020526040812080546001929061183b9084906124e3565b90915550506001600160a01b0382166000908152600460205260408120805460019290611869908490612450565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d63828260405180602001604052806000815250611b8e565b60006118ef82610d67565b90506118fc6000836115c9565b6001600160a01b03811660009081526004602052604081208054600192906119259084906124e3565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b031614156119e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a5984848461172e565b611a6584848484611bc1565b61107c5760405162461bcd60e51b81526004016107b0906122da565b6060600880546106b890612526565b606081611ab45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ade5780611ac881612561565b9150611ad79050600a8361248d565b9150611ab8565b60008167ffffffffffffffff811115611af957611af96125d2565b6040519080825280601f01601f191660200182016040528015611b23576020820181803683370190505b5090505b841561172657611b386001836124e3565b9150611b45600a8661257c565b611b50906030612450565b60f81b818381518110611b6557611b656125bc565b60200101906001600160f81b031916908160001a905350611b87600a8661248d565b9450611b27565b611b988383611cce565b611ba56000848484611bc1565b6108e65760405162461bcd60e51b81526004016107b0906122da565b60006001600160a01b0384163b15611cc357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0590339089908890889060040161228a565b602060405180830381600087803b158015611c1f57600080fd5b505af1925050508015611c4f575060408051601f3d908101601f19168201909252611c4c9181019061218d565b60015b611ca9573d808015611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b508051611ca15760405162461bcd60e51b81526004016107b0906122da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611726565b506001949350505050565b6001600160a01b038216611d245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b0565b6000818152600360205260409020546001600160a01b031615611d895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b0565b6001600160a01b0382166000908152600460205260408120805460019290611db2908490612450565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e1c90612526565b90600052602060002090601f016020900481019282611e3e5760008555611e84565b82601f10611e5757805160ff1916838001178555611e84565b82800160010185558215611e84579182015b82811115611e84578251825591602001919060010190611e69565b50611e90929150611e94565b5090565b5b80821115611e905760008155600101611e95565b600067ffffffffffffffff831115611ec357611ec36125d2565b611ed6601f8401601f1916602001612402565b9050828152838383011115611eea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f1857600080fd5b919050565b600060208284031215611f2f57600080fd5b61115682611f01565b60008060408385031215611f4b57600080fd5b611f5483611f01565b9150611f6260208401611f01565b90509250929050565b600080600060608486031215611f8057600080fd5b611f8984611f01565b9250611f9760208501611f01565b9150604084013590509250925092565b60008060008060808587031215611fbd57600080fd5b611fc685611f01565b9350611fd460208601611f01565b925060408501359150606085013567ffffffffffffffff811115611ff757600080fd5b8501601f8101871361200857600080fd5b61201787823560208401611ea9565b91505092959194509250565b6000806040838503121561203657600080fd5b61203f83611f01565b91506020830135801515811461205457600080fd5b809150509250929050565b6000806040838503121561207257600080fd5b61207b83611f01565b9150602083013561ffff8116811461205457600080fd5b600080604083850312156120a557600080fd5b6120ae83611f01565b946020939093013593505050565b600060208083850312156120cf57600080fd5b823567ffffffffffffffff808211156120e757600080fd5b818501915085601f8301126120fb57600080fd5b81358181111561210d5761210d6125d2565b8060051b915061211e848301612402565b8181528481019084860184860187018a101561213957600080fd5b600095505b838610156121635761214f81611f01565b83526001959095019491860191860161213e565b5098975050505050505050565b60006020828403121561218257600080fd5b8135611156816125e8565b60006020828403121561219f57600080fd5b8151611156816125e8565b6000602082840312156121bc57600080fd5b813567ffffffffffffffff8111156121d357600080fd5b8201601f810184136121e457600080fd5b61172684823560208401611ea9565b60006020828403121561220557600080fd5b5035919050565b60006020828403121561221e57600080fd5b813560ff8116811461115657600080fd5b600081518084526122478160208601602086016124fa565b601f01601f19169290920160200192915050565b6000835161226d8184602088016124fa565b8351908301906122818183602088016124fa565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122bd9083018461222f565b9695505050505050565b602081526000611156602083018461222f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600890820152674f6e6c7920454f4160c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561242b5761242b6125d2565b604052919050565b600061ffff80831681851680830382111561228157612281612590565b6000821982111561246357612463612590565b500190565b600060ff821660ff84168060ff0382111561248557612485612590565b019392505050565b60008261249c5761249c6125a6565b500490565b60008160001904831182151516156124bb576124bb612590565b500290565b600061ffff838116908316818110156124db576124db612590565b039392505050565b6000828210156124f5576124f5612590565b500390565b60005b838110156125155781810151838201526020016124fd565b8381111561107c5750506000910152565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bd757600080fdfea2646970667358221220ffaafb53fa790f59f048479784c338e2c0e4898003bc5efa3708bfd0f377297564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636817c76c1161010d578063b88d4fde116100a0578063e352c4251161006f578063e352c4251461057a578063e985e9c5146105ae578063f2fde38b146105f7578063f421764814610617578063f4a0a5281461063757600080fd5b8063b88d4fde14610505578063c87b56dd14610525578063d547cfb714610545578063e3258aae1461055a57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048257806395d89b41146104a0578063a22cb465146104b5578063ac4ff476146104d557600080fd5b80636817c76c1461041457806370a0823114610438578063715018a6146104585780638ab534471461046d57600080fd5b80633ccfd60b1161018557806348a6ab7e1161015457806348a6ab7e146103945780634f558e79146103b457806355f804b3146103d45780636352211e146103f457600080fd5b80633ccfd60b1461030f578063415665851461032457806342842e0e1461035457806342966c681461037457600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102cc578063261709db146102ec57806332cb6b0c146102f457600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612170565b610657565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106a9565b60405161021f91906122c7565b34801561025657600080fd5b5061026a6102653660046121f3565b61073b565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612092565b6107d5565b005b3480156102b057600080fd5b5060075461ffff165b60405161ffff909116815260200161021f565b3480156102d857600080fd5b506102a26102e7366004611f6b565b6108eb565b6102a261091d565b34801561030057600080fd5b506009546102b99061ffff1681565b34801561031b57600080fd5b506102a2610a86565b34801561033057600080fd5b5061021361033f366004611f1d565b600e6020526000908152604090205460ff1681565b34801561036057600080fd5b506102a261036f366004611f6b565b610b31565b34801561038057600080fd5b506102a261038f3660046121f3565b610b4c565b3480156103a057600080fd5b506102a26103af36600461205f565b610bda565b3480156103c057600080fd5b506102136103cf3660046121f3565b610d07565b3480156103e057600080fd5b506102a26103ef3660046121aa565b610d26565b34801561040057600080fd5b5061026a61040f3660046121f3565b610d67565b34801561042057600080fd5b5061042a600a5481565b60405190815260200161021f565b34801561044457600080fd5b5061042a610453366004611f1d565b610dde565b34801561046457600080fd5b506102a2610e65565b34801561047957600080fd5b506102a2610ed9565b34801561048e57600080fd5b506000546001600160a01b031661026a565b3480156104ac57600080fd5b5061023d611030565b3480156104c157600080fd5b506102a26104d0366004612023565b61103f565b3480156104e157600080fd5b506102136104f0366004611f1d565b600d6020526000908152604090205460ff1681565b34801561051157600080fd5b506102a2610520366004611fa7565b61104a565b34801561053157600080fd5b5061023d6105403660046121f3565b611082565b34801561055157600080fd5b5061023d61115d565b34801561056657600080fd5b506102a261057536600461220c565b6111eb565b34801561058657600080fd5b5060095461059c90640100000000900460ff1681565b60405160ff909116815260200161021f565b3480156105ba57600080fd5b506102136105c9366004611f38565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060357600080fd5b506102a2610612366004611f1d565b6113e2565b34801561062357600080fd5b506102a26106323660046120bc565b6114cc565b34801561064357600080fd5b506102a26106523660046121f3565b61159a565b60006001600160e01b031982166380ac58cd60e01b148061068857506001600160e01b03198216635b5e139f60e01b145b806106a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106b890612526565b80601f01602080910402602001604051908101604052809291908181526020018280546106e490612526565b80156107315780601f1061070657610100808354040283529160200191610731565b820191906000526020600020905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107e082610d67565b9050806001600160a01b0316836001600160a01b0316141561084e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107b0565b336001600160a01b038216148061086a575061086a81336105c9565b6108dc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107b0565b6108e683836115c9565b505050565b6108f6335b82611637565b6109125760405162461bcd60e51b81526004016107b090612383565b6108e683838361172e565b32331461093c5760405162461bcd60e51b81526004016107b09061232c565b34600a5411156109825760405162461bcd60e51b8152602060048201526011602482015270131bddc8141c9a58d948151bc8135a5b9d607a1b60448201526064016107b0565b600954600a54600091640100000000900460ff16906109a1903461248d565b6109ab91906124a1565b6009549091506109c79061ffff620100008204811691166124c0565b61ffff168160ff166109dc60075461ffff1690565b6109e69190612433565b61ffff161115610a085760405162461bcd60e51b81526004016107b0906123d4565b6000610a1760075461ffff1690565b61ffff16905060005b8260ff168160ff161015610a5657610a4433610a3f60ff841685612450565b6118ca565b610a4f600182612468565b9050610a20565b50600754610a6c9060ff84169061ffff16612433565b6007805461ffff191661ffff929092169190911790555050565b6000546001600160a01b03163314610ab05760405162461bcd60e51b81526004016107b09061234e565b476000600a610ac08360086124a1565b610aca919061248d565b604051909150339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b50336108fc610b0983856124e3565b6040518115909202916000818181858888f193505050501580156108e6573d6000803e3d6000fd5b6108e68383836040518060200160405280600081525061104a565b6000546001600160a01b0316331480610b695750610b69336108f0565b610bce5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016107b0565b610bd7816118e4565b50565b6000546001600160a01b03163314610c045760405162461bcd60e51b81526004016107b09061234e565b60095461ffff6201000090910481169082161115610c645760405162461bcd60e51b815260206004820152601b60248201527f457863656564732072657365727665642043617420737570706c79000000000060448201526064016107b0565b6000610c7360075461ffff1690565b61ffff16905060005b8261ffff16811015610ca857610c9684610a3f8385612450565b80610ca081612561565b915050610c7c565b50600754610cbb90839061ffff16612433565b6007805461ffff191661ffff928316179055600980548492600291610ce8918591620100009004166124c0565b92506101000a81548161ffff021916908361ffff160217905550505050565b6000818152600360205260408120546001600160a01b031615156106a3565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016107b09061234e565b8051610d63906008906020840190611e10565b5050565b6000818152600360205260408120546001600160a01b0316806106a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107b0565b60006001600160a01b038216610e495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107b0565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b81526004016107b09061234e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b323314610ef85760405162461bcd60e51b81526004016107b09061232c565b336000908152600d602052604090205460ff1615610f585760405162461bcd60e51b815260206004820181905260248201527f416c7265616479206d696e7465642066726f6d2074686973206164647265737360448201526064016107b0565b600954610f719061ffff620100008204811691166124c0565b61ffff16610f8260075461ffff1690565b61ffff1610610fa35760405162461bcd60e51b81526004016107b0906123d4565b6000610fb260075461ffff1690565b61ffff16905060005b60028160ff161015610fea57610fd833610a3f60ff841685612450565b610fe3600182612468565b9050610fbb565b50600754610ffd9061ffff166002612433565b6007805461ffff191661ffff9290921691909117905550336000908152600d60205260409020805460ff19166001179055565b6060600280546106b890612526565b610d6333838361197f565b6110543383611637565b6110705760405162461bcd60e51b81526004016107b090612383565b61107c84848484611a4e565b50505050565b6000818152600360205260409020546060906001600160a01b03166111015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b0565b600061110b611a81565b9050600081511161112b5760405180602001604052806000815250611156565b8061113584611a90565b60405160200161114692919061225b565b6040516020818303038152906040525b9392505050565b6008805461116a90612526565b80601f016020809104026020016040519081016040528092919081815260200182805461119690612526565b80156111e35780601f106111b8576101008083540402835291602001916111e3565b820191906000526020600020905b8154815290600101906020018083116111c657829003601f168201915b505050505081565b32331461120a5760405162461bcd60e51b81526004016107b09061232c565b336000908152600e602052604090205460ff166112595760405162461bcd60e51b815260206004820152600d60248201526c139bdd0815da1a5d195b1a5cdd609a1b60448201526064016107b0565b60198160ff1611156112a05760405162461bcd60e51b815260206004820152601060248201526f4c696d697420546f2050726573616c6560801b60448201526064016107b0565b6009546112b99061ffff620100008204811691166124c0565b61ffff168160ff166112ce60075461ffff1690565b6112d89190612433565b61ffff16106112f95760405162461bcd60e51b81526004016107b0906123d4565b60095462010000900461ffff1660ff821611156113585760405162461bcd60e51b815260206004820152601b60248201527f457863656564732072657365727665642043617420737570706c79000000000060448201526064016107b0565b600061136760075461ffff1690565b61ffff16905060005b8260ff1681101561139b5761138933610a3f8385612450565b8061139381612561565b915050611370565b506007546113b19060ff84169061ffff16612433565b6007805461ffff191661ffff929092169190911790555050336000908152600d60205260409020805460ff19169055565b6000546001600160a01b0316331461140c5760405162461bcd60e51b81526004016107b09061234e565b6001600160a01b0381166114715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114f65760405162461bcd60e51b81526004016107b09061234e565b60008151116115325760405162461bcd60e51b81526020600482015260086024820152674e6f20456d70747960c01b60448201526064016107b0565b60005b8151811015610d63576001600e6000848481518110611556576115566125bc565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061159281612561565b915050611535565b6000546001600160a01b031633146115c45760405162461bcd60e51b81526004016107b09061234e565b600a55565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115fe82610d67565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166116b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107b0565b60006116bb83610d67565b9050806001600160a01b0316846001600160a01b031614806116f65750836001600160a01b03166116eb8461073b565b6001600160a01b0316145b8061172657506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174182610d67565b6001600160a01b0316146117a55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107b0565b6001600160a01b0382166118075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107b0565b6118126000826115c9565b6001600160a01b038316600090815260046020526040812080546001929061183b9084906124e3565b90915550506001600160a01b0382166000908152600460205260408120805460019290611869908490612450565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d63828260405180602001604052806000815250611b8e565b60006118ef82610d67565b90506118fc6000836115c9565b6001600160a01b03811660009081526004602052604081208054600192906119259084906124e3565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b031614156119e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107b0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a5984848461172e565b611a6584848484611bc1565b61107c5760405162461bcd60e51b81526004016107b0906122da565b6060600880546106b890612526565b606081611ab45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ade5780611ac881612561565b9150611ad79050600a8361248d565b9150611ab8565b60008167ffffffffffffffff811115611af957611af96125d2565b6040519080825280601f01601f191660200182016040528015611b23576020820181803683370190505b5090505b841561172657611b386001836124e3565b9150611b45600a8661257c565b611b50906030612450565b60f81b818381518110611b6557611b656125bc565b60200101906001600160f81b031916908160001a905350611b87600a8661248d565b9450611b27565b611b988383611cce565b611ba56000848484611bc1565b6108e65760405162461bcd60e51b81526004016107b0906122da565b60006001600160a01b0384163b15611cc357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0590339089908890889060040161228a565b602060405180830381600087803b158015611c1f57600080fd5b505af1925050508015611c4f575060408051601f3d908101601f19168201909252611c4c9181019061218d565b60015b611ca9573d808015611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b508051611ca15760405162461bcd60e51b81526004016107b0906122da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611726565b506001949350505050565b6001600160a01b038216611d245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107b0565b6000818152600360205260409020546001600160a01b031615611d895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107b0565b6001600160a01b0382166000908152600460205260408120805460019290611db2908490612450565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e1c90612526565b90600052602060002090601f016020900481019282611e3e5760008555611e84565b82601f10611e5757805160ff1916838001178555611e84565b82800160010185558215611e84579182015b82811115611e84578251825591602001919060010190611e69565b50611e90929150611e94565b5090565b5b80821115611e905760008155600101611e95565b600067ffffffffffffffff831115611ec357611ec36125d2565b611ed6601f8401601f1916602001612402565b9050828152838383011115611eea57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f1857600080fd5b919050565b600060208284031215611f2f57600080fd5b61115682611f01565b60008060408385031215611f4b57600080fd5b611f5483611f01565b9150611f6260208401611f01565b90509250929050565b600080600060608486031215611f8057600080fd5b611f8984611f01565b9250611f9760208501611f01565b9150604084013590509250925092565b60008060008060808587031215611fbd57600080fd5b611fc685611f01565b9350611fd460208601611f01565b925060408501359150606085013567ffffffffffffffff811115611ff757600080fd5b8501601f8101871361200857600080fd5b61201787823560208401611ea9565b91505092959194509250565b6000806040838503121561203657600080fd5b61203f83611f01565b91506020830135801515811461205457600080fd5b809150509250929050565b6000806040838503121561207257600080fd5b61207b83611f01565b9150602083013561ffff8116811461205457600080fd5b600080604083850312156120a557600080fd5b6120ae83611f01565b946020939093013593505050565b600060208083850312156120cf57600080fd5b823567ffffffffffffffff808211156120e757600080fd5b818501915085601f8301126120fb57600080fd5b81358181111561210d5761210d6125d2565b8060051b915061211e848301612402565b8181528481019084860184860187018a101561213957600080fd5b600095505b838610156121635761214f81611f01565b83526001959095019491860191860161213e565b5098975050505050505050565b60006020828403121561218257600080fd5b8135611156816125e8565b60006020828403121561219f57600080fd5b8151611156816125e8565b6000602082840312156121bc57600080fd5b813567ffffffffffffffff8111156121d357600080fd5b8201601f810184136121e457600080fd5b61172684823560208401611ea9565b60006020828403121561220557600080fd5b5035919050565b60006020828403121561221e57600080fd5b813560ff8116811461115657600080fd5b600081518084526122478160208601602086016124fa565b601f01601f19169290920160200192915050565b6000835161226d8184602088016124fa565b8351908301906122818183602088016124fa565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122bd9083018461222f565b9695505050505050565b602081526000611156602083018461222f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600890820152674f6e6c7920454f4160c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152734d6178204c696d697420546f2050726573616c6560601b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561242b5761242b6125d2565b604052919050565b600061ffff80831681851680830382111561228157612281612590565b6000821982111561246357612463612590565b500190565b600060ff821660ff84168060ff0382111561248557612485612590565b019392505050565b60008261249c5761249c6125a6565b500490565b60008160001904831182151516156124bb576124bb612590565b500290565b600061ffff838116908316818110156124db576124db612590565b039392505050565b6000828210156124f5576124f5612590565b500390565b60005b838110156125155781810151838201526020016124fd565b8381111561107c5750506000910152565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bd757600080fdfea2646970667358221220ffaafb53fa790f59f048479784c338e2c0e4898003bc5efa3708bfd0f377297564736f6c63430008070033
Deployed Bytecode Sourcemap
242:3791:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1543:344:3;;;;;;;;;;-1:-1:-1;1543:344:3;;;;;:::i;:::-;;:::i;:::-;;;7014:14:13;;7007:22;6989:41;;6977:2;6962:18;1543:344:3;;;;;;;;2661:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4294:295::-;;;;;;;;;;-1:-1:-1;4294:295:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6312:32:13;;;6294:51;;6282:2;6267:18;4294:295:3;6148:203:13;3832:401:3;;;;;;;;;;-1:-1:-1;3832:401:3;;;;;:::i;:::-;;:::i;:::-;;3443:95:9;;;;;;;;;;-1:-1:-1;3520:11:9;;;;3443:95;;;17005:6:13;16993:19;;;16975:38;;16963:2;16948:18;3443:95:9;16831:188:13;5171:364:3;;;;;;;;;;-1:-1:-1;5171:364:3;;;;;:::i;:::-;;:::i;1410:563:9:-;;;:::i;376:24::-;;;;;;;;;;-1:-1:-1;376:24:9;;;;;;;;3791:240;;;;;;;;;;;;;:::i;661:48::-;;;;;;;;;;-1:-1:-1;661:48:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;5601:179:3;;;;;;;;;;-1:-1:-1;5601:179:3;;;;;:::i;:::-;;:::i;437:318:4:-;;;;;;;;;;-1:-1:-1;437:318:4;;;;;:::i;:::-;;:::i;2643:352:9:-;;;;;;;;;;-1:-1:-1;2643:352:9;;;;;:::i;:::-;;:::i;3335:102::-;;;;;;;;;;-1:-1:-1;3335:102:9;;;;;:::i;:::-;;:::i;3001:101::-;;;;;;;;;;-1:-1:-1;3001:101:9;;;;;:::i;:::-;;:::i;2286:313:3:-;;;;;;;;;;-1:-1:-1;2286:313:3;;;;;:::i;:::-;;:::i;471:24:9:-;;;;;;;;;;;;;;;;;;;17170:25:13;;;17158:2;17143:18;471:24:9;17024:177:13;1946:283:3;;;;;;;;;;-1:-1:-1;1946:283:3;;;;;:::i;:::-;;:::i;1715:145:10:-;;;;;;;;;;;;;:::i;881:523:9:-;;;;;;;;;;;;;:::i;1083:85:10:-;;;;;;;;;;-1:-1:-1;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;1083:85;;2823:102:3;;;;;;;;;;;;;:::i;4656:181::-;;;;;;;;;;-1:-1:-1;4656:181:3;;;;;:::i;:::-;;:::i;602:53:9:-;;;;;;;;;;-1:-1:-1;602:53:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;5846:354:3;;;;;;;;;;-1:-1:-1;5846:354:3;;;;;:::i;:::-;;:::i;2991:451::-;;;;;;;;;;-1:-1:-1;2991:451:3;;;;;:::i;:::-;;:::i;344:26:9:-;;;;;;;;;;;;;:::i;1979:658::-;;;;;;;;;;-1:-1:-1;1979:658:9;;;;;:::i;:::-;;:::i;443:22::-;;;;;;;;;;-1:-1:-1;443:22:9;;;;;;;;;;;;;;17378:4:13;17366:17;;;17348:36;;17336:2;17321:18;443:22:9;17206:184:13;4903:206:3;;;;;;;;;;-1:-1:-1;4903:206:3;;;;;:::i;:::-;-1:-1:-1;;;;;5067:25:3;;;5040:4;5067:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4903:206;2009:274:10;;;;;;;;;;-1:-1:-1;2009:274:10;;;;;:::i;:::-;;:::i;3544:241:9:-;;;;;;;;;;-1:-1:-1;3544:241:9;;;;;:::i;:::-;;:::i;3108:104::-;;;;;;;;;;-1:-1:-1;3108:104:9;;;;;:::i;:::-;;:::i;1543:344:3:-;1685:4;-1:-1:-1;;;;;;1724:40:3;;-1:-1:-1;;;1724:40:3;;:104;;-1:-1:-1;;;;;;;1780:48:3;;-1:-1:-1;;;1780:48:3;1724:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:2;;;1844:36:3;1705:175;1543:344;-1:-1:-1;;1543:344:3:o;2661:98::-;2715:13;2747:5;2740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2661:98;:::o;4294:295::-;4410:7;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:3;4433:107;;;;-1:-1:-1;;;4433:107:3;;14257:2:13;4433:107:3;;;14239:21:13;14296:2;14276:18;;;14269:30;14335:34;14315:18;;;14308:62;-1:-1:-1;;;14386:18:13;;;14379:42;14438:19;;4433:107:3;;;;;;;;;-1:-1:-1;4558:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4558:24:3;;4294:295::o;3832:401::-;3912:13;3928:23;3943:7;3928:14;:23::i;:::-;3912:39;;3975:5;-1:-1:-1;;;;;3969:11:3;:2;-1:-1:-1;;;;;3969:11:3;;;3961:57;;;;-1:-1:-1;;;3961:57:3;;15447:2:13;3961:57:3;;;15429:21:13;15486:2;15466:18;;;15459:30;15525:34;15505:18;;;15498:62;-1:-1:-1;;;15576:18:13;;;15569:31;15617:19;;3961:57:3;15245:397:13;3961:57:3;666:10:1;-1:-1:-1;;;;;4050:21:3;;;;:62;;-1:-1:-1;4075:37:3;4092:5;666:10:1;4903:206:3;:::i;4075:37::-;4029:165;;;;-1:-1:-1;;;4029:165:3;;11953:2:13;4029:165:3;;;11935:21:13;11992:2;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12102:26;12082:18;;;12075:54;12146:19;;4029:165:3;11751:420:13;4029:165:3;4205:21;4214:2;4218:7;4205:8;:21::i;:::-;3902:331;3832:401;;:::o;5171:364::-;5373:41;666:10:1;5392:12:3;5406:7;5373:18;:41::i;:::-;5352:137;;;;-1:-1:-1;;;5352:137:3;;;;;;;:::i;:::-;5500:28;5510:4;5516:2;5520:7;5500:9;:28::i;1410:563:9:-;1471:9;1484:10;1471:23;1463:44;;;;-1:-1:-1;;;1463:44:9;;;;;;;:::i;:::-;1538:9;1525;;:22;;1517:52;;;;-1:-1:-1;;;1517:52:9;;10090:2:13;1517:52:9;;;10072:21:13;10129:2;10109:18;;;10102:30;-1:-1:-1;;;10148:18:13;;;10141:47;10205:18;;1517:52:9;9888:341:13;1517:52:9;1630:9;;1617;;1579:16;;1630:9;;;;;;1605:21;;:9;:21;:::i;:::-;1604:35;;;;:::i;:::-;1714:8;;1579:61;;-1:-1:-1;1701:21:9;;1714:8;;;;;;;1701:10;:21;:::i;:::-;1671:51;;1687:10;1671:26;;:13;3520:11;;;;;3443:95;1671:13;:26;;;;:::i;:::-;:51;;;;1650:118;;;;-1:-1:-1;;;1650:118:9;;;;;;;:::i;:::-;1779:14;1796:13;3520:11;;;;;3443:95;1796:13;1779:30;;;;1824:7;1819:100;1841:10;1837:14;;:1;:14;;;1819:100;;;1875:33;1885:10;1897;;;;:6;:10;:::i;:::-;1875:9;:33::i;:::-;1853:6;1858:1;1853:6;;:::i;:::-;;;1819:100;;;-1:-1:-1;1942:11:9;;:24;;;;;;:11;;:24;:::i;:::-;1928:11;:38;;-1:-1:-1;;1928:38:9;;;;;;;;;;;;-1:-1:-1;;1410:563:9:o;3791:240::-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;3855:21:9::1;3838:14;3919:2;3905:10;3855:21:::0;3914:1:::1;3905:10;:::i;:::-;3904:17;;;;:::i;:::-;3931:37;::::0;3886:35;;-1:-1:-1;3939:10:9::1;::::0;3931:37;::::1;;;::::0;3886:35;;3931:37:::1;::::0;;;3886:35;3939:10;3931:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;3986:10:9::1;3978:46;4007:16;4016:7:::0;4007:6;:16:::1;:::i;:::-;3978:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;5601:179:3::0;5734:39;5751:4;5757:2;5761:7;5734:39;;;;;;;;;;;;:16;:39::i;437:318:4:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;566:23:4;;:84;;-1:-1:-1;609:41:4;666:10:1;628:12:4;587:96:1;609:41:4;545:179;;;;-1:-1:-1;;;545:179:4;;16616:2:13;545:179:4;;;16598:21:13;16655:2;16635:18;;;16628:30;16694:34;16674:18;;;16667:62;-1:-1:-1;;;16745:18:13;;;16738:46;16801:19;;545:179:4;16414:412:13;545:179:4;734:14;740:7;734:5;:14::i;:::-;437:318;:::o;2643:352:9:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;2738:8:9::1;::::0;::::1;::::0;;;::::1;::::0;::::1;2727:19:::0;;::::1;;;2719:59;;;::::0;-1:-1:-1;;;2719:59:9;;9041:2:13;2719:59:9::1;::::0;::::1;9023:21:13::0;9080:2;9060:18;;;9053:30;9119:29;9099:18;;;9092:57;9166:18;;2719:59:9::1;8839:351:13::0;2719:59:9::1;2789:14;2806:13;3520:11:::0;;;;;3443:95;2806:13:::1;2789:30;;;;2834:9;2829:85;2849:7;2845:11;;:1;:11;2829:85;;;2877:26;2887:3:::0;2892:10:::1;2901:1:::0;2892:6;:10:::1;:::i;2877:26::-;2858:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2829:85;;;-1:-1:-1::0;2938:11:9::1;::::0;:21:::1;::::0;2952:7;;2938:11:::1;;:21;:::i;:::-;2924:11;:35:::0;;-1:-1:-1;;2924:35:9::1;;::::0;;::::1;;::::0;;2969:8:::1;:19:::0;;2981:7;;2969:8:::1;::::0;:19:::1;::::0;2981:7;;2969:19;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2709:286;2643:352:::0;;:::o;3335:102::-;3390:4;7794:16:3;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:3;:30;;3413:17:9;7706:125:3;3001:101:9;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;3073:22:9;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3001:101:::0;:::o;2286:313:3:-;2398:7;2437:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2437:16:3;2484:19;2463:107;;;;-1:-1:-1;;;2463:107:3;;12789:2:13;2463:107:3;;;12771:21:13;12828:2;12808:18;;;12801:30;12867:34;12847:18;;;12840:62;-1:-1:-1;;;12918:18:13;;;12911:39;12967:19;;2463:107:3;12587:405:13;1946:283:3;2058:7;-1:-1:-1;;;;;2102:19:3;;2081:108;;;;-1:-1:-1;;;2081:108:3;;12378:2:13;2081:108:3;;;12360:21:13;12417:2;12397:18;;;12390:30;12456:34;12436:18;;;12429:62;-1:-1:-1;;;12507:18:13;;;12500:40;12557:19;;2081:108:3;12176:406:13;2081:108:3;-1:-1:-1;;;;;;2206:16:3;;;;;:9;:16;;;;;;;1946:283::o;1715:145:10:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;1821:1:::1;1805:6:::0;;1784:40:::1;::::0;-1:-1:-1;;;;;1805:6:10;;::::1;::::0;1784:40:::1;::::0;1821:1;;1784:40:::1;1851:1;1834:19:::0;;-1:-1:-1;;;;;;1834:19:10::1;::::0;;1715:145::o;881:523:9:-;928:9;941:10;928:23;920:44;;;;-1:-1:-1;;;920:44:9;;;;;;;:::i;:::-;1018:10;996:33;;;;:21;:33;;;;;;;;995:34;974:113;;;;-1:-1:-1;;;974:113:9;;13535:2:13;974:113:9;;;13517:21:13;;;13554:18;;;13547:30;13613:34;13593:18;;;13586:62;13665:18;;974:113:9;13333:356:13;974:113:9;1134:8;;1121:21;;1134:8;;;;;;;1121:10;:21;:::i;:::-;1105:37;;:13;3520:11;;;;;3443:95;1105:13;:37;;;1097:70;;;;-1:-1:-1;;;1097:70:9;;;;;;;:::i;:::-;1178:14;1195:13;3520:11;;;;;3443:95;1195:13;1178:30;;;;1223:7;1218:91;1240:1;1236;:5;;;1218:91;;;1265:33;1275:10;1287;;;;:6;:10;:::i;1265:33::-;1243:6;1248:1;1243:6;;:::i;:::-;;;1218:91;;;-1:-1:-1;1332:11:9;;:15;;:11;;1346:1;1332:15;:::i;:::-;1318:11;:29;;-1:-1:-1;;1318:29:9;;;;;;;;;;;;-1:-1:-1;1379:10:9;-1:-1:-1;1357:33:9;;;:21;:33;;;;;:40;;-1:-1:-1;;1357:40:9;-1:-1:-1;1357:40:9;;;881:523::o;2823:102:3:-;2879:13;2911:7;2904:14;;;;;:::i;4656:181::-;4778:52;666:10:1;4811:8:3;4821;4778:18;:52::i;5846:354::-;6028:41;666:10:1;6061:7:3;6028:18;:41::i;:::-;6007:137;;;;-1:-1:-1;;;6007:137:3;;;;;;;:::i;:::-;6154:39;6168:4;6174:2;6178:7;6187:5;6154:13;:39::i;:::-;5846:354;;;;:::o;2991:451::-;7771:4;7794:16;;;:7;:16;;;;;;3104:13;;-1:-1:-1;;;;;7794:16:3;3133:110;;;;-1:-1:-1;;;3133:110:3;;15031:2:13;3133:110:3;;;15013:21:13;15070:2;15050:18;;;15043:30;15109:34;15089:18;;;15082:62;-1:-1:-1;;;15160:18:13;;;15153:45;15215:19;;3133:110:3;14829:411:13;3133:110:3;3254:21;3278:10;:8;:10::i;:::-;3254:34;;3341:1;3323:7;3317:21;:25;:118;;;;;;;;;;;;;;;;;3385:7;3394:18;:7;:16;:18::i;:::-;3368:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3317:118;3298:137;2991:451;-1:-1:-1;;;2991:451:3:o;344:26:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1979:658::-;2045:9;2058:10;2045:23;2037:44;;;;-1:-1:-1;;;2037:44:9;;;;;;;:::i;:::-;2116:10;2099:28;;;;:16;:28;;;;;;;;2091:54;;;;-1:-1:-1;;;2091:54:9;;7467:2:13;2091:54:9;;;7449:21:13;7506:2;7486:18;;;7479:30;-1:-1:-1;;;7525:18:13;;;7518:43;7578:18;;2091:54:9;7265:337:13;2091:54:9;2174:2;2163:7;:13;;;;2155:42;;;;-1:-1:-1;;;2155:42:9;;11608:2:13;2155:42:9;;;11590:21:13;11647:2;11627:18;;;11620:30;-1:-1:-1;;;11666:18:13;;;11659:46;11722:18;;2155:42:9;11406:340:13;2155:42:9;2267:8;;2254:21;;2267:8;;;;;;;2254:10;:21;:::i;:::-;2228:47;;2244:7;2228:23;;:13;3520:11;;;;;3443:95;2228:13;:23;;;;:::i;:::-;:47;;;2207:114;;;;-1:-1:-1;;;2207:114:9;;;;;;;:::i;:::-;2351:8;;;;;;;2340:19;;;;;2332:59;;;;-1:-1:-1;;;2332:59:9;;9041:2:13;2332:59:9;;;9023:21:13;9080:2;9060:18;;;9053:30;9119:29;9099:18;;;9092:57;9166:18;;2332:59:9;8839:351:13;2332:59:9;2402:14;2419:13;3520:11;;;;;3443:95;2419:13;2402:30;;;;2447:9;2442:92;2462:7;2458:11;;:1;:11;2442:92;;;2490:33;2500:10;2512;2521:1;2512:6;:10;:::i;2490:33::-;2471:3;;;;:::i;:::-;;;;2442:92;;;-1:-1:-1;2558:11:9;;:21;;;;;;:11;;:21;:::i;:::-;2544:11;:35;;-1:-1:-1;;2544:35:9;;;;;;;;;;;;-1:-1:-1;;2611:10:9;-1:-1:-1;2589:33:9;;;:21;:33;;;;;:41;;-1:-1:-1;;2589:41:9;;;1979:658::o;2009:274:10:-;1129:7;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2110:22:10;::::1;2089:107;;;::::0;-1:-1:-1;;;2089:107:10;;8228:2:13;2089:107:10::1;::::0;::::1;8210:21:13::0;8267:2;8247:18;;;8240:30;8306:34;8286:18;;;8279:62;-1:-1:-1;;;8357:18:13;;;8350:36;8403:19;;2089:107:10::1;8026:402:13::0;2089:107:10::1;2232:6;::::0;;2211:38:::1;::::0;-1:-1:-1;;;;;2211:38:10;;::::1;::::0;2232:6;::::1;::::0;2211:38:::1;::::0;::::1;2259:6;:17:::0;;-1:-1:-1;;;;;;2259:17:10::1;-1:-1:-1::0;;;;;2259:17:10;;;::::1;::::0;;;::::1;::::0;;2009:274::o;3544:241:9:-;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;3650:1:9::1;3631:9;:16;:20;3623:41;;;::::0;-1:-1:-1;;;3623:41:9;;13199:2:13;3623:41:9::1;::::0;::::1;13181:21:13::0;13238:1;13218:18;;;13211:29;-1:-1:-1;;;13256:18:13;;;13249:38;13304:18;;3623:41:9::1;12997:331:13::0;3623:41:9::1;3679:9;3674:105;3694:9;:16;3690:1;:20;3674:105;;;3764:4;3731:16;:30;3748:9;3758:1;3748:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;3731:30:9::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3731:30:9;:37;;-1:-1:-1;;3731:37:9::1;::::0;::::1;;::::0;;;::::1;::::0;;3712:3;::::1;::::0;::::1;:::i;:::-;;;;3674:105;;3108:104:::0;1129:7:10;1155:6;-1:-1:-1;;;;;1155:6:10;666:10:1;1295:23:10;1287:68;;;;-1:-1:-1;;;1287:68:10;;;;;;;:::i;:::-;3181:9:9::1;:24:::0;3108:104::o;11843:171:3:-;11917:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11917:29:3;-1:-1:-1;;;;;11917:29:3;;;;;;;;:24;;11970:23;11917:24;11970:14;:23::i;:::-;-1:-1:-1;;;;;11961:46:3;;;;;;;;;;;11843:171;;:::o;7989:438::-;8114:4;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:3;8134:107;;;;-1:-1:-1;;;8134:107:3;;11195:2:13;8134:107:3;;;11177:21:13;11234:2;11214:18;;;11207:30;11273:34;11253:18;;;11246:62;-1:-1:-1;;;11324:18:13;;;11317:42;11376:19;;8134:107:3;10993:408:13;8134:107:3;8251:13;8267:23;8282:7;8267:14;:23::i;:::-;8251:39;;8319:5;-1:-1:-1;;;;;8308:16:3;:7;-1:-1:-1;;;;;8308:16:3;;:63;;;;8364:7;-1:-1:-1;;;;;8340:31:3;:20;8352:7;8340:11;:20::i;:::-;-1:-1:-1;;;;;8340:31:3;;8308:63;:111;;;-1:-1:-1;;;;;;5067:25:3;;;5040:4;5067:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8387:32;8300:120;7989:438;-1:-1:-1;;;;7989:438:3:o;11093:639::-;11260:4;-1:-1:-1;;;;;11233:31:3;:23;11248:7;11233:14;:23::i;:::-;-1:-1:-1;;;;;11233:31:3;;11212:115;;;;-1:-1:-1;;;11212:115:3;;8635:2:13;11212:115:3;;;8617:21:13;8674:2;8654:18;;;8647:30;8713:34;8693:18;;;8686:62;-1:-1:-1;;;8764:18:13;;;8757:35;8809:19;;11212:115:3;8433:401:13;11212:115:3;-1:-1:-1;;;;;11345:16:3;;11337:65;;;;-1:-1:-1;;;11337:65:3;;10436:2:13;11337:65:3;;;10418:21:13;10475:2;10455:18;;;10448:30;10514:34;10494:18;;;10487:62;-1:-1:-1;;;10565:18:13;;;10558:34;10609:19;;11337:65:3;10234:400:13;11337:65:3;11514:29;11531:1;11535:7;11514:8;:29::i;:::-;-1:-1:-1;;;;;11554:15:3;;;;;;:9;:15;;;;;:20;;11573:1;;11554:15;:20;;11573:1;;11554:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11584:13:3;;;;;;:9;:13;;;;;:18;;11601:1;;11584:13;:18;;11601:1;;11584:18;:::i;:::-;;;;-1:-1:-1;;11612:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11612:21:3;-1:-1:-1;;;;;11612:21:3;;;;;;;;;11649:27;;11612:16;;11649:27;;;;;;;3902:331;3832:401;;:::o;8757:108::-;8832:26;8842:2;8846:7;8832:26;;;;;;;;;;;;:9;:26::i;10363:406::-;10422:13;10438:23;10453:7;10438:14;:23::i;:::-;10422:39;;10558:29;10575:1;10579:7;10558:8;:29::i;:::-;-1:-1:-1;;;;;10598:16:3;;;;;;:9;:16;;;;;:21;;10618:1;;10598:16;:21;;10618:1;;10598:21;:::i;:::-;;;;-1:-1:-1;;10636:16:3;;;;:7;:16;;;;;;10629:23;;-1:-1:-1;;;;;;10629:23:3;;;10668:36;10644:7;;10636:16;-1:-1:-1;;;;;10668:36:3;;;;;10636:16;;10668:36;3073:22:9::1;3001:101:::0;:::o;12149:307:3:-;12299:8;-1:-1:-1;;;;;12290:17:3;:5;-1:-1:-1;;;;;12290:17:3;;;12282:55;;;;-1:-1:-1;;;12282:55:3;;10841:2:13;12282:55:3;;;10823:21:13;10880:2;10860:18;;;10853:30;10919:27;10899:18;;;10892:55;10964:18;;12282:55:3;10639:349:13;12282:55:3;-1:-1:-1;;;;;12347:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12347:46:3;;;;;;;;;;12408:41;;6989::13;;;12408::3;;6962:18:13;12408:41:3;;;;;;;12149:307;;;:::o;7062:341::-;7213:28;7223:4;7229:2;7233:7;7213:9;:28::i;:::-;7272:48;7295:4;7301:2;7305:7;7314:5;7272:22;:48::i;:::-;7251:145;;;;-1:-1:-1;;;7251:145:3;;;;;;;:::i;3218:111:9:-;3278:13;3310:12;3303:19;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;9086:311:3;9211:18;9217:2;9221:7;9211:5;:18::i;:::-;9260:54;9291:1;9295:2;9299:7;9308:5;9260:22;:54::i;:::-;9239:151;;;;-1:-1:-1;;;9239:151:3;;;;;;;:::i;13009:950::-;13159:4;-1:-1:-1;;;;;13179:13:3;;1034:20:0;1080:8;13175:778:3;;13230:170;;-1:-1:-1;;;13230:170:3;;-1:-1:-1;;;;;13230:36:3;;;;;:170;;666:10:1;;13322:4:3;;13348:7;;13377:5;;13230:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13230:170:3;;;;;;;;-1:-1:-1;;13230:170:3;;;;;;;;;;;;:::i;:::-;;;13210:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13579:13:3;;13575:312;;13621:106;;-1:-1:-1;;;13621:106:3;;;;;;;:::i;13575:312::-;13839:6;13833:13;13824:6;13820:2;13816:15;13809:38;13210:691;-1:-1:-1;;;;;;13462:51:3;-1:-1:-1;;;13462:51:3;;-1:-1:-1;13455:58:3;;13175:778;-1:-1:-1;13938:4:3;13009:950;;;;;;:::o;9719:427::-;-1:-1:-1;;;;;9798:16:3;;9790:61;;;;-1:-1:-1;;;9790:61:3;;13896:2:13;9790:61:3;;;13878:21:13;;;13915:18;;;13908:30;13974:34;13954:18;;;13947:62;14026:18;;9790:61:3;13694:356:13;9790:61:3;7771:4;7794:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7794:16:3;:30;9861:58;;;;-1:-1:-1;;;9861:58:3;;9397:2:13;9861:58:3;;;9379:21:13;9436:2;9416:18;;;9409:30;9475;9455:18;;;9448:58;9523:18;;9861:58:3;9195:352:13;9861:58:3;-1:-1:-1;;;;;9986:13:3;;;;;;:9;:13;;;;;:18;;10003:1;;9986:13;:18;;10003:1;;9986:18;:::i;:::-;;;;-1:-1:-1;;10014:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10014:21:3;-1:-1:-1;;;;;10014:21:3;;;;;;;;10051:33;;10014:16;;;10051:33;;10014:16;;10051:33;3073:22:9::1;3001:101:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:13;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:13;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:13;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:13;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:346::-;2482:6;2490;2543:2;2531:9;2522:7;2518:23;2514:32;2511:52;;;2559:1;2556;2549:12;2511:52;2582:29;2601:9;2582:29;:::i;:::-;2572:39;;2661:2;2650:9;2646:18;2633:32;2705:6;2698:5;2694:18;2687:5;2684:29;2674:57;;2727:1;2724;2717:12;2766:254;2834:6;2842;2895:2;2883:9;2874:7;2870:23;2866:32;2863:52;;;2911:1;2908;2901:12;2863:52;2934:29;2953:9;2934:29;:::i;:::-;2924:39;3010:2;2995:18;;;;2982:32;;-1:-1:-1;;;2766:254:13:o;3025:963::-;3109:6;3140:2;3183;3171:9;3162:7;3158:23;3154:32;3151:52;;;3199:1;3196;3189:12;3151:52;3239:9;3226:23;3268:18;3309:2;3301:6;3298:14;3295:34;;;3325:1;3322;3315:12;3295:34;3363:6;3352:9;3348:22;3338:32;;3408:7;3401:4;3397:2;3393:13;3389:27;3379:55;;3430:1;3427;3420:12;3379:55;3466:2;3453:16;3488:2;3484;3481:10;3478:36;;;3494:18;;:::i;:::-;3540:2;3537:1;3533:10;3523:20;;3563:28;3587:2;3583;3579:11;3563:28;:::i;:::-;3625:15;;;3656:12;;;;3688:11;;;3718;;;3714:20;;3711:33;-1:-1:-1;3708:53:13;;;3757:1;3754;3747:12;3708:53;3779:1;3770:10;;3789:169;3803:2;3800:1;3797:9;3789:169;;;3860:23;3879:3;3860:23;:::i;:::-;3848:36;;3821:1;3814:9;;;;;3904:12;;;;3936;;3789:169;;;-1:-1:-1;3977:5:13;3025:963;-1:-1:-1;;;;;;;;3025:963:13:o;3993:245::-;4051:6;4104:2;4092:9;4083:7;4079:23;4075:32;4072:52;;;4120:1;4117;4110:12;4072:52;4159:9;4146:23;4178:30;4202:5;4178:30;:::i;4243:249::-;4312:6;4365:2;4353:9;4344:7;4340:23;4336:32;4333:52;;;4381:1;4378;4371:12;4333:52;4413:9;4407:16;4432:30;4456:5;4432:30;:::i;4497:450::-;4566:6;4619:2;4607:9;4598:7;4594:23;4590:32;4587:52;;;4635:1;4632;4625:12;4587:52;4675:9;4662:23;4708:18;4700:6;4697:30;4694:50;;;4740:1;4737;4730:12;4694:50;4763:22;;4816:4;4808:13;;4804:27;-1:-1:-1;4794:55:13;;4845:1;4842;4835:12;4794:55;4868:73;4933:7;4928:2;4915:16;4910:2;4906;4902:11;4868:73;:::i;4952:180::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;-1:-1:-1;5103:23:13;;4952:180;-1:-1:-1;4952:180:13:o;5137:269::-;5194:6;5247:2;5235:9;5226:7;5222:23;5218:32;5215:52;;;5263:1;5260;5253:12;5215:52;5302:9;5289:23;5352:4;5345:5;5341:16;5334:5;5331:27;5321:55;;5372:1;5369;5362:12;5411:257;5452:3;5490:5;5484:12;5517:6;5512:3;5505:19;5533:63;5589:6;5582:4;5577:3;5573:14;5566:4;5559:5;5555:16;5533:63;:::i;:::-;5650:2;5629:15;-1:-1:-1;;5625:29:13;5616:39;;;;5657:4;5612:50;;5411:257;-1:-1:-1;;5411:257:13:o;5673:470::-;5852:3;5890:6;5884:13;5906:53;5952:6;5947:3;5940:4;5932:6;5928:17;5906:53;:::i;:::-;6022:13;;5981:16;;;;6044:57;6022:13;5981:16;6078:4;6066:17;;6044:57;:::i;:::-;6117:20;;5673:470;-1:-1:-1;;;;5673:470:13:o;6356:488::-;-1:-1:-1;;;;;6625:15:13;;;6607:34;;6677:15;;6672:2;6657:18;;6650:43;6724:2;6709:18;;6702:34;;;6772:3;6767:2;6752:18;;6745:31;;;6550:4;;6793:45;;6818:19;;6810:6;6793:45;:::i;:::-;6785:53;6356:488;-1:-1:-1;;;;;;6356:488:13:o;7041:219::-;7190:2;7179:9;7172:21;7153:4;7210:44;7250:2;7239:9;7235:18;7227:6;7210:44;:::i;7607:414::-;7809:2;7791:21;;;7848:2;7828:18;;;7821:30;7887:34;7882:2;7867:18;;7860:62;-1:-1:-1;;;7953:2:13;7938:18;;7931:48;8011:3;7996:19;;7607:414::o;9552:331::-;9754:2;9736:21;;;9793:1;9773:18;;;9766:29;-1:-1:-1;;;9826:2:13;9811:18;;9804:38;9874:2;9859:18;;9552:331::o;14468:356::-;14670:2;14652:21;;;14689:18;;;14682:30;14748:34;14743:2;14728:18;;14721:62;14815:2;14800:18;;14468:356::o;15647:413::-;15849:2;15831:21;;;15888:2;15868:18;;;15861:30;15927:34;15922:2;15907:18;;15900:62;-1:-1:-1;;;15993:2:13;15978:18;;15971:47;16050:3;16035:19;;15647:413::o;16065:344::-;16267:2;16249:21;;;16306:2;16286:18;;;16279:30;-1:-1:-1;;;16340:2:13;16325:18;;16318:50;16400:2;16385:18;;16065:344::o;17395:275::-;17466:2;17460:9;17531:2;17512:13;;-1:-1:-1;;17508:27:13;17496:40;;17566:18;17551:34;;17587:22;;;17548:62;17545:88;;;17613:18;;:::i;:::-;17649:2;17642:22;17395:275;;-1:-1:-1;17395:275:13:o;17675:224::-;17714:3;17742:6;17775:2;17772:1;17768:10;17805:2;17802:1;17798:10;17836:3;17832:2;17828:12;17823:3;17820:21;17817:47;;;17844:18;;:::i;17904:128::-;17944:3;17975:1;17971:6;17968:1;17965:13;17962:39;;;17981:18;;:::i;:::-;-1:-1:-1;18017:9:13;;17904:128::o;18037:204::-;18075:3;18111:4;18108:1;18104:12;18143:4;18140:1;18136:12;18178:3;18172:4;18168:14;18163:3;18160:23;18157:49;;;18186:18;;:::i;:::-;18222:13;;18037:204;-1:-1:-1;;;18037:204:13:o;18246:120::-;18286:1;18312;18302:35;;18317:18;;:::i;:::-;-1:-1:-1;18351:9:13;;18246:120::o;18371:168::-;18411:7;18477:1;18473;18469:6;18465:14;18462:1;18459:21;18454:1;18447:9;18440:17;18436:45;18433:71;;;18484:18;;:::i;:::-;-1:-1:-1;18524:9:13;;18371:168::o;18544:217::-;18583:4;18612:6;18668:10;;;;18638;;18690:12;;;18687:38;;;18705:18;;:::i;:::-;18742:13;;18544:217;-1:-1:-1;;;18544:217:13:o;18766:125::-;18806:4;18834:1;18831;18828:8;18825:34;;;18839:18;;:::i;:::-;-1:-1:-1;18876:9:13;;18766:125::o;18896:258::-;18968:1;18978:113;18992:6;18989:1;18986:13;18978:113;;;19068:11;;;19062:18;19049:11;;;19042:39;19014:2;19007:10;18978:113;;;19109:6;19106:1;19103:13;19100:48;;;-1:-1:-1;;19144:1:13;19126:16;;19119:27;18896:258::o;19159:380::-;19238:1;19234:12;;;;19281;;;19302:61;;19356:4;19348:6;19344:17;19334:27;;19302:61;19409:2;19401:6;19398:14;19378:18;19375:38;19372:161;;;19455:10;19450:3;19446:20;19443:1;19436:31;19490:4;19487:1;19480:15;19518:4;19515:1;19508:15;19372:161;;19159:380;;;:::o;19544:135::-;19583:3;-1:-1:-1;;19604:17:13;;19601:43;;;19624:18;;:::i;:::-;-1:-1:-1;19671:1:13;19660:13;;19544:135::o;19684:112::-;19716:1;19742;19732:35;;19747:18;;:::i;:::-;-1:-1:-1;19781:9:13;;19684:112::o;19801:127::-;19862:10;19857:3;19853:20;19850:1;19843:31;19893:4;19890:1;19883:15;19917:4;19914:1;19907:15;19933:127;19994:10;19989:3;19985:20;19982:1;19975:31;20025:4;20022:1;20015:15;20049:4;20046:1;20039:15;20065:127;20126:10;20121:3;20117:20;20114:1;20107:31;20157:4;20154:1;20147:15;20181:4;20178:1;20171:15;20197:127;20258:10;20253:3;20249:20;20246:1;20239:31;20289:4;20286:1;20279:15;20313:4;20310:1;20303:15;20329:131;-1:-1:-1;;;;;;20403:32:13;;20393:43;;20383:71;;20450:1;20447;20440:12
Swarm Source
ipfs://ffaafb53fa790f59f048479784c338e2c0e4898003bc5efa3708bfd0f3772975
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.